@dndbuilder.com/react
Version:
Drag and drop builder for React
15 lines (14 loc) • 619 B
TypeScript
import { ResponsiveValue } from '../../../types/responsive';
import { LocalizedValue } from '../../../types';
import { TextAlignType, TextShadow, TypographyType, UnitValue, WithPseudoClass } from '../../../types/style';
export type TextSettingsType = {
text?: LocalizedValue<string>;
alignment?: ResponsiveValue<TextAlignType>;
textColor?: WithPseudoClass;
typography?: TypographyType;
dropCap?: ResponsiveValue<boolean>;
columns?: ResponsiveValue;
columnGap?: ResponsiveValue<UnitValue>;
textShadow?: ResponsiveValue<WithPseudoClass<TextShadow>>;
};
//# sourceMappingURL=index.d.ts.map