UIIcon

Use icons from the Writer/Dashboard styleguide

Since: 7.0.0

Example

import {UIIcon} from 'writer'

render($$) {
    const el = $$('div')

    return el.append(
        $$(UIIcon, {
            name: 'space-rocket-flying-regular',
            size: 20,
            color: '#000'
        })
    )
}

Last updated