@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 605 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="M11 4H21V6H11V4ZM11 8H17V10H11V8ZM11 14H21V16H11V14ZM11 18H17V20H11V18ZM3 4H9V10H3V4ZM5 6V8H7V6H5ZM3 14H9V20H3V14ZM5 16V18H7V16H5Z"/>
</Svg>);
};
Icon.displayName = 'ListCheck2';
/**
* Remix Icon: List Check 2
* @see {@link https://remixicon.com/icon/list-check-2 Remix Icon Docs}
*/
export const ListCheck2 = memo(Icon);