Component
Split Button Icon
Split buttons with icon and dropdown
- Component
- Tailwind
- MIT
Preview
Live component
9:41 100%
devsnips.dev/library/tailwind/components/buttons/split-button/icon/ fluid · no fixed width 100%
Install
Add to your project
npx devsnips add Tailwind/Components/Buttons/split-button/icon Tailwind/Components/Buttons/split-button/icon <!-- Split Button with Icon - Primary -->
<div class="inline-flex rounded-md shadow-sm" role="group">
<button class="px-4 py-2 text-sm font-medium text-white bg-blue-600 rounded-l-lg hover:bg-blue-700 focus:z-10 focus:ring-2 focus:ring-blue-500">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-8l-4-4m0 0L8 8m4-4v12"/>
</svg>
Download
</button>
<button class="px-2 py-2 text-sm font-medium text-white bg-blue-600 border-l border-blue-700 rounded-r-lg hover:bg-blue-700 focus:z-10 focus:ring-2 focus:ring-blue-500">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/>
</svg>
</button>
</div>
<!-- Split Button with Icon - Outline -->
<div class="inline-flex rounded-md shadow-sm" role="group">
<button class="px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-200 rounded-l-lg hover:bg-gray-50 focus:z-10 focus:ring-2 focus:ring-blue-500">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z"/>
</svg>
Save
</button>
<button class="px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-l-0 border-gray-200 rounded-r-lg hover:bg-gray-50 focus:z-10 focus:ring-2 focus:ring-blue-500">
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/>
</svg>
</button>
</div> # Split Button Icon
Split button with an icon segment.
## Preview
Open `preview.html` for a standalone demonstration.
## Features
- Split layout with icon segment
- Focus-visible states
## Usage
```bash
npx devsnips add Tailwind/Components/Buttons/split-button/icon
```
Copy from `code.html`.
## Customization
- Colors, icon, spacing
## Accessibility
- Each interactive segment needs a clear accessible name
## Dependencies
- Tailwind CSS only (or + small JS if interactive menu is included)
## File Structure
- `code.html` · `preview.html` · `metadata.json` · `README.md` 29 lines UTF-8 · LF · Spaces: 2
Continue browsing