Back to Heroui

CloseButton

apps/docs/content/docs/en/react/components/(buttons)/close-button.mdx

3.1.03.1 KB
Original Source

Import

tsx
import { CloseButton } from "@heroui/react";

Usage

<ComponentPreview name="close-button-default" />

With Custom Icon

<ComponentPreview name="close-button-with-custom-icon" />

Interactive

<ComponentPreview name="close-button-interactive" />

<RelatedComponents component="closebutton" />

Styling

Passing Tailwind CSS classes

tsx
import {CloseButton} from "@heroui/react";

function CustomCloseButton() {
  return <CloseButton className="text-red-600 hover:bg-red-100">Close</CloseButton>;
}

Customizing the component classes

To customize the CloseButton component classes, you can use the @layer components directive.

Learn more.

css
@layer components {
  .close-button {
    @apply bg-red-100 text-red-800 hover:bg-red-200;
  }

  .close-button--custom {
    @apply rounded-full border-2 border-red-300;
  }
}

HeroUI follows the BEM methodology to ensure component variants and states are reusable and easy to customize.

CSS Classes

The CloseButton component uses these CSS classes (View source styles):

Base Classes

  • .close-button - Base component styles

Variant Classes

  • .close-button--default - Default variant

Interactive States

The component supports both CSS pseudo-classes and data attributes for flexibility:

  • Hover: :hover or [data-hovered="true"]
  • Active/Pressed: :active or [data-pressed="true"]
  • Focus: :focus-visible or [data-focus-visible="true"]
  • Disabled: :disabled or [aria-disabled="true"]

API Reference

CloseButton Props

PropTypeDefaultDescription
variant"default""default"Visual variant of the button
childrenReactNode | function<CloseIcon />Content to display (defaults to close icon)
onPress() => void-Handler called when the button is pressed
isDisabledbooleanfalseWhether the button is disabled

React Aria Button Props

CloseButton extends all React Aria Button props. Common props include:

PropTypeDescription
aria-labelstringAccessible label for screen readers
aria-labelledbystringID of element that labels the button
aria-describedbystringID of element that describes the button

RenderProps

When using the render prop pattern, these values are provided:

PropTypeDescription
isHoveredbooleanWhether the button is hovered
isPressedbooleanWhether the button is pressed
isFocusedbooleanWhether the button is focused
isDisabledbooleanWhether the button is disabled