@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 717 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M12.9998 3L12.9996 10.267L19.294 6.63397L20.294 8.36602L14.0006 11.999L20.294 15.634L19.294 17.366L12.9996 13.732L12.9998 21H10.9998L10.9996 13.732L4.70557 17.366L3.70557 15.634L9.99857 12L3.70557 8.36602L4.70557 6.63397L10.9996 10.267L10.9998 3H12.9998Z"/>
</Svg>);
};
Icon.displayName = 'Asterisk';
/**
* Remix Icon: Asterisk
* @see {@link https://remixicon.com/icon/asterisk Remix Icon Docs}
*/
export const Asterisk = memo(Icon);