import { ComponentTypes, ThumbnailComponent } from "oceanic.js"; export type ThumbnailProps = Omit & { children: ThumbnailComponent["media"]; }; export function Thumbnail({ children, ...props }: ThumbnailProps): ThumbnailComponent { return { type: ComponentTypes.THUMBNAIL, media: children, ...props }; }