@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 658 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FlipVerticalFill = /* @__PURE__ */ memo(function FlipVerticalFill(_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-4H6V4h12zm2-3a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2zm-2 11a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2z"/>
</Svg>);
});
/**
* Remix Icon: Flip Vertical Fill
* @see {@link https://remixicon.com/icon/flip-vertical-fill Remix Icon Docs}
*/
export { FlipVerticalFill };