A pretty custom hooks for css variable and react
npm install use-css-variablecmd
// npm
npm install --save use-css-variable
// yarn
yarn add use-css-variable
`
Usage
`tsx
import React, { FC } from 'react'
import { useCSSVariable } from 'use-css-variable'
export const Component: FC = () => {
const [foo, setFoo] = useCSSVariable('foo')
...
}
``