import * as React from 'react'; import {Text as CoreText, TextProps as CoreTextProps} from '../core/CoreText'; import {withStylable} from 'wix-ui-core/dist/src/utils/withStylable'; import {Skin, Size} from './constants'; import style from './Text.st.css'; export interface Props { /** font size of the text */ size?: Size; /** is the text type is secondary. Affects the font color */ secondary?: boolean; /** skin color of the text */ skin?: Skin; /** is the text has dark or light skin */ light?: boolean; /** is the text bold */ bold?: boolean; } const defaultProps: Props = { size: Size.medium, secondary: false, skin: Skin.standard, light: false, bold: false }; export const Text = withStylable( CoreText, style, ({size, secondary, skin, light, bold}) => ({ size, secondary, skin, light: light && skin === Skin.standard, bold }), defaultProps ); Text.displayName = 'Text';