@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 531 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M5 18L12.6796 12L5 6V4H19V6H8.26348L16 12L8.26348 18H19V20H5V18Z"/>
</Svg>);
};
Icon.displayName = 'Functions';
/**
* Remix Icon: Functions
* @see {@link https://remixicon.com/icon/functions Remix Icon Docs}
*/
export const Functions = memo(Icon);