9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
|
import { library } from "@fortawesome/fontawesome-svg-core"
|
||
|
import { fas } from "@fortawesome/free-solid-svg-icons"
|
||
|
|
||
|
library.add(fas)
|
||
|
|
||
|
export const useIcons = () => {
|
||
|
return null
|
||
|
}
|