import React from 'react' import { Box, BoxProps } from '../../Box/Box' import * as styles from './styles.css' export interface Props extends Omit { children: React.ReactNode icon?: React.ReactNode } export const Cell: React.FC = ({ children, icon, ...boxProps }) => { return ( {icon && ( {icon} )} {children} ) }