node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import * as React from 'react';
import { FlexComponent, FlexProps } from '../../primitives/Flex';
import { ButtonProps } from '../Button';
type IconButtonProps<C extends React.ElementType = 'button'> = FlexProps<C> & Pick<ButtonProps, 'size' | 'variant'> & {
children: React.ReactNode;
disabled?: boolean;
/**
* This isn't visually rendered, but required for accessibility.
*/
label: string;
onClick?: React.MouseEventHandler<HTMLButtonElement>;
/**
* @default true
*/
withTooltip?: boolean;
};
declare const IconButton: <C extends React.ElementType<any, keyof React.JSX.IntrinsicElements> = "button">(props: React.PropsWithoutRef<IconButtonProps<C>> & React.RefAttributes<unknown>) => React.ReactNode;
type IconButtonComponent<C extends React.ElementType = 'button'> = (props: IconButtonProps<C>) => React.ReactNode;
declare const IconButtonGroup: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<Omit<Omit<FlexProps<"div">, "ref"> & React.RefAttributes<unknown>, "ref"> & {
ref?: ((instance: unknown) => void) | React.RefObject<unknown> | null | undefined;
}, never>> & string & Omit<FlexComponent, keyof React.Component<any, {}, any>>;
export { IconButton, IconButtonGroup };
export type { IconButtonProps, IconButtonComponent };
//# sourceMappingURL=IconButton.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../../src/components/IconButton/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAI/B,OAAO,EAAQ,aAAa,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AAIvE,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAIxC,KAAK,eAAe,CAAC,CAAC,SAAS,KAAK,CAAC,WAAW,GAAG,QAAQ,IAAI,SAAS,CAAC,CAAC,CAAC,GACzE,IAAI,CAAC,WAAW,EAAE,MAAM,GAAG,SAAS,CAAC,GAAG;IACtC,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,iBAAiB,CAAC,CAAC;IACrD;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB,CAAC;AAEJ,QAAA,MAAM,UAAU,sLA0Cf,CAAC;AAEF,KAAK,mBAAmB,CAAC,CAAC,SAAS,KAAK,CAAC,WAAW,GAAG,QAAQ,IAAI,CAAC,KAAK,EAAE,eAAe,CAAC,CAAC,CAAC,KAAK,KAAK,CAAC,SAAS,CAAC;AAsElH,QAAA,MAAM,eAAe;;8EAgBpB,CAAC;AAEF,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,CAAC;AACvC,YAAY,EAAE,eAAe,EAAE,mBAAmB,EAAE,CAAC"}

View File

@@ -0,0 +1,2 @@
export * from './IconButton';
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/IconButton/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"}