secret/components/icons/IconCategoryTv.js
2023-09-13 20:22:28 +05:30

17 lines
478 B
JavaScript

export default function IconCategoryTv({ className }) {
return (
<svg
className={className}
width='1em'
height='1em'
viewBox='0 0 12 12'
xmlns='http://www.w3.org/2000/svg'
>
<path
d='M12 2.689H5.448L7.068.722 6.132 0 4.2 2.345 2.268.017l-.936.705 1.62 1.967H0V12h12V2.689Zm-4.8 8.147h-6V3.853h6v6.983Zm3-2.328H9V7.344h1.2v1.164Zm0-2.328H9V5.016h1.2V6.18Z'
fill='#FFF'
opacity='.75'
/>
</svg>
)
}