import { ButtonProps } from "./button" import styles from "./button.module.css" export default function Button({ children, ...props }: ButtonProps) { return ( ) }