import { DetailedHTMLProps, HTMLAttributes, PropsWithChildren, Ref } from 'react'; import { classNames } from '../../layout'; type ToolbarItemViewProps = PropsWithChildren<{ icon: string; ref?: Ref; }> & DetailedHTMLProps, HTMLDivElement>; export const ToolbarItemView = ({ ref, icon = null, className = null, ...rest }: ToolbarItemViewProps) => { return (
); };