(name: string)
| 974 | } |
| 975 | |
| 976 | export function normalizeCustomPropertyName(name: string): string { |
| 977 | return `--${normalizeCustomPropertyBody(name)}` |
| 978 | } |
| 979 | |
| 980 | // Normalize Figma variable names to CSS custom property names (matches getCSSAsync behavior). |
| 981 | export function normalizeFigmaVarName(input: string): string { |
no test coverage detected