css-properties-with-variables.tsx 137 B

1234
  1. import { CSSProperties } from 'react'
  2. export type CSSPropertiesWithVariables = CSSProperties &
  3. Record<`--${string}`, number | string>