import { Pressable } from './Button.styles' const Button = ({ href, type = 'button', icon, children, secondary, primaryColor, secondaryColor, small, size, isLoading, ...props }) => ( {icon} {children} ) export default Button