dom.ts 130 B

123
  1. export const getCssVariable = (el: HTMLElement, property: string) => {
  2. return getComputedStyle(el).getPropertyValue(property)
  3. }