@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
19 lines • 576 B
TypeScript
import type { DetailedHTMLProps, VideoHTMLAttributes, MutableRefObject } from "react";
export interface BG {
background?: string;
filter?: string | {
color?: string;
opacity?: number;
};
fix?: boolean;
img?: {
src: number | string;
style?: object;
};
video?: DetailedHTMLProps<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
style?: object;
children?: any;
reference?: MutableRefObject<any>;
}
export default function BG(props: BG): import("react").JSX.Element;
//# sourceMappingURL=BG.d.ts.map