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