@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 653 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const AwardLine = /* @__PURE__ */ memo(function AwardLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M17 15.245v6.872a.5.5 0 0 1-.757.429L12 20l-4.243 2.546a.5.5 0 0 1-.757-.43v-6.87a8 8 0 1 1 10 0M9 16.42v3.049l3-1.8 3 1.8v-3.05A8 8 0 0 1 12 17a8 8 0 0 1-3-.581M12 15a6 6 0 1 0 0-12 6 6 0 0 0 0 12"/>
</Svg>);
});
/**
* Remix Icon: Award Line
* @see {@link https://remixicon.com/icon/award-line Remix Icon Docs}
*/
export { AwardLine };