// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Text, type TextProps } from "@radix-ui/themes";
import { type FC } from "react";
export type ParagraphProps = Omit<
Extract<TextProps, { as: "p" }>,
"as" | "asChild" | "mt"
>;
export const Paragraph: FC<ParagraphProps> = (props) => {
return <Text {...props} as="p" mt="2" />;
};