vira
Version:
A simple and highly versatile design system using element-vir.
24 lines (23 loc) • 834 B
JavaScript
import { html } from 'element-vir';
import { viraIconCssVars } from '../icon-css-vars.js';
import { defineIcon } from '../icon-svg.js';
/**
* A speaker icon that is at minimum volume.
*
* @category Icon
* @category SVG
* @see https://electrovir.github.io/element-vir/vira/book/icons/speakerquiet24icon
*/
export const SpeakerQuiet24Icon = defineIcon({
name: 'SpeakerQuiet24Icon',
svgTemplate: html `
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<path
d="m10 16 6 5V3l-6 5H5v8h5Z"
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
fill=${viraIconCssVars['vira-icon-fill-color'].value}
/>
</svg>
`,
});