import React, { ExoticComponent, HTMLAttributes } from 'react'; import cn from 'classnames'; import { Typography } from '../typography/typography'; interface Props { component?: string | ExoticComponent; className?: string; typographyClassName?: string; button?: boolean; classes?: { button?: string; container?: string; typography?: string; }; style?: any; } export const ListItem: React.FC> = ({ component: Component = 'li', className, typographyClassName, button, style, children, classes, ...other }) => { return ( {children} ); };