@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 712 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 2 0 9 12 16 22 10.1667V17.5H24V9L12 2ZM3.99902 13.4905V18.0001C5.82344 20.429 8.72812 22.0001 11.9998 22.0001 15.2714 22.0001 18.1761 20.429 20.0005 18.0001L20.0001 13.4913 12.0003 18.1579 3.99902 13.4905Z"/>
</Svg>);
};
Icon.displayName = 'GraduationCapFill';
/**
* Remix Icon: Graduation Cap Fill
* @see {@link https://remixicon.com/icon/graduation-cap-fill Remix Icon Docs}
*/
export const GraduationCapFill = memo(Icon);