Button B

Button with background color and flat shadow.

Preview

Code

import styles from "./button-b.module.css"; type Props = { className?: string; style?: React.CSSProperties; children: React.ReactNode; type?: "button" | "submit" | "reset" | "link"; iconOnly?: boolean; size?: "x-small" | "small" | "medium" | "large"; width?: "auto" | "full"; height?: "auto" | "medium" | "large"; rounded?: "none" | "small" | "medium" | "large" | "full"; shadow?: "small" | "medium"; // Put additional variants here, then define them in the CSS variant?: "default" | "blue" | "light-blue" | "red" | "light-red"; // Optional event handler onClick?: React.MouseEventHandler; }; export default function ButtonB({ className, style, children, type = "button", iconOnly, size, width, height = "auto", rounded, shadow = "medium", variant = "default", onClick, }: Props) { // button classes const _classNames = [ styles["button"], styles[`s-${size}`], styles[`h-${height}`], styles[`w-${width}`], styles[`r-${rounded}`], styles[`sh-${shadow}`], styles[`variant-${variant}`], iconOnly && styles[`icon-only`], className, ].join(" "); // type of the button if (type === "link") { // Link button should be embedded inside an <a href=... > tag or <Link href=...> if you use Next.js return ( <span onClick={onClick} className={_classNames} style={style}> {children} </span> ); } else { return ( <button onClick={onClick} className={_classNames} type={type} style={style}> {children} </button> ); } }

Design

Figma design file:

Documentation

Properties

Props of the component:

  • className (string): Specifies the CSS class of the component.

  • children (ReactNode): React children of the component. Specifies the ReactNode placed inside the component.

  • type ("button" | "submit" | "reset" | "link"): Specifies the type of the button.

  • iconOnly (boolean): Set to "true" to show only an icon element.

  • size ("x-small" | "small" | "medium" | "large" ): Specifies the size of the button.

  • width ("auto" | "full"): Specifies the width of the button. "full" will make the button occupy 100% of the width of the parent and "auto" will set the width of the button to the width of the content.

  • height ("auto" | "medium" | "large"): Specifies the height of the button.

  • rounded ("none" | "small" | "medium" | "large" | "full"): Specifies the border radius of the frame.

  • shadow ("none" | "small" | "medium"): Specifies the size of the shadow of the frame.

  • variant ("default" | "blue" | "light-blue" | "red" | "light-red" or a customized value): Specifies the color or theme variant of the component. See the "Sample CSS customization" below for an example of usage.

  • onClick (function): Fires when the button is clicked.

Sample CSS customization
.variant-red { --fg-color: white; --bg-color: rgb(240, 13, 62); --shadow-color: rgba(255, 78, 116, 0.4); }