import { useTheme } from '@emotion/react'; import IconRelationManyToOneRaw from '@assets/icons/many-to-one.svg?react'; import { IconComponentProps } from '@ui/display/icon/types/IconComponent'; type IconRelationManyToOneProps = Pick; export const IconRelationManyToOne = (props: IconRelationManyToOneProps) => { const theme = useTheme(); const size = props.size ?? 24; const stroke = props.stroke ?? theme.icon.stroke.md; return ( ); };