import { Card } from '@nextui-org/react' import { ReactNode } from 'react' interface Props { children: ReactNode | ReactNode[] rgb: string flexDirection: 'row' | 'col' alignItems: 'center' | 'flex-start' } export default function ChainCard({ rgb, children, flexDirection, alignItems }: Props) { return ( {children} ) }