@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 571 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const FullscreenExitLine = /* @__PURE__ */ memo(function FullscreenExitLine(_props) {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M18 7h4v2h-6V3h2zM8 9H2V7h4V3h2zm10 8v4h-2v-6h6v2zM8 15v6H6v-4H2v-2z"/>
</Svg>);
});
/**
* Remix Icon: Fullscreen Exit Line
* @see {@link https://remixicon.com/icon/fullscreen-exit-line Remix Icon Docs}
*/
export { FullscreenExitLine };