@ima/devtools
Version:
IMA.js debugging panel in the Chrome Developer Tools window.
20 lines (19 loc) • 424 B
JSX
export default function MoreIcon() {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
width='24'
height='24'
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
strokeWidth='3'
strokeLinecap='round'
strokeLinejoin='round'
>
<circle cx='12' cy='12' r='1' />
<circle cx='12' cy='5' r='1' />
<circle cx='12' cy='19' r='1' />
</svg>
);
}