@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 736 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="m12 .5 4.226 6.183 7.186 2.109-4.575 5.93.216 7.486L12 19.69l-7.054 2.518.216-7.486-4.575-5.93 7.187-2.109zm0 3.544L9.022 8.402 3.957 9.887l3.225 4.179-.153 5.274 4.97-1.774 4.97 1.774-.151-5.274 3.224-4.179-5.065-1.485zM10 12a2 2 0 1 0 4 0h2a4 4 0 0 1-8 0z"/>
</Svg>);
});
Icon.displayName = 'StarSmileLine';
/**
* Remix Icon: Star Smile Line
* @see {@link https://remixicon.com/icon/star-smile-line Remix Icon Docs}
*/
export const StarSmileLine = Icon;