@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 592 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="M14 3a1 1 0 0 1 1 1v5h5a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H10a1 1 0 0 1-1-1v-5H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1zm-1 2H5v8h8z"/>
</Svg>);
});
Icon.displayName = 'BringForward';
/**
* Remix Icon: Bring Forward
* @see {@link https://remixicon.com/icon/bring-forward Remix Icon Docs}
*/
export const BringForward = Icon;