# Headline Component that displays Heading text with custom styles ### Usage ```js import Headline from "@docspace/common/components/Headline"; ``` ```jsx Some text ``` ```jsx Some text ``` ```jsx Some text ``` #### If you need to override styles add forwardedAs instead of as ```js const StyledText = styled(Headline)` &:hover { border-bottom: 1px dotted; } `; ``` ```jsx Some text ``` ### Properties | Props | Type | Required | Values | Default | Description | | ---------- | :------: | :------: | :---------------------: | :-------: | ------------------------------------------------------------------- | | `color` | `string` | - | - | `#333333` | Specifies the contentHeader color | | `isInline` | `bool` | - | - | `false` | Sets the 'display: inline-block' property | | `title` | `bool` | - | - | - | Title | | `truncate` | `bool` | - | - | `false` | Disables word wrapping | | `type` | `oneOf` | ✅ | `content, header, menu` | - | Sets the size of text: content (21px), header (28px) or menu (27px) |