import IconTwentyStarFilledRaw from '@ui/display/icon/assets/twenty-star-filled.svg?react'; import { IconComponentProps } from '@ui/display/icon/types/IconComponent'; import { THEME_COMMON } from '@ui/theme'; type IconTwentyStarFilledProps = Pick; const iconStrokeMd = THEME_COMMON.icon.stroke.md; export const IconTwentyStarFilled = (props: IconTwentyStarFilledProps) => { const size = props.size ?? 24; const stroke = props.stroke ?? iconStrokeMd; return ( ); };