Skip to content

Empty

Empty

Component for displaying empty states when no data or content is available.

Import

import { EmptyComponent } from '@primitivekit/angular';

Basic Usage

<pk-empty>Content</pk-empty>

Props

No props available.

Customization

The Empty component supports CSS variables for complete customization:

<pk-empty [style]="{
  '--empty-bg-color': '#007bff',
  '--empty-text-color': '#ffffff'
}">Custom</pk-empty>

Design Tokens

The following design tokens are available for customization:

  • --empty-padding
  • --empty-text-align
  • --empty-max-width
  • --empty-margin
  • --empty-transition-duration
  • --empty-transition-timing
  • --empty-animation-duration
  • --empty-animation-timing
  • --empty-image-width
  • --empty-image-height
  • … and 32 more

Accessibility

The Empty component is fully accessible and follows WCAG 2.1 AA standards:

  • ✅ Semantic HTML elements
  • ✅ Keyboard accessible
  • ✅ Focus visible indicator
  • ✅ Proper ARIA attributes
  • ✅ Screen reader compatible
  • ✅ Touch target size (44x44px minimum)
  • ✅ Color contrast compliance

Keyboard Navigation

KeyAction
TabMove focus to/from component

Related Components

  • Avatar - Component for displaying user profile images or initials in a circular or rounded container.
  • Tag - Removable label component for displaying tags, filters, or selections.
  • Table - Data display component for showing structured data in rows and columns with sorting and pagination.
  • Collapse - Component for showing and hiding content sections with expand/collapse animation.
  • Image - Enhanced image component with lazy loading, fallback, and aspect ratio support.

See Also