import styled from "styled-components"; import Button from "./Button"; import { BaseButtonProps, PolymorphicComponent } from "./types"; const IconButton: PolymorphicComponent = styled(Button)` padding: 0; width: ${({ scale }) => (scale === "sm" ? "32px" : "48px")}; `; export default IconButton;