# ShareButton

A button that allows users to share content from the web application using the device's native sharing capabilities.

### **Import**
```tsx
import { ShareButton } from '@app-studio/web';
```

### **Default**
```tsx
import React from 'react';
import { ShareButton } from '@app-studio/web';

export const DefaultShareButton = () => (
  <ShareButton
    label="Share this page"
    shareData={{
      title: 'App Studio',
      text: 'Découvrez les composants App Studio.',
      url: 'https://appstudio.example.com',
    }}
    onUnsupported={() =>
      alert('Le partage natif est indisponible sur ce navigateur.')
    }
  />
);
```

