UNPKG

bereact-ui

Version:

Bibliothèque de composants React open-source

12 lines (11 loc) • 369 B
import { ReactNode } from 'react'; import './HoloCard.scss'; interface propsTypes { content: ReactNode; pattern?: string; beginWithEffect?: boolean; endKeepEffect?: boolean; size?: number; } export default function HoloCard({ content, pattern, beginWithEffect, endKeepEffect, size }: propsTypes): import("react/jsx-runtime").JSX.Element; export {};