import { textFontSizeProperties, textLineHeightProperties } from './rarui-text.css.js'; import { StandardLonghandProperties, StandardShorthandProperties } from '../../../types/css.types.js'; import { AddDollar, Conditions } from '../../../types/utils.types.js'; import { colorProperties, fontWeightProperties } from '../../../properties/css.js'; type TextDynamicProperties = Pick & Pick; interface TextSprinkle extends TextDynamicProperties { /** * The color property is used to set the color of the title. */ color?: AddDollar | Conditions>; /** * The color property is used to set the color of the title. * @default $regular */ fontWeight?: AddDollar | Conditions>; /** * The fontSize property sets the size of the text. */ fontSize?: AddDollar | Conditions>; /** * The lineHeight property specifies the line height of the title. */ lineHeight?: AddDollar | Conditions>; } export type { TextSprinkle };