import type { ComponentPropsWithoutRef, FC } from 'react' type IconProps = ComponentPropsWithoutRef<'svg'> & { size?: string | number } export const ErdIcon: FC = ({ size, ...props }) => { return ( ) }