import React from "react"; import classNames from "classnames"; import { filterAttrs } from "@arc-ui/community-utils/filter-attrs"; import { Author } from "../Author"; import { AuthorProps } from "../Author/Author"; import styles from "./Quote.module.css"; /** * Use `Quote` where a quote or testimonial from an existing customer or stakeholder would help build trust and credibility with potential new customers. It's commonly used on product pages where customers would learn about a product or service that we offer.*/ export const Quote: React.FC = ({ author, styling = "Default", content, citeUrl, ...props }) => { return (

{content}

{author && }
); }; export interface QuoteProps { styling?: "Default" | "Secondary"; content: string; author?: AuthorProps; citeUrl?: string; }