apprev/components-jsx/Thumbnail.tsx
2025-05-16 06:16:52 -04:00

11 lines
377 B
TypeScript

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