@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 711 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="M12.0002 2L21.3002 5.32L19.8817 17.63L12.0002 22L4.11867 17.63L2.7002 5.32L12.0002 2ZM12.0002 4.21L6.18645 17.26H8.35412L9.52286 14.34H14.4576L15.6263 17.26H17.794L12.0002 4.21ZM13.6984 12.54H10.302L12.0002 8.45L13.6984 12.54Z"/>
</Svg>);
};
Icon.displayName = 'AngularjsFill';
/**
* Remix Icon: Angularjs Fill
* @see {@link https://remixicon.com/icon/angularjs-fill Remix Icon Docs}
*/
export const AngularjsFill = memo(Icon);