import React from 'react'; import { Box, Flex } from '../../../Layout'; import { Text } from '../../../Text'; import { CSS } from '../../../Theme'; export const LeaveCard = ({ icon, title, subtitle, onClick, bg, titleColor, css = {}, }: { icon: React.JSX.Element; title: string; subtitle: string; onClick: () => void; titleColor: string; bg: string; css?: CSS; }) => { return ( {icon} {title} {subtitle} ); };