@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 525 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="M15.382 4H22v2h-5.382L9 21.236 5.382 14H2v-2h4.618L9 16.764z"/>
</Svg>);
});
Icon.displayName = 'SquareRoot';
/**
* Remix Icon: Square Root
* @see {@link https://remixicon.com/icon/square-root Remix Icon Docs}
*/
export const SquareRoot = Icon;