@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 577 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const KanbanView2 = /* @__PURE__ */ memo(function KanbanView2(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M2 4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1zm14 15h4V5h-4zM14 5h-4v14h4zM4 5v14h4V5z"/>
</Svg>);
});
/**
* Remix Icon: Kanban View 2
* @see {@link https://remixicon.com/icon/kanban-view-2 Remix Icon Docs}
*/
export { KanbanView2 };