UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

11 lines (9 loc) 214 B
export function setRootProperty( name: string, value: string, node?: HTMLElement, ) { if (!document) return; const element = node || document.documentElement; element.style.setProperty(name, value); }