import type { FC, PropsWithChildren, CSSProperties } from 'react'; import { Clickable } from '../clickable'; import { styled } from '../styled'; interface ListItemProps { active?: boolean; onClick?: () => void; className?: string; style?: CSSProperties; } export const ListItem: FC> = ({ active, children, onClick, className, style, }) => { return ( {children} ); }; const Container = styled(Clickable)({ display: 'flex', alignItems: 'center', padding: '6px 12px', });