import React from 'react' import useTheme from '../use-theme' import withDefaults from '../utils/with-defaults' interface Props { color?: string width?: number height?: number } const defaultProps = { width: 16, height: 16 } export type TreeFolderIconProps = Props & typeof defaultProps const TreeFolderIcon: React.FC = ({ color, width, height }) => { const theme = useTheme() return ( ) } const MemoTreeFolderIcon = React.memo(TreeFolderIcon) export default withDefaults(MemoTreeFolderIcon, defaultProps)