Image

Displays media.

Also known as:
  • Image card
  • Picture card

Overview

Purpose

The Image component displays media.within our design system. It follows our primitive layer principles, ensuring consistency and reusability across applications.

When to Use

  • Use when you need presenting information
  • Appropriate for display contexts
  • Follows primitive component patterns

When Not to Use

  • Avoid when simpler alternatives exist
  • Don't use for interactive functionality
  • Consider alternatives for edge cases

Live Example

import React from 'react';
import Image from './components/Image';
import props from '/props.json';

export default function App() {
  return (
    <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}>
      <Image {...props}>
        {props.children || 'Example image content'}
      </Image>
    </div>
  );
}

Anatomy

Understanding the structure of the Image component helps ensure proper implementation and customization.

Anatomy data not yet defined for this component. Define anatomy in the component contract file (Image.contract.json).

Variants & States

import React from 'react';
import Image from './components/Image';
import props from '/props.json';

export default function App() {
  return (
    <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}>
      <Image {...props}>
        {props.children || 'Example image content'}
      </Image>
    </div>
  );
}

API Reference

Props

NameTypeRequiredDefaultDescription
aspectRatio'square' | 'video' | 'photo' | 'wide' | 'portrait' | numberNo== 'number') return aspectRatio
objectFit'cover' | 'contain' | 'fill' | 'scale-down' | 'none'No'cover'
objectPositionstringNo'center'
loading'lazy' | 'eager'No'lazy'
size'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'full'No'full'
radius'none' | 'sm' | 'md' | 'lg' | 'full'No'none'
showPlaceholderbooleanNotrue
fallbackSrcstringNo
onError(event: React.SyntheticEvent<HTMLImageElement>) => voidNo{handleError
onLoad(event: React.SyntheticEvent<HTMLImageElement>) => voidNo{handleLoad

Accessibility

Standards Compliance

This component follows WCAG 2.1 AA guidelines and includes proper ARIA attributes, keyboard navigation, and screen reader support.

Common Pitfalls

  • Missing alt text
  • performance (lazy loading, responsive).

Accessibility Checklist

  • Keyboard navigation support
  • Screen reader compatibility
  • Color contrast compliance
  • Focus management
  • ARIA attributes
  • Reduced motion support

Usage Guidelines

✓ Do

  • Use consistent spacing and sizing
  • Follow established patterns
  • Provide clear labels and descriptions
  • Test with assistive technologies

✗ Don't

  • Override core functionality
  • Use without proper context
  • Ignore accessibility requirements
  • Modify without design system approval

Examples

Basic Usage

Simple implementation with default props and common configurations.

import React from 'react';
import Image from './components/Image';
import props from '/props.json';

export default function App() {
  return (
    <div style={{ padding: '2rem', display: 'flex', alignItems: 'center', justifyContent: 'center', minHeight: '100vh' }}>
      <Image {...props}>
        {props.children || 'Example image content'}
      </Image>
    </div>
  );
}

Advanced Usage

Complex patterns including composition, state management, and real-world scenarios.

import React from 'react';

export default function App() {
  return (
    <div style={{ 
      padding: '2rem', 
      display: 'flex',
      flexDirection: 'column',
      gap: '1.5rem'
    }}>
      <h3>Image - Advanced Patterns</h3>
      <p>Advanced usage patterns for Image include:</p>
      <ul>
        <li>Composition with other components</li>
        <li>Custom styling and theming</li>
        <li>Controlled vs uncontrolled patterns</li>
        <li>Form integration</li>
        <li>Accessibility enhancements</li>
      </ul>
      <p style={{ color: '#6b7280', fontStyle: 'italic' }}>
        Full advanced examples coming soon.
      </p>
    </div>
  );
}

Development Tools

Use these tools to analyze the component's performance, design tokens, and accessibility during development.

Contribute

Help us improve the Image component documentation. Found an issue or have suggestions?

Related Components