UNPKG

vira

Version:

A simple and highly versatile design system using element-vir.

30 lines (29 loc) 1.12 kB
import { html } from 'element-vir'; import { viraIconCssVars } from '../icon-css-vars.js'; import { defineIcon } from '../icon-svg.js'; /** * A speaker icon that is muted. * * @category Icon * @category SVG * @see https://electrovir.github.io/element-vir/vira/book/icons/speakermuted24icon */ export const SpeakerMuted24Icon = defineIcon({ name: 'SpeakerMuted24Icon', svgTemplate: html ` <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"> <path d="M5 16V8h5l6-5v2.2m0 5.6V21l-5.6-4.7" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> <path d="M4 20 20 4" stroke=${viraIconCssVars['vira-icon-stroke-color'].value} stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value} fill=${viraIconCssVars['vira-icon-fill-color'].value} /> </svg> `, });