// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { Flex, type FlexProps } from "@radix-ui/themes";
import { type FC } from "react";
export type RootProps = Omit<FlexProps, "direction" | "gap">;
export const Root: FC<RootProps> = ({ children, ...rest }) => {
return (
<Flex {...rest} direction="column" gap="1">
{children}
</Flex>
);
};