@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
30 lines (29 loc) • 1.91 kB
TypeScript
import { IconTypes } from '../../types/styles/icon';
type ImgTypes = {
$moveRound: string;
$transitionDuration: string;
$height?: string;
$width?: string;
$customIconStyles?: IconTypes;
};
type SvgTypes = {
$srcImage: string;
$width?: string;
$height?: string;
$moveRound?: string;
$transitionDuration?: string;
twistIconAnimation?: boolean;
twistAnimationTransformValue?: string | null | undefined;
$color?: string;
$customIconStyles?: IconTypes;
};
export declare const IconSVGStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").SVGProps<SVGSVGElement>, SvgTypes>> & string;
export declare const IconStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, ImgTypes>> & string;
export declare const IconComplexStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, SvgTypes>> & string;
export declare const IconButtonStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {
$width?: string;
$height?: string;
$customIconStyles?: IconTypes;
}>> & string;
export declare const IconTitleStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
export {};