---
title: Mark
description: "`Mark` is a component that emphasizes a specific part of the text."
links:
- style: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/mark/mark.style.ts
- source: https://github.com/yamada-ui/yamada-ui/tree/main/packages/react/src/components/mark
- storybook: https://yamada-ui.github.io/yamada-ui?path=/story/components-mark--basic
---
# Mark
`Mark` is a component that emphasizes a specific part of the text.
```tsx
領域展開無量空処
```
## Usage
```tsx
import { Mark } from "@yamada-ui/react"
```
```tsx
import { Mark } from "@/components/ui"
```
```tsx
import { Mark } from "@workspaces/ui"
```
```tsx
```
### Change Variant
```tsx
{(variant, index) => (
{toTitleCase(variant)}
)}
```
### Change Color Scheme
```tsx
{(colorScheme, index) => (
{toTitleCase(colorScheme)}
)}
```
## Props
| Prop | Default | Type | Description |
| ------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ |
| `as` | - | `As` | The HTML element to render. |
| `asChild` | - | `boolean` | Merges its props onto its immediate child. |
| `css` | - | `CSSObject \| CSSObject[]` | The CSS object. |
| `colorScheme` | - | `"amber" \| "black" \| "blackAlpha" \| "blue" \| "cyan" \| "danger" \| "emerald" \| "error" \| "flashy" \| "fuchsia" ...` | Set color scheme variables. |
| `variant` | `"subtle"` | `"accent" \| "solid" \| "subtle" \| "text"` | The variant of the component. |
## Similar Components
- [Blockquote](https://yamada-ui.com/docs/components/blockquote.md): `Blockquote` is a component that represents a quotation. By default, it renders a `blockquote` element.
- [Code](https://yamada-ui.com/docs/components/code.md): `Code` is a component that represents a code block. By default, it renders a `code` element.
- [Em](https://yamada-ui.com/docs/components/em.md): `Em` is a component that represents emphasized text. By default, it renders a `em` element.
- [Heading](https://yamada-ui.com/docs/components/heading.md): `Heading` is a component that represents section headings. By default, it renders an `h1` element.
- [Highlight](https://yamada-ui.com/docs/components/highlight.md): `Highlight` is a component that highlights specified strings within text. By default, it renders a `p` element.
- [Kbd](https://yamada-ui.com/docs/components/kbd.md): `Kbd` is a component that represents keyboard input.
- [Text](https://yamada-ui.com/docs/components/text.md): `Text` is a component that represents a paragraph of text. By default, it renders a `p` element.
- [Link](https://yamada-ui.com/docs/components/link.md): `Link` is a component for creating hyperlinks to different web pages, locations within the same page, or other URLs.
## Used By Components & Hooks
- [Highlight](https://yamada-ui.com/docs/components/highlight.md): `Highlight` is a component that highlights specified strings within text. By default, it renders a `p` element.