import { ReactNode } from "react"; import { Icon } from "../../atoms/icon"; import "./index.scss"; export function Quote({ name, title, org, children, extraClasses, }: { name: string; title?: string; org?: string; children: ReactNode; extraClasses?: string | null; }) { return (

{name} {title && , {title}} {org && , {org}}

{children}

); }