@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 577 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="M5 5v14h14V5zM3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2zm9 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/>
</Svg>);
});
Icon.displayName = 'Dice1Line';
/**
* Remix Icon: Dice 1 Line
* @see {@link https://remixicon.com/icon/dice-1-line Remix Icon Docs}
*/
export const Dice1Line = Icon;