UNPKG
@klnjs/react-icon
Version:
latest (1.0.0-beta.13)
1.0.0-beta.13
1.0.0-beta.12
1.0.0-beta.11
1.0.0-beta.7
An icon component for React.
klnjs.github.io/basique
klnjs/basique
@klnjs/react-icon
/
dist
/
src
/
useIcon.js
12 lines
(11 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ useState }
from
'react'
;
export
const
useIcon
= (
) => {
const
[labelId, setLabelId] =
useState
();
const
[descriptionId, setDescriptionId] =
useState
();
return
{ labelId, descriptionId, setLabelId, setDescriptionId }; };