@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 680 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="M12 22L8 18H16L12 22ZM12 2L16 6H8L12 2ZM12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12C14 13.1046 13.1046 14 12 14ZM2 12L6 8V16L2 12ZM22 12L18 16V8L22 12Z"/>
</Svg>);
};
Icon.displayName = 'DragMoveFill';
/**
* Remix Icon: Drag Move Fill
* @see {@link https://remixicon.com/icon/drag-move-fill Remix Icon Docs}
*/
export const DragMoveFill = memo(Icon);