UNPKG

@coveord/plasma-mantine

Version:

A Plasma flavoured Mantine theme

9 lines (7 loc) 268 B
import {PartialVarsResolver, TextFactory, getFontSize} from '@mantine/core'; export const TextVars: PartialVarsResolver<TextFactory> = (theme, props) => { if (!props.size) { return {root: {'--text-fz': getFontSize('sm')}}; } return {root: {}}; };