UNPKG

estat-icons

Version:
26 lines (20 loc) 419 B
# estat-icons estat.pro icons pack ## Basic Usage *Note that this library currently only supports Vue 3.* First, install `estat-icons` from npm: ```sh npm install estat-icons ``` Now each icon can be imported individually as a Vue component: ```vue <script setup> import { LogoIcon } from 'estat-icons/dist/solid'; </script> <template> <div> <LogoIcon class="logo" /> <p>...</p> </div> </template> ```