Components
- Accordion
- Alert
- Alert Dialog
- Aspect Ratio
- Autocomplete
- Avatar
- Badge
- Bar List
- Breadcrumb
- Button
- Button Group
- Calendar
- Card
- Carousel
- Checkbox
- Checkbox Group
- Circular Progress
- Collapsible
- Combobox
- Command
- Context Menu
- Copy Button
- Currency Input
- Data Table
- Date Picker
- Dialog
- Drawer
- Dropdown Menu
- Empty
- Field
- Hover Card
- Input
- Input Group
- Input OTP
- Item
- Kbd
- Label
- Menubar
- Meter
- Multi Combobox
- Native Select
- Navigation Menu
- Number Field
- Pagination
- Phone Input
- Popover
- Progress
- Progress List
- Prompt
- Radio Group
- Resizable
- Scroll Area
- Select
- Separator
- Sheet
- Sidebar
- Skeleton
- Slider
- Sonner
- Spinner
- Stat
- Switch
- Table
- Tabs
- Textarea
- Toggle
- Toggle Group
- Tooltip
- Typography
Installation
npm install blode-icons-react
Usage
Import icons by name and use them as React components.
import { SearchIcon, PlusIcon } from "blode-icons-react";
<SearchIcon size={32} />
<PlusIcon color="red" strokeWidth={1.5} />Lucide Compatibility
Drop-in replacement for lucide-react. Same names, same props.
// Lucide-compatible names (drop-in replacement)
import { ChevronDown, Search, Plus } from "blode-icons-react";
// Full library names (with Icon suffix)
import { ChevronDownIcon, SparkleIcon } from "blode-icons-react";Props
All icons accept the same props as lucide-react.
| Prop | Type | Default |
|---|---|---|
size | string | number | 24 |
color | string | currentColor |
strokeWidth | string | number | 2 |
Dynamic Imports
Load icons by name at runtime. Useful when the icon comes from a database or API.
import { DynamicIcon } from "blode-icons-react/dynamic";
<DynamicIcon name="SearchIcon" size={24} fallback={<span>Loading...</span>} />;