import {forwardRef} from 'react'; import type {SVGIconProps} from './svgIcon'; import {SvgIcon} from './svgIcon'; interface Props extends SVGIconProps { isSolid?: boolean; } const IconStar = forwardRef(({isSolid = false, ...props}, ref) => { return ( {isSolid ? ( ) : ( )} ); }); IconStar.displayName = 'IconStar'; export {IconStar};