UNPKG

@klnjs/react-icon

Version:

An icon component for React.

12 lines (11 loc) 277 B
import { useState } from 'react'; export const useIcon = () => { const [labelId, setLabelId] = useState(); const [descriptionId, setDescriptionId] = useState(); return { labelId, descriptionId, setLabelId, setDescriptionId }; };