# Text ## Usage ```js import { Text } from 'asc-web-components'; ``` ### Component that displays plain text #### Usage ```js Some text ``` ##### If you need to override styles ```js const StyledText = styled(Text.Body)` &:hover{ border-bottom: 1px dotted; } `; Some text ``` #### Properties | Props | Type | Required | Values | Default | Description | | ------------------ | -------- | :------: | --------------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `isDisabled` | `bool` | - | - | false | Marks text as disabled | | `as` | `string` | - | - | `p` | Sets the tag through which to render the component | | `title` | `bool` | - | - | - | Title | | `truncate` | `bool` | - | - | false | Disables word wrapping | | `isInline` | `bool` | - | - | false | Sets the 'display: inline-block' property | | `color` | `string` | - | - | '#333333' | Specifies the text color | | `disableColor` | `string` | - | | `lightGray` | Sets the text disabled color | | `isBold` | `bool` | - | - | false | Sets the font weight | | `isItalic` | `bool` | - | - | false | Sets the font style | | `backgroundColor` | `bool` | - | - | false | Sets background color |