aural-ui 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (308) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +456 -0
  3. package/dist/components/aspect-ratio/AspectRatio.stories.tsx +1327 -0
  4. package/dist/components/aspect-ratio/index.tsx +10 -0
  5. package/dist/components/aspect-ratio/meta.ts +8 -0
  6. package/dist/components/avatar/Avatar.stories.tsx +645 -0
  7. package/dist/components/avatar/index.tsx +50 -0
  8. package/dist/components/avatar/meta.ts +8 -0
  9. package/dist/components/badge/Badge.stories.tsx +169 -0
  10. package/dist/components/badge/index.tsx +28 -0
  11. package/dist/components/badge/meta.ts +6 -0
  12. package/dist/components/banner/Banner.stories.tsx +475 -0
  13. package/dist/components/banner/index.tsx +256 -0
  14. package/dist/components/banner/meta.ts +36 -0
  15. package/dist/components/button/Button.stories.tsx +74 -0
  16. package/dist/components/button/index.tsx +158 -0
  17. package/dist/components/button/meta.ts +33 -0
  18. package/dist/components/card/Card.stories.tsx +377 -0
  19. package/dist/components/card/index.tsx +85 -0
  20. package/dist/components/card/meta.ts +14 -0
  21. package/dist/components/char-count/CharCount.stories.tsx +334 -0
  22. package/dist/components/char-count/index.tsx +51 -0
  23. package/dist/components/char-count/meta.ts +13 -0
  24. package/dist/components/checkbox/Checkbox.stories.tsx +209 -0
  25. package/dist/components/checkbox/index.tsx +34 -0
  26. package/dist/components/checkbox/meta.ts +19 -0
  27. package/dist/components/chip/Chip.stories.tsx +207 -0
  28. package/dist/components/chip/index.tsx +92 -0
  29. package/dist/components/chip/meta.ts +17 -0
  30. package/dist/components/circular-loader/CircularLoader.stories.tsx +741 -0
  31. package/dist/components/circular-loader/index.tsx +138 -0
  32. package/dist/components/circular-loader/meta.ts +11 -0
  33. package/dist/components/collapsible/Collapsible.stories.tsx +319 -0
  34. package/dist/components/collapsible/index.tsx +158 -0
  35. package/dist/components/collapsible/meta.ts +22 -0
  36. package/dist/components/command/Command.stories.tsx +996 -0
  37. package/dist/components/command/index.tsx +324 -0
  38. package/dist/components/command/meta.ts +18 -0
  39. package/dist/components/dialog/Dialog.stories.tsx +963 -0
  40. package/dist/components/dialog/index.tsx +250 -0
  41. package/dist/components/dialog/meta.ts +28 -0
  42. package/dist/components/divider/Divider.stories.tsx +633 -0
  43. package/dist/components/divider/index.tsx +181 -0
  44. package/dist/components/divider/meta.ts +12 -0
  45. package/dist/components/dot-loader/DotLoader.stories.tsx +352 -0
  46. package/dist/components/dot-loader/index.tsx +78 -0
  47. package/dist/components/dot-loader/meta.ts +14 -0
  48. package/dist/components/dropdown/Dropdown.stories.tsx +1210 -0
  49. package/dist/components/dropdown/index.tsx +479 -0
  50. package/dist/components/dropdown/meta.ts +21 -0
  51. package/dist/components/form/Form.stories.tsx +320 -0
  52. package/dist/components/form/index.tsx +183 -0
  53. package/dist/components/form/meta.ts +11 -0
  54. package/dist/components/helper-text/HelperText.stories.tsx +254 -0
  55. package/dist/components/helper-text/index.tsx +102 -0
  56. package/dist/components/helper-text/meta.ts +18 -0
  57. package/dist/components/hover-card/HoverCard.stories.tsx +1328 -0
  58. package/dist/components/hover-card/index.tsx +42 -0
  59. package/dist/components/hover-card/meta.ts +12 -0
  60. package/dist/components/icon-button/IconButton.stories.tsx +252 -0
  61. package/dist/components/icon-button/index.tsx +130 -0
  62. package/dist/components/icon-button/meta.ts +20 -0
  63. package/dist/components/if-else/if-else.stories.tsx +100 -0
  64. package/dist/components/if-else/index.tsx +56 -0
  65. package/dist/components/if-else/meta.ts +6 -0
  66. package/dist/components/index.ts +70 -0
  67. package/dist/components/input/Input.stories.tsx +431 -0
  68. package/dist/components/input/index.tsx +487 -0
  69. package/dist/components/input/meta.ts +28 -0
  70. package/dist/components/label/Label.stories.tsx +200 -0
  71. package/dist/components/label/index.tsx +43 -0
  72. package/dist/components/label/meta.ts +14 -0
  73. package/dist/components/list/List.stories.tsx +963 -0
  74. package/dist/components/list/index.tsx +567 -0
  75. package/dist/components/list/meta.ts +24 -0
  76. package/dist/components/marquee/Marquee.stories.tsx +819 -0
  77. package/dist/components/marquee/index.tsx +107 -0
  78. package/dist/components/marquee/meta.ts +6 -0
  79. package/dist/components/overlay/Overlay.stories.tsx +954 -0
  80. package/dist/components/overlay/index.tsx +58 -0
  81. package/dist/components/overlay/meta.ts +10 -0
  82. package/dist/components/pagination/Pagination.stories.tsx +354 -0
  83. package/dist/components/pagination/index.tsx +455 -0
  84. package/dist/components/pagination/meta.ts +29 -0
  85. package/dist/components/popover/Popover.stories.tsx +1037 -0
  86. package/dist/components/popover/index.tsx +67 -0
  87. package/dist/components/popover/meta.ts +12 -0
  88. package/dist/components/radio/Radio.stories.tsx +146 -0
  89. package/dist/components/radio/index.tsx +41 -0
  90. package/dist/components/radio/meta.ts +19 -0
  91. package/dist/components/resizable/Resizable.stories.tsx +866 -0
  92. package/dist/components/resizable/index.tsx +55 -0
  93. package/dist/components/resizable/meta.ts +12 -0
  94. package/dist/components/scroll-area/ScrollArea.stories.tsx +1104 -0
  95. package/dist/components/scroll-area/index.tsx +55 -0
  96. package/dist/components/scroll-area/meta.ts +8 -0
  97. package/dist/components/search/Search.stories.tsx +678 -0
  98. package/dist/components/search/index.tsx +141 -0
  99. package/dist/components/search/meta.ts +6 -0
  100. package/dist/components/select/Select.stories.tsx +962 -0
  101. package/dist/components/select/index.tsx +512 -0
  102. package/dist/components/select/meta.ts +40 -0
  103. package/dist/components/sheet/Sheet.stories.tsx +1060 -0
  104. package/dist/components/sheet/index.tsx +440 -0
  105. package/dist/components/sheet/meta.ts +38 -0
  106. package/dist/components/skelton/Skelton.stories.tsx +859 -0
  107. package/dist/components/skelton/index.tsx +17 -0
  108. package/dist/components/skelton/meta.ts +6 -0
  109. package/dist/components/slider/Slider.stories.tsx +876 -0
  110. package/dist/components/slider/index.tsx +156 -0
  111. package/dist/components/slider/meta.ts +29 -0
  112. package/dist/components/stepper/Stepper.stories.tsx +639 -0
  113. package/dist/components/stepper/index.tsx +650 -0
  114. package/dist/components/stepper/meta.ts +19 -0
  115. package/dist/components/switch/Switch.stories.tsx +85 -0
  116. package/dist/components/switch/index.tsx +37 -0
  117. package/dist/components/switch/meta.ts +24 -0
  118. package/dist/components/switch-case/SwitchCase.stories.tsx +209 -0
  119. package/dist/components/switch-case/index.tsx +89 -0
  120. package/dist/components/switch-case/meta.ts +6 -0
  121. package/dist/components/table/Table.stories.tsx +1095 -0
  122. package/dist/components/table/index.tsx +113 -0
  123. package/dist/components/table/meta.ts +20 -0
  124. package/dist/components/tabs/Tabs.stories.tsx +1379 -0
  125. package/dist/components/tabs/index.tsx +186 -0
  126. package/dist/components/tabs/meta.ts +25 -0
  127. package/dist/components/tag/Tag.stories.tsx +625 -0
  128. package/dist/components/tag/index.tsx +320 -0
  129. package/dist/components/tag/meta.ts +52 -0
  130. package/dist/components/textarea/TextArea.stories.tsx +723 -0
  131. package/dist/components/textarea/index.tsx +480 -0
  132. package/dist/components/textarea/meta.ts +23 -0
  133. package/dist/components/toast/Toast.stories.tsx +1427 -0
  134. package/dist/components/toast/index.tsx +26 -0
  135. package/dist/components/toast/meta.ts +19 -0
  136. package/dist/components/toggle/Toggle.stories.tsx +1093 -0
  137. package/dist/components/toggle/index.tsx +44 -0
  138. package/dist/components/toggle/meta.ts +19 -0
  139. package/dist/components/tooltip/Tooltip.stories.tsx +1548 -0
  140. package/dist/components/tooltip/index.tsx +304 -0
  141. package/dist/components/tooltip/meta.ts +21 -0
  142. package/dist/components/typography/Typography.stories.tsx +197 -0
  143. package/dist/components/typography/index.tsx +184 -0
  144. package/dist/components/typography/meta.ts +38 -0
  145. package/dist/fonts/LabGrotesque-Regular.ttf +0 -0
  146. package/dist/fonts/LabGrotesqueTRIAL-Bold.otf +0 -0
  147. package/dist/fonts/LabGrotesqueTRIAL-Light.otf +0 -0
  148. package/dist/fonts/LabGrotesqueTRIAL-Medium.otf +0 -0
  149. package/dist/fonts/LabGrotesqueTRIAL-Regular.otf +0 -0
  150. package/dist/fonts/PPSupplySans-Regular (1).otf +0 -0
  151. package/dist/fonts/PPSupplySans-Regular.otf +0 -0
  152. package/dist/fonts/PPSupplySans-Ultralight.otf +0 -0
  153. package/dist/hooks/index.ts +3 -0
  154. package/dist/hooks/use-previous/UsePrevious.stories.tsx +997 -0
  155. package/dist/hooks/use-previous/index.ts +15 -0
  156. package/dist/hooks/use-previous/meta.ts +6 -0
  157. package/dist/hooks/use-standalone-pagination/UseStandalonePagination.stories.tsx +983 -0
  158. package/dist/hooks/use-standalone-pagination/index.ts +146 -0
  159. package/dist/hooks/use-standalone-pagination/meta.ts +6 -0
  160. package/dist/icons/Icons.stories.tsx +29 -0
  161. package/dist/icons/alert-icon/AlertIcon.stories.tsx +991 -0
  162. package/dist/icons/alert-icon/index.tsx +48 -0
  163. package/dist/icons/alert-icon/meta.ts +8 -0
  164. package/dist/icons/all-icons.tsx +738 -0
  165. package/dist/icons/angle-down-icon/AngleDownIcon.stories.tsx +1031 -0
  166. package/dist/icons/angle-down-icon/index.tsx +25 -0
  167. package/dist/icons/angle-down-icon/meta.ts +8 -0
  168. package/dist/icons/arrow-box-left-icon/ArrowBoxLeftIcon.stories.tsx +1080 -0
  169. package/dist/icons/arrow-box-left-icon/index.tsx +24 -0
  170. package/dist/icons/arrow-box-left-icon/meta.ts +8 -0
  171. package/dist/icons/arrow-right-icon/ArrowRightIcon.stories.tsx +1151 -0
  172. package/dist/icons/arrow-right-icon/index.tsx +26 -0
  173. package/dist/icons/arrow-right-icon/meta.ts +8 -0
  174. package/dist/icons/arrow-right-up-icon/ArrowRightUpIcon.stories.tsx +1273 -0
  175. package/dist/icons/arrow-right-up-icon/index.tsx +24 -0
  176. package/dist/icons/arrow-right-up-icon/meta.ts +8 -0
  177. package/dist/icons/art-board-icon/ArtBoardIcon.stories.tsx +670 -0
  178. package/dist/icons/art-board-icon/index.tsx +24 -0
  179. package/dist/icons/art-board-icon/meta.ts +7 -0
  180. package/dist/icons/audio-bar-icon/AudioBarIcon.stories.tsx +1244 -0
  181. package/dist/icons/audio-bar-icon/index.tsx +19 -0
  182. package/dist/icons/audio-bar-icon/meta.ts +8 -0
  183. package/dist/icons/bubble-check-icon/BubbleCheckIcon.stories.tsx +1239 -0
  184. package/dist/icons/bubble-check-icon/index.tsx +24 -0
  185. package/dist/icons/bubble-check-icon/meta.ts +8 -0
  186. package/dist/icons/bubble-crossed-icon/BubbleCrossedIcon.stories.tsx +1228 -0
  187. package/dist/icons/bubble-crossed-icon/index.tsx +24 -0
  188. package/dist/icons/bubble-crossed-icon/meta.ts +8 -0
  189. package/dist/icons/bubble-sparkle-icon/BubbleSparkleIcon.stories.tsx +912 -0
  190. package/dist/icons/bubble-sparkle-icon/index.tsx +26 -0
  191. package/dist/icons/bubble-sparkle-icon/meta.ts +8 -0
  192. package/dist/icons/chevron-double-left-icon/ChevronDoubleLeftIcon.stories.tsx +1021 -0
  193. package/dist/icons/chevron-double-left-icon/index.tsx +34 -0
  194. package/dist/icons/chevron-double-left-icon/meta.ts +8 -0
  195. package/dist/icons/chevron-double-right-icon/ChevronDoubleRightIcon.stories.tsx +1021 -0
  196. package/dist/icons/chevron-double-right-icon/index.tsx +34 -0
  197. package/dist/icons/chevron-double-right-icon/meta.ts +8 -0
  198. package/dist/icons/chevron-down-icon/ChevronDownIcon.stories.tsx +1001 -0
  199. package/dist/icons/chevron-down-icon/index.tsx +27 -0
  200. package/dist/icons/chevron-down-icon/meta.ts +8 -0
  201. package/dist/icons/chevron-left-icon/ChevronLeftIcon.stories.tsx +1029 -0
  202. package/dist/icons/chevron-left-icon/index.tsx +27 -0
  203. package/dist/icons/chevron-left-icon/meta.ts +8 -0
  204. package/dist/icons/chevron-right-icon/ChevronRightIcon.stories.tsx +1021 -0
  205. package/dist/icons/chevron-right-icon/index.tsx +27 -0
  206. package/dist/icons/chevron-right-icon/meta.ts +8 -0
  207. package/dist/icons/chevron-up-icon/ChevronUpIcon.stories.tsx +1036 -0
  208. package/dist/icons/chevron-up-icon/index.tsx +27 -0
  209. package/dist/icons/chevron-up-icon/meta.ts +8 -0
  210. package/dist/icons/command-icon/CommandIcon.stories.tsx +1098 -0
  211. package/dist/icons/command-icon/index.tsx +24 -0
  212. package/dist/icons/command-icon/meta.ts +8 -0
  213. package/dist/icons/cross-circle-icon/CrossCircleIcon.stories.tsx +1061 -0
  214. package/dist/icons/cross-circle-icon/index.tsx +23 -0
  215. package/dist/icons/cross-circle-icon/meta.ts +8 -0
  216. package/dist/icons/cross-icon/CrossIcon.stories.tsx +1027 -0
  217. package/dist/icons/cross-icon/index.tsx +24 -0
  218. package/dist/icons/cross-icon/meta.ts +8 -0
  219. package/dist/icons/edit-big-icon/EditBigIcon.stories.tsx +1092 -0
  220. package/dist/icons/edit-big-icon/index.tsx +22 -0
  221. package/dist/icons/edit-big-icon/meta.ts +8 -0
  222. package/dist/icons/eye-close-icon/EyeCloseIcon.stories.tsx +1090 -0
  223. package/dist/icons/eye-close-icon/index.tsx +26 -0
  224. package/dist/icons/eye-close-icon/meta.ts +8 -0
  225. package/dist/icons/eye-open-icon/EyeOpenIcon.stories.tsx +1098 -0
  226. package/dist/icons/eye-open-icon/index.tsx +24 -0
  227. package/dist/icons/eye-open-icon/meta.ts +8 -0
  228. package/dist/icons/feature-shine-icon/FeatureShineIcon.stories.tsx +1071 -0
  229. package/dist/icons/feature-shine-icon/index.tsx +29 -0
  230. package/dist/icons/feature-shine-icon/meta.ts +8 -0
  231. package/dist/icons/file-chart-icon/FileChartIcon.stories.tsx +1115 -0
  232. package/dist/icons/file-chart-icon/index.tsx +24 -0
  233. package/dist/icons/file-chart-icon/meta.ts +8 -0
  234. package/dist/icons/file-text-icon/FileTextIcon.stories.tsx +668 -0
  235. package/dist/icons/file-text-icon/index.tsx +24 -0
  236. package/dist/icons/file-text-icon/meta.ts +8 -0
  237. package/dist/icons/grip-vertical-icon/GripVerticalIcon.stories.tsx +1239 -0
  238. package/dist/icons/grip-vertical-icon/index.tsx +28 -0
  239. package/dist/icons/grip-vertical-icon/meta.ts +8 -0
  240. package/dist/icons/image-icon/ImageIcon.stories.tsx +1181 -0
  241. package/dist/icons/image-icon/index.tsx +24 -0
  242. package/dist/icons/image-icon/meta.ts +8 -0
  243. package/dist/icons/import-folder-icon/ImportFolderIcon.stories.tsx +1248 -0
  244. package/dist/icons/import-folder-icon/index.tsx +22 -0
  245. package/dist/icons/import-folder-icon/meta.ts +8 -0
  246. package/dist/icons/index.ts +46 -0
  247. package/dist/icons/light-bulb-simple-icon/LightBulbSimpleIcon.stories.tsx +1272 -0
  248. package/dist/icons/light-bulb-simple-icon/index.tsx +24 -0
  249. package/dist/icons/light-bulb-simple-icon/meta.ts +8 -0
  250. package/dist/icons/magic-book-icon/MagicBookIcon.stories.tsx +1245 -0
  251. package/dist/icons/magic-book-icon/index.tsx +32 -0
  252. package/dist/icons/magic-book-icon/meta.ts +8 -0
  253. package/dist/icons/maintenance-icon/MaintenanceIcon.stories.tsx +1251 -0
  254. package/dist/icons/maintenance-icon/index.tsx +23 -0
  255. package/dist/icons/maintenance-icon/meta.ts +8 -0
  256. package/dist/icons/message-icon/MessageIcon.stories.tsx +595 -0
  257. package/dist/icons/message-icon/index.tsx +30 -0
  258. package/dist/icons/message-icon/meta.ts +8 -0
  259. package/dist/icons/move-horizontal-icon/MoveHorizontalIcon.stories.tsx +1245 -0
  260. package/dist/icons/move-horizontal-icon/index.tsx +23 -0
  261. package/dist/icons/move-horizontal-icon/meta.ts +8 -0
  262. package/dist/icons/move-vertical-icon/MoveVerticalIcon.stories.tsx +1196 -0
  263. package/dist/icons/move-vertical-icon/index.tsx +23 -0
  264. package/dist/icons/move-vertical-icon/meta.ts +8 -0
  265. package/dist/icons/page-search-icon/PageSearchIcon.stories.tsx +1167 -0
  266. package/dist/icons/page-search-icon/index.tsx +21 -0
  267. package/dist/icons/page-search-icon/meta.ts +8 -0
  268. package/dist/icons/pencil-icon/PencilIcon.stories.tsx +1131 -0
  269. package/dist/icons/pencil-icon/index.tsx +21 -0
  270. package/dist/icons/pencil-icon/meta.ts +8 -0
  271. package/dist/icons/plus-icon/PlusIcon.stories.tsx +1151 -0
  272. package/dist/icons/plus-icon/index.tsx +24 -0
  273. package/dist/icons/plus-icon/meta.ts +8 -0
  274. package/dist/icons/search-icon/SearchIcon.stories.tsx +1181 -0
  275. package/dist/icons/search-icon/index.tsx +24 -0
  276. package/dist/icons/search-icon/meta.ts +8 -0
  277. package/dist/icons/site-logo-icon/SiteLogoIcon.stories.tsx +1167 -0
  278. package/dist/icons/site-logo-icon/index.tsx +79 -0
  279. package/dist/icons/site-logo-icon/meta.ts +8 -0
  280. package/dist/icons/spinner-gradient-icon/SpinnerGradientIcon.stories.tsx +637 -0
  281. package/dist/icons/spinner-gradient-icon/index.tsx +53 -0
  282. package/dist/icons/spinner-gradient-icon/meta.ts +8 -0
  283. package/dist/icons/spinner-solid-icon/SpinnerSolidIcon.stories.tsx +644 -0
  284. package/dist/icons/spinner-solid-icon/index.tsx +59 -0
  285. package/dist/icons/spinner-solid-icon/meta.ts +8 -0
  286. package/dist/icons/spinner-solid-neutral-icon/SpinnerSolidINeutralcon.stories.tsx +736 -0
  287. package/dist/icons/spinner-solid-neutral-icon/index.tsx +53 -0
  288. package/dist/icons/spinner-solid-neutral-icon/meta.ts +8 -0
  289. package/dist/icons/tick-circle-icon/TickCircleIcon.stories.tsx +1204 -0
  290. package/dist/icons/tick-circle-icon/index.tsx +23 -0
  291. package/dist/icons/tick-circle-icon/meta.ts +8 -0
  292. package/dist/icons/tick-icon/TickIcon.stories.tsx +1340 -0
  293. package/dist/icons/tick-icon/index.tsx +24 -0
  294. package/dist/icons/tick-icon/meta.ts +8 -0
  295. package/dist/icons/trash-icon/TrashIcon.stories.tsx +996 -0
  296. package/dist/icons/trash-icon/index.tsx +24 -0
  297. package/dist/icons/trash-icon/meta.ts +8 -0
  298. package/dist/icons/upload-icon/UploadIcon.stories.tsx +947 -0
  299. package/dist/icons/upload-icon/index.tsx +24 -0
  300. package/dist/icons/upload-icon/meta.ts +8 -0
  301. package/dist/icons/vertical-menu-icon/VerticalMenuIcon.stories.tsx +1045 -0
  302. package/dist/icons/vertical-menu-icon/index.tsx +27 -0
  303. package/dist/icons/vertical-menu-icon/meta.ts +8 -0
  304. package/dist/index.d.ts +6 -0
  305. package/dist/index.js +206 -0
  306. package/dist/lib/utils.ts +6 -0
  307. package/dist/styles/aural-theme.css +1008 -0
  308. package/package.json +142 -0
