@sky-mavis/tanto-widget
Version:
Tanto Widget
19 lines • 385 B
JavaScript
import {jsx}from'@emotion/react/jsx-runtime';function MatchaIcon(props) {
const {
size = 16,
viewBox = '0 0 256 256',
color,
children,
...restProps
} = props;
return jsx("svg", {
...restProps,
style: {
fill: color ?? 'currentColor'
},
viewBox: viewBox,
width: size,
height: size,
children: children
});
}export{MatchaIcon};