UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 605 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const GraduationCapFill = /* @__PURE__ */ memo(function GraduationCapFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}> <Path d="M12 2 0 9l12 7 10-5.833V17.5h2V9zM3.999 13.49V18a9.99 9.99 0 0 0 8 4A9.99 9.99 0 0 0 20 18v-4.509l-8 4.667z"/> </Svg>); }); /** * Remix Icon: Graduation Cap Fill * @see {@link https://remixicon.com/icon/graduation-cap-fill Remix Icon Docs} */ export { GraduationCapFill };