@orfeas126/box-ui-elements
Version:
Box UI Elements
22 lines • 677 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconGraduationHat = ({
className = '',
color = '#8EA6B2',
height = 12,
title,
width = 12
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-graduation-hat ${className}`,
height: height,
title: title,
viewBox: "0 0 12 12",
width: width
}, /*#__PURE__*/React.createElement("path", {
className: "fill-color",
d: "M2.818 6.444v1.82L6 10l3.182-1.737V6.444L6 8.181 2.818 6.444zM6 2L1 4.667l5 2.666 4.09-2.182v3.071H11V4.667L6 2z",
fill: color,
fillRule: "nonzero"
}));
export default IconGraduationHat;
//# sourceMappingURL=IconGraduationHat.js.map