@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 629 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M11 3a1 1 0 0 1 1 1v2h5a1 1 0 0 1 1 1v5h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1h-7a1 1 0 0 1-1-1v-2H7a1 1 0 0 1-1-1v-5H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm5 5H8v8h8z"/>
</Svg>);
});
Icon.displayName = 'BringToFront';
/**
* Remix Icon: Bring To Front
* @see {@link https://remixicon.com/icon/bring-to-front Remix Icon Docs}
*/
export const BringToFront = Icon;