@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 657 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FlipVerticalLine = /* @__PURE__ */ memo(function FlipVerticalLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M22 11H2v2h20zm-4-9a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm0 18H6v-3h12zm2-3a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2z"/>
</Svg>);
});
/**
* Remix Icon: Flip Vertical Line
* @see {@link https://remixicon.com/icon/flip-vertical-line Remix Icon Docs}
*/
export { FlipVerticalLine };