export interface Props { text?: string, position?: "bottom" | "left" | "right", delay?: number, className?: string, children?: any } const Card = ({ text, position, children, delay, className }: Props): JSX.Element => (