@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 975 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 3.298 2.445-1.63 1.11 1.664L13 5.035v5.233L17.53 7.65l.198-3.064 1.996.13-.19 2.932 2.635 1.303-.886 1.792-2.753-1.36L14.001 12l4.53 2.616 2.753-1.36.886 1.792-2.634 1.303.19 2.932-1.997.129-.197-3.064L13 13.732v5.233l2.555 1.703-1.11 1.664L12 20.702l-2.446 1.63-1.109-1.664L11 18.965v-5.233l-4.532 2.616-.198 3.064-1.996-.128.19-2.933-2.635-1.303.887-1.793 2.752 1.361L10 12 5.468 9.383l-2.752 1.361-.887-1.793L4.464 7.65l-.19-2.933 1.997-.129.197 3.064L11 10.267V5.035L8.445 3.332l1.11-1.664z"/>
</Svg>);
});
Icon.displayName = 'SnowflakeFill';
/**
* Remix Icon: Snowflake Fill
* @see {@link https://remixicon.com/icon/snowflake-fill Remix Icon Docs}
*/
export const SnowflakeFill = Icon;