/** * @fileOverview Cross */ import type { FunctionComponent, SVGProps } from 'react'; export type Props = SVGProps; export const Cell: FunctionComponent = (_props: Props) => null; Cell.displayName = 'Cell';