@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 580 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="M8 4H21V6H8V4ZM3 3.5H6V6.5H3V3.5ZM3 10.5H6V13.5H3V10.5ZM3 17.5H6V20.5H3V17.5ZM8 11H21V13H8V11ZM8 18H21V20H8V18Z"/>
</Svg>);
};
Icon.displayName = 'ListCheck';
/**
* Remix Icon: List Check
* @see {@link https://remixicon.com/icon/list-check Remix Icon Docs}
*/
export const ListCheck = memo(Icon);