@unstoppabledomains/ui-kit
Version:
A set of common Unstoppable Domains components
18 lines • 988 B
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import SvgIcon from '@mui/material/SvgIcon';
import React from 'react';
const Caution = props => {
return /*#__PURE__*/React.createElement(SvgIcon, _extends({
viewBox: "0 0 16 16"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8 3.99398L13.02 12.6673H2.98L8 3.99398ZM8 1.33398L0.666672 14.0007H15.3333L8 1.33398Z",
fill: "#9D7A01"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.66668 10.668H7.33334V12.0013H8.66668V10.668Z",
fill: "#9D7A01"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.66668 6.66797H7.33334V10.0013H8.66668V6.66797Z",
fill: "#9D7A01"
}));
};
export default Caution;