(family: string, isVariable: boolean)
| 51 | // Variable fonts get a "Variable" suffix in their family name to avoid conflicts with static faces. |
| 52 | // We need it when variable fonts are included and static files are present as a fallback. |
| 53 | const getResolvedFamilyName = (family: string, isVariable: boolean): string => |
| 54 | isVariable && !family.endsWith(' Variable') ? `${family} Variable` : family; |
| 55 | |
| 56 | const renderDeclaration = (property: string, value: CSSValue): string => { |
| 57 | if (!Array.isArray(value)) { |