@sky-mavis/tanto-widget
Version:
Tanto Widget
26 lines (22 loc) • 439 B
JavaScript
;
var jsxRuntime = require('@emotion/react/jsx-runtime');
function MatchaIcon(props) {
const {
size = 16,
viewBox = '0 0 256 256',
color,
children,
...restProps
} = props;
return jsxRuntime.jsx("svg", {
...restProps,
style: {
fill: color ?? 'currentColor'
},
viewBox: viewBox,
width: size,
height: size,
children: children
});
}
exports.MatchaIcon = MatchaIcon;