myshell-react-lib 0.1.1 → 0.1.3

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 (40) hide show
  1. package/dist/index.cjs +4086 -4
  2. package/dist/index.cjs.map +1 -1
  3. package/dist/index.d.cts +126 -17
  4. package/dist/index.d.ts +126 -17
  5. package/dist/index.js +4028 -5
  6. package/dist/index.js.map +1 -1
  7. package/package.json +1 -1
  8. package/src/components/accordion.tsx +1 -1
  9. package/src/components/audio-player.tsx +4 -2
  10. package/src/components/{icons/solid/audio-playing.tsx → audio-playing.tsx} +4 -2
  11. package/src/components/badge.tsx +3 -1
  12. package/src/components/icon.tsx +7 -0
  13. package/src/components/icons/index.tsx +13 -0
  14. package/src/components/icons/outline/ArrowLeftIcon.tsx +28 -0
  15. package/src/components/icons/outline/ArrowUpTrayIcon.tsx +28 -0
  16. package/src/components/icons/outline/CheckCircleIcon.tsx +27 -0
  17. package/src/components/icons/outline/{config.tsx → ConfigIcon.tsx} +2 -2
  18. package/src/components/icons/outline/DownIcon.tsx +1 -1
  19. package/src/components/icons/outline/PencilSquareIcon.tsx +28 -0
  20. package/src/components/icons/outline/WindowIcon.tsx +26 -0
  21. package/src/components/icons/solid/CaretDownIcon.tsx +22 -0
  22. package/src/components/icons/solid/CodeIcon.tsx +25 -0
  23. package/src/components/icons/solid/DragIcon.tsx +24 -0
  24. package/src/components/icons/solid/{phone.tsx → PhoneIcon.tsx} +9 -3
  25. package/src/components/icons/solid/RectangleGroupIcon.tsx +26 -0
  26. package/src/components/marquee/marquee.tsx +1 -1
  27. package/src/components/tabs.tsx +1 -1
  28. package/src/index.ts +4 -0
  29. package/src/components/icons/outline/arrow-left.tsx +0 -16
  30. package/src/components/icons/outline/arrow-up-tray.tsx +0 -16
  31. package/src/components/icons/outline/check-circle.tsx +0 -17
  32. package/src/components/icons/outline/pencil-square.tsx +0 -16
  33. package/src/components/icons/outline/trash.tsx +0 -17
  34. package/src/components/icons/outline/window.tsx +0 -16
  35. package/src/components/icons/outline/x-circle.tsx +0 -17
  36. package/src/components/icons/outline/x-mark.tsx +0 -16
  37. package/src/components/icons/solid/caret-down.tsx +0 -14
  38. package/src/components/icons/solid/code.tsx +0 -18
  39. package/src/components/icons/solid/drag.tsx +0 -14
  40. package/src/components/icons/solid/rectangle-group.tsx +0 -14
@@ -1,14 +0,0 @@
1
- import * as React from 'react';
2
- import { Icon, IconProps } from '../../icon';
3
-
4
- const RectangleGroup = React.forwardRef<SVGSVGElement, IconProps>((props, ref) => {
5
- return (
6
- <Icon {...props}>
7
- <svg ref={ref} className="w-full h-full" viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
8
- <path fillRule="evenodd" clipRule="evenodd" d="M1.5 7.125C1.5 6.08947 2.33947 5.25 3.375 5.25H9.375C10.4105 5.25 11.25 6.08947 11.25 7.125V10.875C11.25 11.9105 10.4105 12.75 9.375 12.75H3.375C2.33947 12.75 1.5 11.9105 1.5 10.875V7.125ZM13.5 8.625C13.5 7.58947 14.3395 6.75 15.375 6.75H20.625C21.6605 6.75 22.5 7.58947 22.5 8.625V16.875C22.5 17.9105 21.6605 18.75 20.625 18.75H15.375C14.3395 18.75 13.5 17.9105 13.5 16.875V8.625ZM3 16.125C3 15.0895 3.83947 14.25 4.875 14.25H10.125C11.1605 14.25 12 15.0895 12 16.125V18.375C12 19.4105 11.1605 20.25 10.125 20.25H4.875C3.83947 20.25 3 19.4105 3 18.375V16.125Z" />
9
- </svg>
10
- </Icon>
11
- )
12
- });
13
-
14
- export { RectangleGroup };