import { titleFontSizeProperties, titleLineHeightProperties } from './rarui-title.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 TitleDynamicProperties = Pick & Pick; interface TitleSprinkle extends TitleDynamicProperties { /** * 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 title. */ fontSize?: AddDollar | Conditions>; /** * The lineHeight property specifies the line height of the title. */ lineHeight?: AddDollar | Conditions>; } export type { TitleSprinkle };