import styles from "./styles.module.scss" type RowProps = { children: React.ReactNode gap?: number, alignItems?: "center" } export const Row = ({ children, alignItems, gap }: RowProps) => { return (
{children}
) }