/** * Copyright 2022 Design Barn Inc. */ import { Size } from '@lottiefiles/react-ui-kit'; import clsx from 'clsx'; import React, { ReactNode } from 'react'; export interface CardcaptionProps { children: ReactNode; hover: boolean; } export const Cardcaption: React.FC = (props: CardcaptionProps) => { const { children, hover } = props; return
{children}
; }; export interface CardProps { children: ReactNode; size: Size; } export const Card: React.FC = (props: CardProps) => { const { children, size } = props; return
{children}
; };