Blockquote
Blockquote
is a component that represents a blockquote. By default, it renders a blockquote
element.
Theming
The Blockquote
is a multi part component.
If you want to change the style of the component, please check here.
export const Blockquote: ComponentMultiStyle<"Blockquote"> = {baseStyle: ({ justify = "start" }) => ({caption: {color: ["blackAlpha.700", "whiteAlpha.600"],fontSize: "sm",},cite: {},container: {alignItems: justify,display: "flex",flexDirection: "column",gap: "sm",position: "relative",textAlign: justify,},content: {},icon: {},}),variants: {plain: {container: {px: "md",},},solid: ({ colorScheme: c = "gray" }) => ({container: {borderStartColor: isGray(c)? [`${c}.50`, `${c}.700`]: [`${c}.500`, `${c}.600`],borderStartWidth: "4px",px: "md",},}),subtle: ({ colorScheme: c, colorMode: m, theme: t }) => ({container: {borderStartColor: [`${c}.50`, shadeColor(`${c}.300`, 68)(t, m)],borderStartWidth: "4px",px: "md",},}),},defaultProps: {colorScheme: "gray",variant: "subtle",},}
Edit this page on GitHub