// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Heading, type HeadingProps } from "@radix-ui/themes";
import { type FC } from "react";
export type TitleProps = Omit<HeadingProps, "size">;
export const Title: FC<TitleProps> = ({ as = "h2", ...rest }) => {
return <Heading as={as} {...rest} size="4" />;
};