1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-26 03:25:23 -04:00
jarv.is/components/Blockquote/Blockquote.tsx
2025-04-24 11:20:02 -04:00

11 lines
376 B
TypeScript

import cn from "../../lib/helpers/classnames";
import type { ComponentPropsWithoutRef } from "react";
export type BlockquoteProps = ComponentPropsWithoutRef<"blockquote">;
const Blockquote = ({ className, ...rest }: BlockquoteProps) => (
<blockquote className={cn("border-l-link ml-0 border-l-4 pl-5 text-gray-700", className)} {...rest} />
);
export default Blockquote;