// Create a simple empty box icon component import React from 'react'; import { IconProps } from './types'; export const BoxEmptyIcon = React.memo(({ size = 16, className, ...props }) => { return ( ) }); BoxEmptyIcon.displayName = 'BoxEmptyIcon'; export default BoxEmptyIcon;