--- title: Blockquote description: Used to quote text content from an external source links: source: components/blockquote storybook: components-blockquote--basic recipe: blockquote --- ## Usage ```jsx import { Blockquote } from "@chakra-ui/react" ``` ```tsx Uzumaki Naruto ``` :::info If you prefer a closed component composition, check out the [snippet below](#closed-component). ::: ## Examples ### With Cite To provide reference about the blockquote: - pass the `cite` prop to `Blockquote.Content` pointing to the quote url - render the `Blockquote.Caption` component to display name of quote author ### Colors Use the `colorPalette` prop to change the color of the blockquote. ### Variants Use the `variant` prop to change the visual style of the blockquote. ### Icon Here's an example of how to compose the `Float` and `BlockquoteIcon` to show an icon on the blockquote. The default icon is a double quote. Alternatively, you can render a custom icon. ### Justify Use the `justify` prop to change the alignment of the blockquote. ### With Avatar Here's an example of how to compose the `Blockquote`, `Avatar` and `Float` components to create a stunning testimonial component. ### Closed Component Here's an example of how to create a closed component composition If you want to automatically add the closed component to your project, run the command: ```bash npx @chakra-ui/cli snippet add blockquote ``` ## Props ### Root