import type { HTMLAttributes, PropsWithChildren } from "react";
import { cn } from "../../lib/cn";
import { edgeInsetsStyle, type SpacingValue } from "./layout-primitives";
export type PaddingProps = PropsWithChildren<
HTMLAttributes & {
padding?: SpacingValue;
}
>;
export function Padding({
children,
className,
padding = "1rem",
style,
...props
}: PaddingProps) {
return (
{children}
);
}