singularity-components 0.1.74 → 0.1.75

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.
package/dist/main.d.cts CHANGED
@@ -4,7 +4,7 @@ import React__default, { PropsWithChildren } from 'react';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
- import { DynamicIcon } from 'lucide-react/dynamic';
7
+ import { icons } from 'lucide-react';
8
8
 
9
9
  declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
10
10
  declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
@@ -24,9 +24,9 @@ declare const buttonVariants: (props?: ({
24
24
  } & class_variance_authority_types.ClassProp) | undefined) => string;
25
25
  type Props$1 = React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
26
26
  asChild?: boolean;
27
- iconStart?: React$1.ComponentProps<typeof DynamicIcon>["name"];
27
+ iconStart?: keyof typeof icons;
28
28
  iconStartAnimate?: boolean;
29
- iconEnd?: React$1.ComponentProps<typeof DynamicIcon>["name"];
29
+ iconEnd?: keyof typeof icons;
30
30
  iconEndAnimate?: boolean;
31
31
  };
32
32
  declare function Button({ className, variant, size, asChild, iconStart, iconStartAnimate, iconEnd, iconEndAnimate, children, ...props }: Props$1): react_jsx_runtime.JSX.Element;
package/dist/main.d.ts CHANGED
@@ -4,7 +4,7 @@ import React__default, { PropsWithChildren } from 'react';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import * as class_variance_authority_types from 'class-variance-authority/types';
6
6
  import { VariantProps } from 'class-variance-authority';
7
- import { DynamicIcon } from 'lucide-react/dynamic';
7
+ import { icons } from 'lucide-react';
8
8
 
9
9
  declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
10
10
  declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
@@ -24,9 +24,9 @@ declare const buttonVariants: (props?: ({
24
24
  } & class_variance_authority_types.ClassProp) | undefined) => string;
25
25
  type Props$1 = React$1.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
26
26
  asChild?: boolean;
27
- iconStart?: React$1.ComponentProps<typeof DynamicIcon>["name"];
27
+ iconStart?: keyof typeof icons;
28
28
  iconStartAnimate?: boolean;
29
- iconEnd?: React$1.ComponentProps<typeof DynamicIcon>["name"];
29
+ iconEnd?: keyof typeof icons;
30
30
  iconEndAnimate?: boolean;
31
31
  };
32
32
  declare function Button({ className, variant, size, asChild, iconStart, iconStartAnimate, iconEnd, iconEndAnimate, children, ...props }: Props$1): react_jsx_runtime.JSX.Element;