@postenbring/hedwig-react
Version:
React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).
28 lines • 758 B
TypeScript
export interface BlockquoteProps extends React.HTMLAttributes<HTMLQuoteElement> {
children?: React.ReactNode;
/**
* The quote style
*
* @default "default"
*/
variant?: "default" | "norwegian";
/**
* Change the default rendered element for the one passed as a child, merging their props and behavior.
*
* @default false
*/
asChild?: boolean;
}
/**
* @example
*
* ```tsx
* <Blockquote>
* <p>... but they’ll never take our freedom!</p>
* <footer>William Wallace</footer>
* </Blockquote>
* ```
*
*/
export declare const Blockquote: import("react").ForwardRefExoticComponent<BlockquoteProps & import("react").RefAttributes<HTMLQuoteElement>>;
//# sourceMappingURL=blockquote.d.ts.map