Focus states

This commit is contained in:
Gregory Schier
2023-02-24 12:35:13 -08:00
parent 5a9fb5a3a7
commit a5829a9b6b
5 changed files with 33 additions and 32 deletions

View File

@@ -19,7 +19,7 @@ const spaceClassesY = {
interface HStackProps extends BaseStackProps {
space?: keyof typeof spaceClassesX;
children: ReactNode;
children?: ReactNode;
}
export function HStack({ className, space, children, ...props }: HStackProps) {