sfgov-design-system
Version:
This is the design system for [SF.gov](https://sf.gov) and the City & County of San Francisco.
19 lines (15 loc) • 388 B
JavaScript
import { SFGovIcon } from '../icons'
window.customElements.define('sfgov-icon', SFGovIcon)
if (!document.getElementById('sfgov-icon-css')) {
const style = document.createElement('style')
style.textContent = `
sfgov-icon {
display: inline-flex;
align-items: center;
}
sfgov-icon svg {
fill: currentColor;
}
`
document.head.appendChild(style)
}