UNPKG

@sky-mavis/tanto-widget

Version:
26 lines (22 loc) 439 B
'use strict'; 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;