@sky-mavis/tanto-widget
Version:
Tanto Widget
16 lines (12 loc) • 505 B
JavaScript
;
var jsxRuntime = require('@emotion/react/jsx-runtime');
var MatchaIcon = require('./MatchaIcon.cjs');
function CheckCircleFillIcon(props) {
return jsxRuntime.jsx(MatchaIcon.MatchaIcon, {
...props,
children: jsxRuntime.jsx("path", {
d: "M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm45.66,85.66-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35a8,8,0,0,1,11.32,11.32Z"
})
});
}
exports.CheckCircleFillIcon = CheckCircleFillIcon;