UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 1.4 kB
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="M10.998 1.58a2 2 0 0 1 2.004 0l7.5 4.342a2 2 0 0 1 .998 1.731v8.694a2 2 0 0 1-.998 1.73l-7.5 4.343a2 2 0 0 1-2.004 0l-7.5-4.342a2 2 0 0 1-.998-1.731V7.653a2 2 0 0 1 .998-1.73zM4.5 7.653v.005l6.502 3.764A2 2 0 0 1 12 13.153v7.536l7.5-4.342V7.653L12 3.311zM6.132 12.3c0-.552-.388-1.224-.866-1.5s-.866-.052-.866.5.388 1.224.866 1.5.866.052.866-.5m2.597 6.498c.478.276.866.053.866-.5 0-.552-.388-1.224-.866-1.5s-.866-.052-.866.5.388 1.224.866 1.5M5.266 16.8c.478.276.866.052.866-.5s-.388-1.224-.866-1.5-.866-.052-.866.5.388 1.224.866 1.5m3.463-2c.478.277.866.053.865-.5 0-.552-.387-1.223-.866-1.5-.478-.276-.866-.052-.866.5 0 .553.388 1.224.867 1.5M14.898 8c.478-.276.478-.724 0-1s-1.254-.276-1.732 0c-.479.276-.479.724 0 1 .478.276 1.254.276 1.732 0m-4.8-1c.478.276.478.724 0 1s-1.254.276-1.732 0-.478-.724 0-1 1.254-.276 1.732 0m5.897 8.35c.598-.346 1.083-1.185 1.083-1.875s-.485-.97-1.082-.625-1.083 1.184-1.083 1.875c0 .69.485.97 1.082.625"/> </Svg>); }); Icon.displayName = 'DiceLine'; /** * Remix Icon: Dice Line * @see {@link https://remixicon.com/icon/dice-line Remix Icon Docs} */ export const DiceLine = Icon;