@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 592 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const DeleteColumn = /* @__PURE__ */ memo(function DeleteColumn(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M12 3a1 1 0 0 1 1 1v8a5 5 0 1 1 .213 8.152L13 20a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm-1 2H7v14h4zm8 10h-6v2h6z"/>
</Svg>);
});
/**
* Remix Icon: Delete Column
* @see {@link https://remixicon.com/icon/delete-column Remix Icon Docs}
*/
export { DeleteColumn };