@@ -0,0 +1,1272 @@
1
+ import React from "react"
2
+ import type { Meta, StoryObj } from "@storybook/react"
3
+
4
+ import { LightBulbSimpleIcon } from "."
5
+
6
+ const meta: Meta<typeof LightBulbSimpleIcon> = {
7
+ title: "Icons/LightBulbSimpleIcon",
8
+ component: LightBulbSimpleIcon,
9
+ parameters: {
10
+ layout: "fullscreen",
11
+ backgrounds: {
12
+ default: "dark",
13
+ values: [
14
+ { name: "dark", value: "#0a0a0a" },
15
+ { name: "darker", value: "#000000" },
16
+ { name: "light", value: "#ffffff" },
17
+ ],
18
+ },
19
+ docs: {
20
+ page: () => (
21
+ <>
22
+ {/* Override default docs styling */}
23
+ <style>
24
+ {`
25
+ .sbdocs-wrapper {
26
+ padding: 0 ;
27
+ max-width: none ;
28
+ background: transparent ;
29
+ }
30
+ .sbdocs-content {
31
+ max-width: none ;
32
+ padding: 0 ;
33
+ margin: 0 ;
34
+ background: transparent ;
35
+ }
36
+ .docs-story {
37
+ background: transparent ;
38
+ }
39
+ .sbdocs {
40
+ background: transparent ;
41
+ }
42
+ body {
43
+ background: #0a0a0a ;
44
+ }
45
+ #storybook-docs {
46
+ background: #0a0a0a ;
47
+ }
48
+ .sbdocs-preview {
49
+ background: transparent ;
50
+ border: none ;
51
+ }
52
+ .sbdocs-h1, .sbdocs-h2, .sbdocs-h3, .sbdocs-h4, .sbdocs-h5, .sbdocs-h6 {
53
+ color: white ;
54
+ }
55
+ .sbdocs-p, .sbdocs-li {
56
+ color: rgba(255, 255, 255, 0.7) ;
57
+ }
58
+ .sbdocs-code {
59
+ background: rgba(255, 255, 255, 0.1) ;
60
+ color: rgba(168, 85, 247, 1) ;
61
+ border: 1px solid rgba(255, 255, 255, 0.1) ;
62
+ }
63
+ .sbdocs-pre {
64
+ background: rgba(0, 0, 0, 0.4) ;
65
+ border: 1px solid rgba(255, 255, 255, 0.1) ;
66
+ }
67
+ .sbdocs-table {
68
+ background: rgba(255, 255, 255, 0.05) ;
69
+ border: 1px solid rgba(255, 255, 255, 0.1) ;
70
+ }
71
+ .sbdocs-table th {
72
+ background: rgba(255, 255, 255, 0.05) ;
73
+ color: white ;
74
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1) ;
75
+ }
76
+ .sbdocs-table td {
77
+ color: rgba(255, 255, 255, 0.7) ;
78
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05) ;
79
+ }
80
+ @keyframes pulse {
81
+ 0%, 100% { opacity: 1; }
82
+ 50% { opacity: 0.5; }
83
+ }
84
+ .animate-pulse {
85
+ animation: pulse 2s ease-in-out infinite;
86
+ }
87
+ @keyframes glow {
88
+ 0%, 100% { filter: drop-shadow(0 0 5px rgba(253, 224, 71, 0.5)); }
89
+ 50% { filter: drop-shadow(0 0 20px rgba(253, 224, 71, 0.8)); }
90
+ }
91
+ .animate-glow {
92
+ animation: glow 2s ease-in-out infinite;
93
+ }
94
+ `}
95
+ </style>
96
+
97
+ <div className="min-h-screen bg-gradient-to-br from-gray-900 via-purple-900/20 to-gray-900">
98
+ {/* Header */}
99
+ <div className="relative overflow-hidden border-b border-white/10 bg-black/20 backdrop-blur-xl">
100
+ <div className="absolute inset-0 bg-gradient-to-r from-yellow-500/10 via-transparent to-orange-500/10" />
101
+ <div className="relative !mx-auto max-w-7xl px-6 py-16">
102
+ <div className="!space-y-6 text-center">
103
+ <div className="!mx-auto flex h-24 w-24 items-center justify-center rounded-2xl border border-yellow-500/30 bg-gradient-to-br from-yellow-500/20 to-orange-500/20">
104
+ <LightBulbSimpleIcon className="h-12 w-12 text-yellow-400" />
105
+ </div>
106
+ <h1 className="!text-fm-primary text-5xl font-bold">
107
+ LightBulbSimpleIcon
108
+ </h1>
109
+ <p className="!mx-auto max-w-3xl text-xl leading-relaxed !text-white/70">
110
+ A clean, simple light bulb icon perfect for representing
111
+ ideas, innovation, creativity, and enlightenment. Features a
112
+ classic bulb design with filament detail and threaded base.
113
+ Built with accessibility in mind using Radix UI's
114
+ AccessibleIcon wrapper.
115
+ </p>
116
+
117
+ {/* Stats */}
118
+ <div className="flex items-center justify-center gap-8 pt-8">
119
+ <div className="text-center">
120
+ <div className="text-3xl font-bold text-yellow-300">
121
+ Ideas
122
+ </div>
123
+ <div className="text-sm text-white/60">
124
+ Innovation & creativity
125
+ </div>
126
+ </div>
127
+ <div className="h-8 w-px bg-white/20" />
128
+ <div className="text-center">
129
+ <div className="text-3xl font-bold text-orange-300">
130
+ Insight
131
+ </div>
132
+ <div className="text-sm text-white/60">
133
+ Knowledge & learning
134
+ </div>
135
+ </div>
136
+ <div className="h-8 w-px bg-white/20" />
137
+ <div className="text-center">
138
+ <div className="text-3xl font-bold text-amber-300">
139
+ Inspiration
140
+ </div>
141
+ <div className="text-sm text-white/60">
142
+ Eureka moments
143
+ </div>
144
+ </div>
145
+ </div>
146
+ </div>
147
+ </div>
148
+ </div>
149
+
150
+ {/* Content */}
151
+ <div className="!mx-auto max-w-7xl !space-y-16 px-6 py-12">
152
+ {/* Quick Usage */}
153
+ <div className="!space-y-8">
154
+ <h2 className="text-center text-3xl font-bold !text-white">
155
+ Quick Start
156
+ </h2>
157
+ <div className="grid grid-cols-1 gap-8 lg:grid-cols-2">
158
+ <div className="!space-y-4">
159
+ <h3 className="text-xl font-semibold !text-yellow-300">
160
+ Basic Usage
161
+ </h3>
162
+ <div className="rounded-lg bg-black/40 p-4">
163
+ <pre className="overflow-x-auto text-sm !text-green-300">
164
+ {`import { LightBulbSimpleIcon } from "@icons/light-bulb-simple-icon"
165
+
166
+ function FeatureCard() {
167
+ return (
168
+ <div className="flex items-center gap-3">
169
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 " />
170
+ <span>Smart Ideas</span>
171
+ </div>
172
+ )
173
+ }`}
174
+ </pre>
175
+ </div>
176
+ </div>
177
+
178
+ <div className="!space-y-4">
179
+ <h3 className="text-xl font-semibold !text-yellow-300">
180
+ Live Preview
181
+ </h3>
182
+ <div className="flex h-32 items-center justify-center rounded-lg border border-white/10 bg-white/5">
183
+ <div className="flex items-center gap-3 rounded-lg border border-yellow-500/20 bg-yellow-500/10 px-4 py-3">
184
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400" />
185
+ <span className="text-white">Smart Ideas</span>
186
+ </div>
187
+ </div>
188
+ </div>
189
+ </div>
190
+ </div>
191
+
192
+ {/* Props Documentation */}
193
+ <div className="!space-y-8">
194
+ <h2 className="text-center text-3xl font-bold !text-white">
195
+ Props & Configuration
196
+ </h2>
197
+
198
+ <div className="overflow-hidden rounded-lg border border-white/10 bg-white/5">
199
+ <div className="bg-white/5 p-4">
200
+ <h3 className="text-xl font-semibold !text-white">Props</h3>
201
+ </div>
202
+ <table className="!my-0 w-full">
203
+ <thead className="bg-white/5">
204
+ <tr className="border-b border-white/10">
205
+ <th className="px-6 py-4 text-left text-sm font-semibold !text-white">
206
+ Prop
207
+ </th>
208
+ <th className="px-6 py-4 text-left text-sm font-semibold !text-white">
209
+ Type
210
+ </th>
211
+ <th className="px-6 py-4 text-left text-sm font-semibold !text-white">
212
+ Default
213
+ </th>
214
+ <th className="px-6 py-4 text-left text-sm font-semibold !text-white">
215
+ Description
216
+ </th>
217
+ </tr>
218
+ </thead>
219
+ <tbody>
220
+ <tr className="border-b border-white/5">
221
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
222
+ width
223
+ </td>
224
+ <td className="px-6 py-4 text-sm !text-white/70">
225
+ number | string
226
+ </td>
227
+ <td className="px-6 py-4 text-sm !text-white/50">24</td>
228
+ <td className="px-6 py-4 text-sm !text-white/70">
229
+ Width of the icon in pixels
230
+ </td>
231
+ </tr>
232
+ <tr className="border-b border-white/5 !bg-black/10">
233
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
234
+ height
235
+ </td>
236
+ <td className="px-6 py-4 text-sm !text-white/70">
237
+ number | string
238
+ </td>
239
+ <td className="px-6 py-4 text-sm !text-white/50">24</td>
240
+ <td className="px-6 py-4 text-sm !text-white/70">
241
+ Height of the icon in pixels
242
+ </td>
243
+ </tr>
244
+ <tr className="border-b border-white/5">
245
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
246
+ stroke
247
+ </td>
248
+ <td className="px-6 py-4 text-sm !text-white/70">
249
+ string
250
+ </td>
251
+ <td className="px-6 py-4 text-sm !text-white/50">
252
+ currentColor
253
+ </td>
254
+ <td className="px-6 py-4 text-sm !text-white/70">
255
+ Stroke color of the bulb outline
256
+ </td>
257
+ </tr>
258
+ <tr className="border-b border-white/5 !bg-black/10">
259
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
260
+ strokeWidth
261
+ </td>
262
+ <td className="px-6 py-4 text-sm !text-white/70">
263
+ string | number
264
+ </td>
265
+ <td className="px-6 py-4 text-sm !text-white/50">
266
+ 1.5
267
+ </td>
268
+ <td className="px-6 py-4 text-sm !text-white/70">
269
+ Stroke width of the outline
270
+ </td>
271
+ </tr>
272
+ <tr className="border-b border-white/5">
273
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
274
+ fill
275
+ </td>
276
+ <td className="px-6 py-4 text-sm !text-white/70">
277
+ string
278
+ </td>
279
+ <td className="px-6 py-4 text-sm !text-white/50">
280
+ none
281
+ </td>
282
+ <td className="px-6 py-4 text-sm !text-white/70">
283
+ Fill color of the icon
284
+ </td>
285
+ </tr>
286
+ <tr className="border-b border-white/5 !bg-black/10">
287
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
288
+ className
289
+ </td>
290
+ <td className="px-6 py-4 text-sm !text-white/70">
291
+ string
292
+ </td>
293
+ <td className="px-6 py-4 text-sm !text-white/50">-</td>
294
+ <td className="px-6 py-4 text-sm !text-white/70">
295
+ CSS classes for styling (use for overrides)
296
+ </td>
297
+ </tr>
298
+ <tr className="!bg-black/10">
299
+ <td className="px-6 py-4 font-mono text-sm !text-yellow-300">
300
+ ...svgProps
301
+ </td>
302
+ <td className="px-6 py-4 text-sm !text-white/70">
303
+ SVGProps
304
+ </td>
305
+ <td className="px-6 py-4 text-sm !text-white/50">-</td>
306
+ <td className="px-6 py-4 text-sm !text-white/70">
307
+ All standard SVG element props
308
+ </td>
309
+ </tr>
310
+ </tbody>
311
+ </table>
312
+ </div>
313
+ </div>
314
+
315
+ {/* Size Variations */}
316
+ <div className="!space-y-8">
317
+ <h2 className="text-center text-3xl font-bold !text-white">
318
+ Size Variations
319
+ </h2>
320
+ <div className="rounded-lg border border-white/10 bg-white/5 p-8">
321
+ <div className="!space-y-6">
322
+ <div className="grid grid-cols-1 gap-8 md:grid-cols-2">
323
+ <div className="!space-y-4">
324
+ <h3 className="text-lg font-semibold !text-yellow-300">
325
+ Standard Sizes
326
+ </h3>
327
+ <div className="flex items-end gap-6 rounded-lg bg-black/20 p-6">
328
+ <div className="text-center">
329
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-3 w-3 text-yellow-400" />
330
+ <span className="text-xs text-white/60">12px</span>
331
+ </div>
332
+ <div className="text-center">
333
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-4 w-4 text-yellow-400" />
334
+ <span className="text-xs text-white/60">16px</span>
335
+ </div>
336
+ <div className="text-center">
337
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-5 w-5 text-yellow-400" />
338
+ <span className="text-xs text-white/60">20px</span>
339
+ </div>
340
+ <div className="text-center">
341
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-6 w-6 text-yellow-400" />
342
+ <span className="text-xs text-white/60">24px</span>
343
+ </div>
344
+ <div className="text-center">
345
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-8 w-8 text-yellow-400" />
346
+ <span className="text-xs text-white/60">32px</span>
347
+ </div>
348
+ <div className="text-center">
349
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-12 w-12 text-yellow-400" />
350
+ <span className="text-xs text-white/60">48px</span>
351
+ </div>
352
+ </div>
353
+ </div>
354
+
355
+ <div className="!space-y-4">
356
+ <h3 className="text-lg font-semibold !text-yellow-300">
357
+ Code Example
358
+ </h3>
359
+ <div className="rounded-lg bg-black/40 p-4">
360
+ <pre className="overflow-x-auto text-sm !text-cyan-300">
361
+ {`// Small (16px)
362
+ <LightBulbSimpleIcon className="h-4 w-4 " />
363
+
364
+ // Medium (24px)
365
+ <LightBulbSimpleIcon className="h-6 w-6 " />
366
+
367
+ // Large (32px)
368
+ <LightBulbSimpleIcon className="h-8 w-8 " />
369
+
370
+ // Custom size for hero sections
371
+ <LightBulbSimpleIcon
372
+ width={40}
373
+ height={40}
374
+ className="text-yellow-400 "
375
+ />`}
376
+ </pre>
377
+ </div>
378
+ </div>
379
+ </div>
380
+ </div>
381
+ </div>
382
+ </div>
383
+
384
+ {/* Color Variations */}
385
+ <div className="!space-y-8">
386
+ <h2 className="text-center text-3xl font-bold !text-white">
387
+ Color Variations
388
+ </h2>
389
+ <div className="grid grid-cols-1 gap-8 lg:grid-cols-2">
390
+ <div className="!space-y-4">
391
+ <h3 className="text-lg font-semibold !text-yellow-300">
392
+ Semantic Colors
393
+ </h3>
394
+ <div className="!space-y-4 rounded-lg border border-white/10 bg-white/5 p-6">
395
+ <div className="flex items-center gap-4">
396
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400" />
397
+ <div>
398
+ <div className="text-sm font-medium text-white">
399
+ Innovation
400
+ </div>
401
+ <div className="text-xs text-white/60">
402
+ text-yellow-400
403
+ </div>
404
+ </div>
405
+ </div>
406
+ <div className="flex items-center gap-4">
407
+ <LightBulbSimpleIcon className="h-6 w-6 text-orange-400" />
408
+ <div>
409
+ <div className="text-sm font-medium text-white">
410
+ Creativity
411
+ </div>
412
+ <div className="text-xs text-white/60">
413
+ text-orange-400
414
+ </div>
415
+ </div>
416
+ </div>
417
+ <div className="flex items-center gap-4">
418
+ <LightBulbSimpleIcon className="h-6 w-6 text-amber-400" />
419
+ <div>
420
+ <div className="text-sm font-medium text-white">
421
+ Inspiration
422
+ </div>
423
+ <div className="text-xs text-white/60">
424
+ text-amber-400
425
+ </div>
426
+ </div>
427
+ </div>
428
+ <div className="flex items-center gap-4">
429
+ <LightBulbSimpleIcon className="h-6 w-6 text-blue-400" />
430
+ <div>
431
+ <div className="text-sm font-medium text-white">
432
+ Knowledge
433
+ </div>
434
+ <div className="text-xs text-white/60">
435
+ text-blue-400
436
+ </div>
437
+ </div>
438
+ </div>
439
+ </div>
440
+ </div>
441
+
442
+ <div className="!space-y-4">
443
+ <h3 className="text-lg font-semibold !text-yellow-300">
444
+ Custom Colors
445
+ </h3>
446
+ <div className="rounded-lg bg-black/40 p-4">
447
+ <pre className="overflow-x-auto text-sm !text-green-300">
448
+ {`// Using Tailwind classes with
449
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 " />
450
+ <LightBulbSimpleIcon className="h-6 w-6 text-orange-500 " />
451
+
452
+ // Using CSS custom properties
453
+ <LightBulbSimpleIcon
454
+ className="h-6 w-6 "
455
+ style={{ color: 'var(--color-innovation)' }}
456
+ />
457
+
458
+ // Direct stroke prop
459
+ <LightBulbSimpleIcon
460
+ width={24}
461
+ height={24}
462
+ stroke="#fbbf24"
463
+ />`}
464
+ </pre>
465
+ </div>
466
+ </div>
467
+ </div>
468
+ </div>
469
+
470
+ {/* Usage Examples */}
471
+ <div className="!space-y-8">
472
+ <h2 className="text-center text-3xl font-bold !text-white">
473
+ Usage Examples
474
+ </h2>
475
+
476
+ <div className="grid grid-cols-1 gap-8 lg:grid-cols-2">
477
+ {/* Feature Card */}
478
+ <div className="!space-y-4">
479
+ <h3 className="text-lg font-semibold !text-yellow-300">
480
+ Feature Card
481
+ </h3>
482
+ <div className="!space-y-4">
483
+ <div className="rounded-lg border border-white/10 bg-white/5 p-6">
484
+ <div className="flex items-start gap-4">
485
+ <div className="flex h-12 w-12 items-center justify-center rounded-lg border border-yellow-500/30 bg-yellow-500/20">
486
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400" />
487
+ </div>
488
+ <div className="flex-1">
489
+ <h4 className="mb-2 text-lg font-semibold !text-white">
490
+ Smart Innovation
491
+ </h4>
492
+ <p className="text-sm !text-white/70">
493
+ Breakthrough ideas and creative solutions powered
494
+ by intelligent insights and data-driven
495
+ innovation.
496
+ </p>
497
+ </div>
498
+ </div>
499
+ </div>
500
+ <div className="rounded-lg bg-black/40 p-4">
501
+ <pre className="overflow-x-auto text-sm !text-green-300">
502
+ {`<div className="border border-white/10 bg-white/5 p-6 rounded-lg">
503
+ <div className="flex items-start gap-4">
504
+ <div className="flex h-12 w-12 items-center justify-center rounded-lg border border-yellow-500/30 bg-yellow-500/20">
505
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 " />
506
+ </div>
507
+ <div className="flex-1">
508
+ <h4 className="mb-2 text-lg font-semibold text-white">Smart Innovation</h4>
509
+ <p className="text-sm text-white/70">
510
+ Breakthrough ideas and creative solutions powered by intelligent insights.
511
+ </p>
512
+ </div>
513
+ </div>
514
+ </div>`}
515
+ </pre>
516
+ </div>
517
+ </div>
518
+ </div>
519
+
520
+ {/* Tips Section */}
521
+ <div className="!space-y-4">
522
+ <h3 className="text-lg font-semibold !text-yellow-300">
523
+ Tips & Insights
524
+ </h3>
525
+ <div className="!space-y-4">
526
+ <div className="!space-y-3">
527
+ {[
528
+ {
529
+ text: "Use keyboard shortcuts to boost productivity",
530
+ type: "tip",
531
+ },
532
+ {
533
+ text: "Try the new AI-powered suggestions feature",
534
+ type: "insight",
535
+ },
536
+ {
537
+ text: "Explore advanced settings for power users",
538
+ type: "idea",
539
+ },
540
+ ].map((item, index) => (
541
+ <div
542
+ key={index}
543
+ className="flex items-center gap-3 rounded-lg border border-white/10 bg-white/5 p-3"
544
+ >
545
+ <LightBulbSimpleIcon
546
+ className={`h-4 w-4 ${
547
+ item.type === "tip"
548
+ ? "text-yellow-400"
549
+ : item.type === "insight"
550
+ ? "text-orange-400"
551
+ : "text-amber-400"
552
+ }`}
553
+ />
554
+ <div className="flex-1">
555
+ <span className="text-sm text-white">
556
+ {item.text}
557
+ </span>
558
+ </div>
559
+ <div
560
+ className={`rounded px-2 py-1 text-xs ${
561
+ item.type === "tip"
562
+ ? "bg-yellow-500/20 text-yellow-300"
563
+ : item.type === "insight"
564
+ ? "bg-orange-500/20 text-orange-300"
565
+ : "bg-amber-500/20 text-amber-300"
566
+ }`}
567
+ >
568
+ {item.type}
569
+ </div>
570
+ </div>
571
+ ))}
572
+ </div>
573
+ <div className="rounded-lg bg-black/40 p-4">
574
+ <pre className="overflow-x-auto text-sm !text-green-300">
575
+ {`// Tip item
576
+ <div className="flex items-center gap-3 border border-white/10 bg-white/5 p-3 rounded-lg">
577
+ <LightBulbSimpleIcon className="h-4 w-4 text-yellow-400 " />
578
+ <div className="flex-1">
579
+ <span className="text-sm text-white">Use keyboard shortcuts to boost productivity</span>
580
+ </div>
581
+ <div className="text-xs px-2 py-1 rounded bg-yellow-500/20 text-yellow-300">
582
+ tip
583
+ </div>
584
+ </div>`}
585
+ </pre>
586
+ </div>
587
+ </div>
588
+ </div>
589
+
590
+ {/* Hero Section */}
591
+ <div className="!space-y-4">
592
+ <h3 className="text-lg font-semibold !text-yellow-300">
593
+ Hero Section
594
+ </h3>
595
+ <div className="!space-y-4">
596
+ <div className="relative overflow-hidden rounded-lg border border-yellow-500/20 bg-gradient-to-br from-yellow-500/10 to-orange-500/10 p-8 text-center">
597
+ <div className="absolute inset-0 bg-gradient-to-r from-transparent via-yellow-500/5 to-transparent" />
598
+ <div className="relative">
599
+ <LightBulbSimpleIcon className="!mx-auto mb-4 h-16 w-16 text-yellow-400" />
600
+ <h2 className="mb-4 text-3xl font-bold !text-white">
601
+ Bright Ideas Await
602
+ </h2>
603
+ <p className="mb-6 text-lg !text-white/70">
604
+ Discover innovative solutions and creative
605
+ inspiration
606
+ </p>
607
+ <button className="rounded-lg bg-yellow-500/20 px-6 py-3 text-yellow-200 transition-colors hover:bg-yellow-500/30">
608
+ Get Started
609
+ </button>
610
+ </div>
611
+ </div>
612
+ <div className="rounded-lg bg-black/40 p-4">
613
+ <pre className="overflow-x-auto text-sm !text-green-300">
614
+ {`// Hero section with light bulb
615
+ <div className="relative overflow-hidden rounded-lg border border-yellow-500/20 bg-gradient-to-br from-yellow-500/10 to-orange-500/10 p-8 text-center">
616
+ <div className="relative">
617
+ <LightBulbSimpleIcon className="mx-auto mb-4 h-16 w-16 text-yellow-400 " />
618
+ <h2 className="mb-4 text-3xl font-bold text-white">Bright Ideas Await</h2>
619
+ <p className="mb-6 text-lg text-white/70">
620
+ Discover innovative solutions and creative inspiration
621
+ </p>
622
+ <button className="rounded-lg bg-yellow-500/20 px-6 py-3 text-yellow-200 hover:bg-yellow-500/30">
623
+ Get Started
624
+ </button>
625
+ </div>
626
+ </div>`}
627
+ </pre>
628
+ </div>
629
+ </div>
630
+ </div>
631
+
632
+ {/* Navigation Menu */}
633
+ <div className="!space-y-4">
634
+ <h3 className="text-lg font-semibold !text-yellow-300">
635
+ Navigation Menu
636
+ </h3>
637
+ <div className="!space-y-4">
638
+ <div className="max-w-xs rounded-lg border border-white/10 bg-white/5 p-3">
639
+ {[
640
+ { name: "Dashboard", icon: "📊", active: false },
641
+ {
642
+ name: "Ideas",
643
+ icon: "LightBulbSimpleIcon",
644
+ active: true,
645
+ },
646
+ { name: "Projects", icon: "📁", active: false },
647
+ { name: "Team", icon: "👥", active: false },
648
+ ].map((item, index) => (
649
+ <div
650
+ key={index}
651
+ className={`flex cursor-pointer items-center gap-3 rounded p-2 transition-colors ${
652
+ item.active
653
+ ? "bg-yellow-500/20 text-yellow-200"
654
+ : "text-white/70 hover:bg-white/10"
655
+ }`}
656
+ >
657
+ {item.icon === "LightBulbSimpleIcon" ? (
658
+ <LightBulbSimpleIcon
659
+ className={`h-4 w-4 ${
660
+ item.active
661
+ ? "text-yellow-400"
662
+ : "text-white/50"
663
+ }`}
664
+ />
665
+ ) : (
666
+ <span className="text-sm">{item.icon}</span>
667
+ )}
668
+ <span className="flex-1 text-sm">{item.name}</span>
669
+ {item.active && (
670
+ <div className="h-2 w-2 rounded-full bg-yellow-400"></div>
671
+ )}
672
+ </div>
673
+ ))}
674
+ </div>
675
+ <div className="rounded-lg bg-black/40 p-4">
676
+ <pre className="overflow-x-auto text-sm !text-green-300">
677
+ {`// Navigation item
678
+ <div className="flex items-center gap-3 p-2 rounded bg-yellow-500/20 text-yellow-200 cursor-pointer">
679
+ <LightBulbSimpleIcon className="h-4 w-4 text-yellow-400 " />
680
+ <span className="flex-1 text-sm">Ideas</span>
681
+ <div className="h-2 w-2 rounded-full bg-yellow-400"></div>
682
+ </div>`}
683
+ </pre>
684
+ </div>
685
+ </div>
686
+ </div>
687
+ </div>
688
+ </div>
689
+
690
+ {/* Interactive States */}
691
+ <div className="!space-y-8">
692
+ <h2 className="text-center text-3xl font-bold !text-white">
693
+ Interactive States & Animations
694
+ </h2>
695
+ <div className="grid grid-cols-1 gap-8 lg:grid-cols-2">
696
+ <div className="!space-y-4">
697
+ <h3 className="text-lg font-semibold !text-yellow-300">
698
+ Hover & Animation Effects
699
+ </h3>
700
+ <div className="!space-y-4 rounded-lg border border-white/10 bg-white/5 p-6">
701
+ <div className="flex items-center gap-4">
702
+ <LightBulbSimpleIcon className="h-6 w-6 text-white/60 transition-colors hover:text-yellow-400" />
703
+ <div>
704
+ <div className="text-sm font-medium text-white">
705
+ Color Change
706
+ </div>
707
+ <div className="text-xs text-white/60">
708
+ hover:text-yellow-400
709
+ </div>
710
+ </div>
711
+ </div>
712
+ <div className="flex items-center gap-4">
713
+ <LightBulbSimpleIcon className="h-6 w-6 text-white transition-transform hover:scale-110" />
714
+ <div>
715
+ <div className="text-sm font-medium text-white">
716
+ Scale Effect
717
+ </div>
718
+ <div className="text-xs text-white/60">
719
+ hover:scale-110
720
+ </div>
721
+ </div>
722
+ </div>
723
+ <div className="flex items-center gap-4">
724
+ <LightBulbSimpleIcon className="h-6 w-6 animate-pulse text-yellow-400" />
725
+ <div>
726
+ <div className="text-sm font-medium text-white">
727
+ Thinking
728
+ </div>
729
+ <div className="text-xs text-white/60">
730
+ animate-pulse
731
+ </div>
732
+ </div>
733
+ </div>
734
+ <div className="flex items-center gap-4">
735
+ <LightBulbSimpleIcon className="animate-glow h-6 w-6 text-yellow-400" />
736
+ <div>
737
+ <div className="text-sm font-medium text-white">
738
+ Eureka Moment
739
+ </div>
740
+ <div className="text-xs text-white/60">
741
+ animate-glow
742
+ </div>
743
+ </div>
744
+ </div>
745
+ </div>
746
+ </div>
747
+
748
+ <div className="!space-y-4">
749
+ <h3 className="text-lg font-semibold !text-yellow-300">
750
+ Animation Examples
751
+ </h3>
752
+ <div className="rounded-lg bg-black/40 p-4">
753
+ <pre className="overflow-x-auto text-sm !text-cyan-300">
754
+ {`// Hover effects
755
+ <LightBulbSimpleIcon className="h-6 w-6 text-white/60 hover:text-yellow-400 transition-colors " />
756
+
757
+ // Scale on hover
758
+ <LightBulbSimpleIcon className="h-6 w-6 text-white hover:scale-110 transition-transform " />
759
+
760
+ // Thinking animation
761
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 animate-pulse " />
762
+
763
+ // Glow effect for "aha!" moments
764
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 animate-glow " />
765
+
766
+ // Custom glow animation
767
+ @keyframes glow {
768
+ 0%, 100% { filter: drop-shadow(0 0 5px rgba(253, 224, 71, 0.5)); }
769
+ 50% { filter: drop-shadow(0 0 20px rgba(253, 224, 71, 0.8)); }
770
+ }
771
+
772
+ .animate-glow {
773
+ animation: glow 2s ease-in-out infinite;
774
+ }`}
775
+ </pre>
776
+ </div>
777
+ </div>
778
+ </div>
779
+ </div>
780
+
781
+ {/* Accessibility */}
782
+ <div className="!space-y-8">
783
+ <h2 className="text-center text-3xl font-bold !text-white">
784
+ Accessibility Features
785
+ </h2>
786
+ <div className="grid grid-cols-1 gap-8 md:grid-cols-2">
787
+ <div className="!space-y-4 rounded-lg border border-white/10 bg-white/5 p-6">
788
+ <h3 className="text-lg font-semibold !text-green-300">
789
+ ✅ Built-in Features
790
+ </h3>
791
+ <ul className="!space-y-2 text-sm !text-white/70">
792
+ <li className="!text-white/70">
793
+ Uses Radix UI AccessibleIcon wrapper
794
+ </li>
795
+ <li className="!text-white/70">
796
+ Provides screen reader label "Light bulb icon"
797
+ </li>
798
+ <li className="!text-white/70">
799
+ Supports keyboard navigation when interactive
800
+ </li>
801
+ <li className="!text-white/70">
802
+ Maintains proper color contrast ratios
803
+ </li>
804
+ <li className="!text-white/70">
805
+ Scales with user's font size preferences
806
+ </li>
807
+ </ul>
808
+ </div>
809
+
810
+ <div className="!space-y-4 rounded-lg border border-white/10 bg-white/5 p-6">
811
+ <h3 className="text-lg font-semibold !text-yellow-300">
812
+ 💡 Best Practices
813
+ </h3>
814
+ <ul className="!space-y-2 text-sm text-white/70">
815
+ <li className="!text-white/70">
816
+ Always pair with descriptive context
817
+ </li>
818
+ <li className="!text-white/70">
819
+ Use consistent colors for idea/innovation themes
820
+ </li>
821
+ <li className="!text-white/70">
822
+ Consider motion sensitivity for glow animations
823
+ </li>
824
+ <li className="!text-white/70">
825
+ Add focus states for interactive elements
826
+ </li>
827
+ <li className="!text-white/70">
828
+ Provide alternative text for complex contexts
829
+ </li>
830
+ </ul>
831
+ </div>
832
+ </div>
833
+
834
+ <div className="rounded-lg border border-white/10 bg-white/5 p-6">
835
+ <h3 className="mb-4 text-lg font-semibold !text-purple-300">
836
+ Innovation & Ideas Accessibility
837
+ </h3>
838
+ <div className="grid grid-cols-1 gap-6 lg:grid-cols-2">
839
+ <div className="rounded-lg bg-black/40 p-4">
840
+ <pre className="overflow-x-auto text-sm !text-cyan-300">
841
+ {`// Ideas button with proper ARIA
842
+ <button
843
+ aria-label="View creative ideas and innovation suggestions"
844
+ className="flex items-center gap-2 p-3 rounded-lg focus:ring-2 focus:ring-yellow-500"
845
+ onClick={handleIdeasView}
846
+ >
847
+ <LightBulbSimpleIcon className="h-5 w-5 text-yellow-400 " />
848
+ <span>Ideas</span>
849
+ </button>
850
+
851
+ // Feature card with semantic structure
852
+ <div
853
+ role="article"
854
+ aria-labelledby="innovation-title"
855
+ className="border border-white/10 bg-white/5 p-6 rounded-lg"
856
+ >
857
+ <div className="flex items-start gap-4">
858
+ <div className="flex h-12 w-12 items-center justify-center rounded-lg bg-yellow-500/20" aria-hidden="true">
859
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400 " />
860
+ </div>
861
+ <div>
862
+ <h4 id="innovation-title" className="text-lg font-semibold text-white">
863
+ Smart Innovation
864
+ </h4>
865
+ <p className="text-sm text-white/70">
866
+ Breakthrough ideas and creative solutions powered by intelligent insights.
867
+ </p>
868
+ </div>
869
+ </div>
870
+ </div>`}
871
+ </pre>
872
+ </div>
873
+ <div className="!space-y-4">
874
+ <p className="text-sm !text-white/70">
875
+ When using LightBulbSimpleIcon for ideas and innovation
876
+ features, provide clear context about what creative
877
+ functionality or insights users can expect.
878
+ </p>
879
+ <div className="rounded-lg border border-yellow-500/20 bg-yellow-500/10 p-4">
880
+ <div className="flex items-center gap-2 text-sm text-yellow-200">
881
+ <LightBulbSimpleIcon className="h-4 w-4" />
882
+ <span>
883
+ Screen readers understand this represents creative
884
+ thinking
885
+ </span>
886
+ </div>
887
+ </div>
888
+ </div>
889
+ </div>
890
+ </div>
891
+ </div>
892
+
893
+ {/* Related Icons */}
894
+ <div className="!space-y-8">
895
+ <h2 className="text-center text-3xl font-bold !text-white">
896
+ Related Icons
897
+ </h2>
898
+ <div className="grid grid-cols-2 gap-6 md:grid-cols-4">
899
+ <div className="!space-y-3 rounded-lg border border-white/10 bg-white/5 p-4 text-center">
900
+ <div className="!mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-blue-500/20">
901
+ <span className="text-2xl">🧠</span>
902
+ </div>
903
+ <div>
904
+ <div className="font-medium text-white">BrainIcon</div>
905
+ <div className="text-xs text-white/60">
906
+ Intelligence & thinking
907
+ </div>
908
+ </div>
909
+ </div>
910
+ <div className="!space-y-3 rounded-lg border border-white/10 bg-white/5 p-4 text-center">
911
+ <div className="!mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-purple-500/20">
912
+ <span className="text-2xl">⚡</span>
913
+ </div>
914
+ <div>
915
+ <div className="font-medium text-white">SparkIcon</div>
916
+ <div className="text-xs text-white/60">
917
+ Inspiration & energy
918
+ </div>
919
+ </div>
920
+ </div>
921
+ <div className="!space-y-3 rounded-lg border border-white/10 bg-white/5 p-4 text-center">
922
+ <div className="!mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-green-500/20">
923
+ <span className="text-2xl">🎯</span>
924
+ </div>
925
+ <div>
926
+ <div className="font-medium text-white">TargetIcon</div>
927
+ <div className="text-xs text-white/60">
928
+ Goals & objectives
929
+ </div>
930
+ </div>
931
+ </div>
932
+ <div className="!space-y-3 rounded-lg border border-white/10 bg-white/5 p-4 text-center">
933
+ <div className="!mx-auto flex h-12 w-12 items-center justify-center rounded-lg bg-orange-500/20">
934
+ <span className="text-2xl">🚀</span>
935
+ </div>
936
+ <div>
937
+ <div className="font-medium text-white">RocketIcon</div>
938
+ <div className="text-xs text-white/60">
939
+ Launch & growth
940
+ </div>
941
+ </div>
942
+ </div>
943
+ </div>
944
+ </div>
945
+ </div>
946
+
947
+ {/* Footer */}
948
+ <div className="border-t border-white/10 bg-black/20 backdrop-blur-xl">
949
+ <div className="!mx-auto max-w-7xl px-6 py-8">
950
+ <div className="!space-y-4 text-center">
951
+ <p className="!text-white/60">
952
+ LightBulbSimpleIcon is part of the Aural UI icon library,
953
+ built for representing creativity, innovation, and bright
954
+ ideas.
955
+ </p>
956
+ <p className="text-sm !text-white/40">
957
+ All icons use Radix UI's AccessibleIcon for screen reader
958
+ compatibility and follow WCAG guidelines for creative
959
+ applications.
960
+ </p>
961
+ </div>
962
+ </div>
963
+ </div>
964
+ </div>
965
+ </>
966
+ ),
967
+ },
968
+ },
969
+ tags: ["autodocs"],
970
+ argTypes: {
971
+ width: {
972
+ control: { type: "range", min: 8, max: 96, step: 2 },
973
+ description: "Width of the icon in pixels",
974
+ },
975
+ height: {
976
+ control: { type: "range", min: 8, max: 96, step: 2 },
977
+ description: "Height of the icon in pixels",
978
+ },
979
+ stroke: {
980
+ control: "color",
981
+ description: "Stroke color of the bulb outline",
982
+ },
983
+ strokeWidth: {
984
+ control: { type: "range", min: 0.5, max: 4, step: 0.5 },
985
+ description: "Stroke width of the outline",
986
+ },
987
+ fill: {
988
+ control: "color",
989
+ description: "Fill color of the icon",
990
+ },
991
+ className: {
992
+ control: "text",
993
+ description: "CSS classes for styling (use for overrides)",
994
+ },
995
+ },
996
+ }
997
+
998
+ export default meta
999
+ type Story = StoryObj<typeof LightBulbSimpleIcon>
1000
+
1001
+ // Story parameters for consistent dark theme
1002
+ const storyParameters = {
1003
+ backgrounds: {
1004
+ default: "dark",
1005
+ values: [
1006
+ { name: "dark", value: "#0a0a0a" },
1007
+ { name: "darker", value: "#000000" },
1008
+ ],
1009
+ },
1010
+ }
1011
+
1012
+ export const Default: Story = {
1013
+ args: {
1014
+ className: "h-6 w-6 text-yellow-400 ",
1015
+ },
1016
+ parameters: storyParameters,
1017
+ render: (args) => (
1018
+ <div className="flex h-32 min-h-dvh items-center justify-center rounded-lg bg-gradient-to-br from-gray-900 to-gray-800">
1019
+ <LightBulbSimpleIcon {...args} />
1020
+ </div>
1021
+ ),
1022
+ }
1023
+
1024
+ export const SizeVariations: Story = {
1025
+ parameters: {
1026
+ ...storyParameters,
1027
+ docs: {
1028
+ description: {
1029
+ story:
1030
+ "LightBulbSimpleIcon in different sizes, from small UI elements to large hero displays.",
1031
+ },
1032
+ },
1033
+ },
1034
+ render: () => (
1035
+ <div className="flex h-64 min-h-dvh items-center justify-center gap-8 rounded-lg bg-gradient-to-br from-gray-900 to-gray-800 p-8">
1036
+ <div className="text-center">
1037
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-3 w-3 text-yellow-400" />
1038
+ <span className="text-xs text-white/60">12px</span>
1039
+ </div>
1040
+ <div className="text-center">
1041
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-4 w-4 text-yellow-400" />
1042
+ <span className="text-xs text-white/60">16px</span>
1043
+ </div>
1044
+ <div className="text-center">
1045
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-5 w-5 text-yellow-400" />
1046
+ <span className="text-xs text-white/60">20px</span>
1047
+ </div>
1048
+ <div className="text-center">
1049
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-6 w-6 text-yellow-400" />
1050
+ <span className="text-xs text-white/60">24px</span>
1051
+ </div>
1052
+ <div className="text-center">
1053
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-8 w-8 text-yellow-400" />
1054
+ <span className="text-xs text-white/60">32px</span>
1055
+ </div>
1056
+ <div className="text-center">
1057
+ <LightBulbSimpleIcon className="!mx-auto mb-2 h-12 w-12 text-yellow-400" />
1058
+ <span className="text-xs text-white/60">48px</span>
1059
+ </div>
1060
+ </div>
1061
+ ),
1062
+ }
1063
+
1064
+ export const ColorVariations: Story = {
1065
+ parameters: {
1066
+ ...storyParameters,
1067
+ docs: {
1068
+ description: {
1069
+ story:
1070
+ "LightBulbSimpleIcon in different colors for various innovation and creativity contexts.",
1071
+ },
1072
+ },
1073
+ },
1074
+ render: () => (
1075
+ <div className="grid min-h-dvh grid-cols-2 items-center justify-center gap-6 rounded-lg bg-gradient-to-br from-gray-900 to-gray-800 p-8 md:grid-cols-4">
1076
+ <div className="text-center">
1077
+ <div className="!mx-auto mb-3 flex h-16 w-16 items-center justify-center rounded-lg border border-yellow-500/30 bg-yellow-500/20">
1078
+ <LightBulbSimpleIcon className="h-8 w-8 text-yellow-400" />
1079
+ </div>
1080
+ <div className="text-sm font-medium text-white">Innovation</div>
1081
+ <div className="text-xs text-yellow-400">text-yellow-400</div>
1082
+ </div>
1083
+ <div className="text-center">
1084
+ <div className="!mx-auto mb-3 flex h-16 w-16 items-center justify-center rounded-lg border border-orange-500/30 bg-orange-500/20">
1085
+ <LightBulbSimpleIcon className="h-8 w-8 text-orange-400" />
1086
+ </div>
1087
+ <div className="text-sm font-medium text-white">Creativity</div>
1088
+ <div className="text-xs text-orange-400">text-orange-400</div>
1089
+ </div>
1090
+ <div className="text-center">
1091
+ <div className="!mx-auto mb-3 flex h-16 w-16 items-center justify-center rounded-lg border border-amber-500/30 bg-amber-500/20">
1092
+ <LightBulbSimpleIcon className="h-8 w-8 text-amber-400" />
1093
+ </div>
1094
+ <div className="text-sm font-medium text-white">Inspiration</div>
1095
+ <div className="text-xs text-amber-400">text-amber-400</div>
1096
+ </div>
1097
+ <div className="text-center">
1098
+ <div className="!mx-auto mb-3 flex h-16 w-16 items-center justify-center rounded-lg border border-blue-500/30 bg-blue-500/20">
1099
+ <LightBulbSimpleIcon className="h-8 w-8 text-blue-400" />
1100
+ </div>
1101
+ <div className="text-sm font-medium text-white">Knowledge</div>
1102
+ <div className="text-xs text-blue-400">text-blue-400</div>
1103
+ </div>
1104
+ </div>
1105
+ ),
1106
+ }
1107
+
1108
+ export const UsageExamples: Story = {
1109
+ parameters: {
1110
+ ...storyParameters,
1111
+ docs: {
1112
+ description: {
1113
+ story:
1114
+ "Real-world usage examples showing LightBulbSimpleIcon in different innovation and creativity contexts.",
1115
+ },
1116
+ },
1117
+ },
1118
+ render: () => (
1119
+ <div className="min-h-dvh !space-y-8 rounded-lg bg-gradient-to-br from-gray-900 to-gray-800 p-8">
1120
+ {/* Feature Card */}
1121
+ <div className="!space-y-2">
1122
+ <h3 className="text-sm font-medium text-white">Feature Card</h3>
1123
+ <div className="rounded-lg border border-white/10 bg-white/5 p-6">
1124
+ <div className="flex items-start gap-4">
1125
+ <div className="flex h-12 w-12 items-center justify-center rounded-lg border border-yellow-500/30 bg-yellow-500/20">
1126
+ <LightBulbSimpleIcon className="h-6 w-6 text-yellow-400" />
1127
+ </div>
1128
+ <div className="flex-1">
1129
+ <h4 className="mb-2 text-lg font-semibold !text-white">
1130
+ Smart Innovation
1131
+ </h4>
1132
+ <p className="text-sm !text-white/70">
1133
+ Breakthrough ideas and creative solutions powered by intelligent
1134
+ insights.
1135
+ </p>
1136
+ </div>
1137
+ </div>
1138
+ </div>
1139
+ </div>
1140
+
1141
+ {/* Tips Section */}
1142
+ <div className="!space-y-2">
1143
+ <h3 className="text-sm font-medium text-white">Tips & Insights</h3>
1144
+ <div className="!space-y-3">
1145
+ {[
1146
+ {
1147
+ text: "Use keyboard shortcuts to boost productivity",
1148
+ type: "tip",
1149
+ },
1150
+ {
1151
+ text: "Try the new AI-powered suggestions feature",
1152
+ type: "insight",
1153
+ },
1154
+ { text: "Explore advanced settings for power users", type: "idea" },
1155
+ ].map((item, index) => (
1156
+ <div
1157
+ key={index}
1158
+ className="flex items-center gap-3 rounded-lg border border-white/10 bg-white/5 p-3"
1159
+ >
1160
+ <LightBulbSimpleIcon
1161
+ className={`h-4 w-4 ${
1162
+ item.type === "tip"
1163
+ ? "text-yellow-400"
1164
+ : item.type === "insight"
1165
+ ? "text-orange-400"
1166
+ : "text-amber-400"
1167
+ }`}
1168
+ />
1169
+ <div className="flex-1">
1170
+ <span className="text-sm text-white">{item.text}</span>
1171
+ </div>
1172
+ <div
1173
+ className={`rounded px-2 py-1 text-xs ${
1174
+ item.type === "tip"
1175
+ ? "bg-yellow-500/20 text-yellow-300"
1176
+ : item.type === "insight"
1177
+ ? "bg-orange-500/20 text-orange-300"
1178
+ : "bg-amber-500/20 text-amber-300"
1179
+ }`}
1180
+ >
1181
+ {item.type}
1182
+ </div>
1183
+ </div>
1184
+ ))}
1185
+ </div>
1186
+ </div>
1187
+
1188
+ {/* Hero Section Preview */}
1189
+ <div className="!space-y-2">
1190
+ <h3 className="text-sm font-medium text-white">Hero Section</h3>
1191
+ <div className="relative overflow-hidden rounded-lg border border-yellow-500/20 bg-gradient-to-br from-yellow-500/10 to-orange-500/10 p-8 text-center">
1192
+ <div className="relative">
1193
+ <LightBulbSimpleIcon className="!mx-auto mb-4 h-16 w-16 text-yellow-400" />
1194
+ <h2 className="mb-4 text-3xl font-bold text-white">
1195
+ Bright Ideas Await
1196
+ </h2>
1197
+ <p className="mb-6 text-lg text-white/70">
1198
+ Discover innovative solutions and creative inspiration
1199
+ </p>
1200
+ <button className="rounded-lg bg-yellow-500/20 px-6 py-3 text-yellow-200 transition-colors hover:bg-yellow-500/30">
1201
+ Get Started
1202
+ </button>
1203
+ </div>
1204
+ </div>
1205
+ </div>
1206
+ </div>
1207
+ ),
1208
+ }
1209
+
1210
+ export const InteractiveStates: Story = {
1211
+ parameters: {
1212
+ ...storyParameters,
1213
+ docs: {
1214
+ description: {
1215
+ story:
1216
+ "Interactive states showing hover effects, animations, and creative visual effects for the light bulb icon.",
1217
+ },
1218
+ },
1219
+ },
1220
+ render: () => (
1221
+ <div className="min-h-dvh !space-y-8 rounded-lg bg-gradient-to-br from-gray-900 to-gray-800 p-8">
1222
+ <div className="!space-y-4">
1223
+ <h3 className="text-sm font-medium text-white/70">
1224
+ Hover & Animation Effects
1225
+ </h3>
1226
+ <div className="flex gap-8">
1227
+ <div className="flex flex-col items-center gap-2">
1228
+ <LightBulbSimpleIcon className="h-8 w-8 text-white/60 transition-colors hover:text-yellow-400" />
1229
+ <span className="text-xs text-white/60">Color Change</span>
1230
+ </div>
1231
+ <div className="flex flex-col items-center gap-2">
1232
+ <LightBulbSimpleIcon className="h-8 w-8 text-white transition-transform hover:scale-110" />
1233
+ <span className="text-xs text-white/60">Scale Up</span>
1234
+ </div>
1235
+ <div className="flex flex-col items-center gap-2">
1236
+ <LightBulbSimpleIcon className="h-8 w-8 animate-pulse text-yellow-400" />
1237
+ <span className="text-xs text-white/60">Thinking</span>
1238
+ </div>
1239
+ <div className="flex flex-col items-center gap-2">
1240
+ <LightBulbSimpleIcon className="animate-glow h-8 w-8 text-yellow-400" />
1241
+ <span className="text-xs text-white/60">Eureka!</span>
1242
+ </div>
1243
+ </div>
1244
+ </div>
1245
+ </div>
1246
+ ),
1247
+ }
1248
+
1249
+ export const Playground: Story = {
1250
+ parameters: {
1251
+ ...storyParameters,
1252
+ docs: {
1253
+ description: {
1254
+ story:
1255
+ "Interactive playground to experiment with different LightBulbSimpleIcon configurations.",
1256
+ },
1257
+ },
1258
+ },
1259
+ args: {
1260
+ width: 32,
1261
+ height: 32,
1262
+ className: "text-yellow-400 ",
1263
+ strokeWidth: 1.5,
1264
+ },
1265
+ render: (args) => (
1266
+ <div className="flex h-64 min-h-dvh items-center justify-center rounded-lg bg-gradient-to-br from-gray-900 to-gray-800">
1267
+ <div className="rounded-lg border border-white/10 bg-white/5 p-8">
1268
+ <LightBulbSimpleIcon {...args} />
1269
+ </div>
1270
+ </div>
1271
+ ),
1272
+ }