) => ReactElement | null;
29 | export interface BaseButtonProps extends LayoutProps, SpaceProps {
30 | as?: "a" | "button" | typeof Link;
31 | external?: boolean;
32 | isLoading?: boolean;
33 | scale?: Scale;
34 | variant?: Variant;
35 | disabled?: boolean;
36 | startIcon?: ReactNode;
37 | endIcon?: ReactNode;
38 | }
39 | export declare type ButtonProps = PolymorphicComponentProps
;
40 |
--------------------------------------------------------------------------------
/dist/components/ButtonMenu/ButtonMenu.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { ButtonMenuProps } from "./types";
3 | declare const ButtonMenu: React.FC;
4 | export default ButtonMenu;
5 |
--------------------------------------------------------------------------------
/dist/components/ButtonMenu/ButtonMenuItem.d.ts:
--------------------------------------------------------------------------------
1 | import { PolymorphicComponent } from "../Button/types";
2 | import { ButtonMenuItemProps } from "./types";
3 | declare const ButtonMenuItem: PolymorphicComponent;
4 | export default ButtonMenuItem;
5 |
--------------------------------------------------------------------------------
/dist/components/ButtonMenu/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as ButtonMenu } from "./ButtonMenu";
2 | export { default as ButtonMenuItem } from "./ButtonMenuItem";
3 | export type { ButtonMenuProps, ButtonMenuItemProps } from "./types";
4 |
--------------------------------------------------------------------------------
/dist/components/ButtonMenu/types.d.ts:
--------------------------------------------------------------------------------
1 | import { ReactElement } from "react";
2 | import { SpaceProps } from "styled-system";
3 | import { BaseButtonProps, Scale, variants } from "../Button/types";
4 | export interface ButtonMenuItemProps extends BaseButtonProps {
5 | isActive?: boolean;
6 | }
7 | export interface ButtonMenuProps extends SpaceProps {
8 | variant?: typeof variants.PRIMARY | typeof variants.SUBTLE;
9 | activeIndex?: number;
10 | onItemClick?: (index: number) => void;
11 | scale?: Scale;
12 | disabled?: boolean;
13 | children: ReactElement[];
14 | fullWidth?: boolean;
15 | }
16 |
--------------------------------------------------------------------------------
/dist/components/CakePrice/CakePrice.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Colors } from "../../theme";
3 | export interface Props {
4 | color?: keyof Colors;
5 | cakePriceUsd?: number;
6 | }
7 | declare const _default: React.NamedExoticComponent;
8 | export default _default;
9 |
--------------------------------------------------------------------------------
/dist/components/CakePrice/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as CakePrice } from "./CakePrice";
2 | export type { Props as CakePriceProps } from "./CakePrice";
3 |
--------------------------------------------------------------------------------
/dist/components/Card/Card.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { CardProps } from "./types";
3 | declare const Card: React.FC;
4 | export default Card;
5 |
--------------------------------------------------------------------------------
/dist/components/Card/CardBody.d.ts:
--------------------------------------------------------------------------------
1 | import { SpaceProps } from "styled-system";
2 | export declare type CardBodyProps = SpaceProps;
3 | declare const CardBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, CardBodyProps, never>;
4 | export default CardBody;
5 |
--------------------------------------------------------------------------------
/dist/components/Card/CardFooter.d.ts:
--------------------------------------------------------------------------------
1 | import { SpaceProps } from "styled-system";
2 | export declare type CardFooterProps = SpaceProps;
3 | declare const CardFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, CardFooterProps, never>;
4 | export default CardFooter;
5 |
--------------------------------------------------------------------------------
/dist/components/Card/CardHeader.d.ts:
--------------------------------------------------------------------------------
1 | import { SpaceProps } from "styled-system";
2 | import { CardTheme } from "./types";
3 | export interface CardHeaderProps extends SpaceProps {
4 | variant?: keyof CardTheme["cardHeaderBackground"];
5 | }
6 | declare const CardHeader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, CardHeaderProps, never>;
7 | export default CardHeader;
8 |
--------------------------------------------------------------------------------
/dist/components/Card/CardRibbon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { CardRibbonProps } from "./types";
3 | declare const CardRibbon: React.FC;
4 | export default CardRibbon;
5 |
--------------------------------------------------------------------------------
/dist/components/Card/StyledCard.d.ts:
--------------------------------------------------------------------------------
1 | import { DefaultTheme } from "styled-components";
2 | import { CardProps } from "./types";
3 | interface StyledCardProps extends CardProps {
4 | theme: DefaultTheme;
5 | }
6 | export declare const StyledCard: import("styled-components").StyledComponent<"div", DefaultTheme, StyledCardProps, never>;
7 | export declare const StyledCardInner: import("styled-components").StyledComponent<"div", DefaultTheme, import("../Box").BoxProps & {
8 | background?: string | undefined;
9 | hasCustomBorder: boolean;
10 | }, never>;
11 | export {};
12 |
--------------------------------------------------------------------------------
/dist/components/Card/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Card } from "./Card";
2 | export { default as CardBody } from "./CardBody";
3 | export { default as CardHeader } from "./CardHeader";
4 | export { default as CardFooter } from "./CardFooter";
5 | export { default as CardRibbon } from "./CardRibbon";
6 | export type { CardProps, CardRibbonProps } from "./types";
7 |
--------------------------------------------------------------------------------
/dist/components/Card/theme.d.ts:
--------------------------------------------------------------------------------
1 | import { CardTheme } from "./types";
2 | export declare const light: CardTheme;
3 | export declare const dark: CardTheme;
4 |
--------------------------------------------------------------------------------
/dist/components/Card/types.d.ts:
--------------------------------------------------------------------------------
1 | import { HTMLAttributes } from "react";
2 | import { SpaceProps } from "styled-system";
3 | import { Colors } from "../../theme/types";
4 | export interface CardRibbonProps extends SpaceProps, HTMLAttributes {
5 | variantColor?: keyof Colors;
6 | text: string;
7 | ribbonPosition?: "right" | "left";
8 | }
9 | export declare type CardTheme = {
10 | background: string;
11 | boxShadow: string;
12 | boxShadowActive: string;
13 | boxShadowSuccess: string;
14 | boxShadowWarning: string;
15 | cardHeaderBackground: {
16 | default: string;
17 | blue: string;
18 | bubblegum: string;
19 | violet: string;
20 | };
21 | dropShadow: string;
22 | };
23 | export interface CardProps extends SpaceProps, HTMLAttributes {
24 | isActive?: boolean;
25 | isSuccess?: boolean;
26 | isWarning?: boolean;
27 | isDisabled?: boolean;
28 | ribbon?: React.ReactNode;
29 | borderBackground?: string;
30 | background?: string;
31 | }
32 |
--------------------------------------------------------------------------------
/dist/components/Checkbox/Checkbox.d.ts:
--------------------------------------------------------------------------------
1 | import { CheckboxProps } from "./types";
2 | declare const Checkbox: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {
3 | type: "checkbox";
4 | } & CheckboxProps, "type">;
5 | export default Checkbox;
6 |
--------------------------------------------------------------------------------
/dist/components/Checkbox/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Checkbox } from "./Checkbox";
2 | export type { CheckboxProps, Scales as CheckboxScales } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Checkbox/types.d.ts:
--------------------------------------------------------------------------------
1 | export declare const scales: {
2 | readonly SM: "sm";
3 | readonly MD: "md";
4 | };
5 | export declare type Scales = typeof scales[keyof typeof scales];
6 | export interface CheckboxProps {
7 | scale?: Scales;
8 | }
9 |
--------------------------------------------------------------------------------
/dist/components/Dropdown/Dropdown.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { DropdownProps } from "./types";
3 | declare const Dropdown: React.FC;
4 | export default Dropdown;
5 |
--------------------------------------------------------------------------------
/dist/components/Dropdown/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Dropdown } from "./Dropdown";
2 | export type { DropdownProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Dropdown/types.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | export declare type Position = "top" | "top-right" | "bottom";
3 | export interface PositionProps {
4 | position?: Position;
5 | }
6 | export interface DropdownProps extends PositionProps {
7 | target: React.ReactElement;
8 | }
9 |
--------------------------------------------------------------------------------
/dist/components/DropdownMenu/DropdownMenu.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { DropdownMenuProps } from "./types";
3 | declare const DropdownMenu: React.FC;
4 | export default DropdownMenu;
5 |
--------------------------------------------------------------------------------
/dist/components/DropdownMenu/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as DropdownMenu } from "./DropdownMenu";
2 | export type { DropdownMenuProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/DropdownMenu/mock.d.ts:
--------------------------------------------------------------------------------
1 | import { DropdownMenuItems } from "./types";
2 | declare const ItemsMock: DropdownMenuItems[];
3 | export default ItemsMock;
4 |
--------------------------------------------------------------------------------
/dist/components/DropdownMenu/styles.d.ts:
--------------------------------------------------------------------------------
1 | import { DefaultTheme } from "styled-components";
2 | import { Colors } from "../../theme";
3 | import { StyledDropdownMenuItemProps } from "./types";
4 | export declare const DropdownMenuItem: import("styled-components").StyledComponent<"button", DefaultTheme, StyledDropdownMenuItemProps & {
5 | $isActive: boolean;
6 | }, never>;
7 | export declare const StyledDropdownMenuItemContainer: import("styled-components").StyledComponent<"div", DefaultTheme, {}, never>;
8 | export declare const DropdownMenuDivider: import("styled-components").StyledComponent<"hr", DefaultTheme, {}, never>;
9 | export declare const StyledOverlay: import("styled-components").StyledComponent<"div", DefaultTheme, {}, never>;
10 | export declare const StyledDropdownMenu: import("styled-components").StyledComponent<"div", DefaultTheme, {
11 | $isOpen: boolean;
12 | $isBottomNav: boolean;
13 | }, never>;
14 | export declare const LinkStatus: import("styled-components").StyledComponent<"div", DefaultTheme, import("../Text").TextProps & {
15 | color: keyof Colors;
16 | }, never>;
17 |
--------------------------------------------------------------------------------
/dist/components/DropdownMenu/types.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Colors } from "../../theme";
3 | import { BoxProps } from "../Box";
4 | export interface DropdownMenuProps extends BoxProps {
5 | items?: DropdownMenuItems[];
6 | activeItem?: string;
7 | isBottomNav?: boolean;
8 | openMenuTimeout?: number;
9 | showItemsOnMobile?: boolean;
10 | }
11 | export interface StyledDropdownMenuItemProps extends React.ComponentPropsWithoutRef<"button"> {
12 | disabled?: boolean;
13 | isActive?: boolean;
14 | }
15 | export declare enum DropdownMenuItemType {
16 | INTERNAL_LINK = 0,
17 | EXTERNAL_LINK = 1,
18 | BUTTON = 2,
19 | DIVIDER = 3
20 | }
21 | export interface LinkStatus {
22 | text: string;
23 | color: keyof Colors;
24 | }
25 | export interface DropdownMenuItems {
26 | label?: string | React.ReactNode;
27 | href?: string;
28 | onClick?: () => void;
29 | type?: DropdownMenuItemType;
30 | status?: LinkStatus;
31 | disabled?: boolean;
32 | }
33 |
--------------------------------------------------------------------------------
/dist/components/FallingBunnies/FallingBunnies.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { FallingBunniesProps } from "./types";
3 | declare const FallingBunnies: React.FC;
4 | export default FallingBunnies;
5 |
--------------------------------------------------------------------------------
/dist/components/FallingBunnies/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as FallingBunnies } from "./FallingBunnies";
2 | export type { FallingBunniesProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/FallingBunnies/types.d.ts:
--------------------------------------------------------------------------------
1 | export interface BunnyProps {
2 | position: number;
3 | iterations: number;
4 | duration: number;
5 | }
6 | export interface FallingBunniesProps {
7 | size?: number;
8 | count?: number;
9 | iterations?: number;
10 | duration?: number;
11 | }
12 |
--------------------------------------------------------------------------------
/dist/components/Footer/Components/SocialLinks.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { FlexProps } from "../../Box";
3 | declare const _default: React.NamedExoticComponent;
4 | export default _default;
5 |
--------------------------------------------------------------------------------
/dist/components/Footer/Footer.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { FooterProps } from "./types";
3 | declare const MenuItem: React.FC;
4 | export default MenuItem;
5 |
--------------------------------------------------------------------------------
/dist/components/Footer/config.d.ts:
--------------------------------------------------------------------------------
1 | import { Language } from "../LangSelector/types";
2 | import { FooterLinkType } from "./types";
3 | export declare const footerLinks: FooterLinkType[];
4 | export declare const socials: {
5 | label: string;
6 | icon: string;
7 | href: string;
8 | }[];
9 | export declare const langs: Language[];
10 |
--------------------------------------------------------------------------------
/dist/components/Footer/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default } from "./Footer";
2 |
--------------------------------------------------------------------------------
/dist/components/Footer/styles.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | export declare const StyledFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & import("../Box").FlexProps, never>;
3 | export declare const StyledList: import("styled-components").StyledComponent<"ul", import("styled-components").DefaultTheme, {}, never>;
4 | export declare const StyledListItem: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, {}, never>;
5 | export declare const StyledIconMobileContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps, never>;
6 | export declare const StyledToolsContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & import("../Box").FlexProps, never>;
7 | export declare const StyledSocialLinks: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, {}, never>;
8 |
--------------------------------------------------------------------------------
/dist/components/Footer/types.d.ts:
--------------------------------------------------------------------------------
1 | import { Language } from "../LangSelector/types";
2 | import { FlexProps } from "../Box";
3 | export declare type FooterLinkType = {
4 | label: string;
5 | items: {
6 | label: string;
7 | href?: string;
8 | isHighlighted?: boolean;
9 | }[];
10 | };
11 | export declare type FooterProps = {
12 | items: FooterLinkType[];
13 | buyCakeLabel: string;
14 | isDark: boolean;
15 | toggleTheme: (isDark: boolean) => void;
16 | cakePriceUsd?: number;
17 | currentLang: string;
18 | langs: Language[];
19 | setLang: (lang: Language) => void;
20 | } & FlexProps;
21 |
--------------------------------------------------------------------------------
/dist/components/Heading/Heading.d.ts:
--------------------------------------------------------------------------------
1 | import { HeadingProps } from "./types";
2 | declare const Heading: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Text").TextProps & {
3 | bold: boolean;
4 | } & HeadingProps, "bold">;
5 | export default Heading;
6 |
--------------------------------------------------------------------------------
/dist/components/Heading/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Heading } from "./Heading";
2 | export type { HeadingProps, Scales as HeadingScales, Tags as HeadingTags } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Heading/types.d.ts:
--------------------------------------------------------------------------------
1 | export declare const tags: {
2 | H1: string;
3 | H2: string;
4 | H3: string;
5 | H4: string;
6 | H5: string;
7 | H6: string;
8 | };
9 | export declare const scales: {
10 | readonly MD: "md";
11 | readonly LG: "lg";
12 | readonly XL: "xl";
13 | readonly XXL: "xxl";
14 | };
15 | export declare type Tags = typeof tags[keyof typeof tags];
16 | export declare type Scales = typeof scales[keyof typeof scales];
17 | export interface HeadingProps {
18 | as?: Tags;
19 | scale?: Scales;
20 | }
21 |
--------------------------------------------------------------------------------
/dist/components/Image/BackgroundImage.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { BackgroundImageProps } from "./types";
3 | declare const BackgroundImage: React.FC;
4 | export default BackgroundImage;
5 |
--------------------------------------------------------------------------------
/dist/components/Image/Image.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { ImageProps } from "./types";
3 | declare const Image: React.FC;
4 | export default Image;
5 |
--------------------------------------------------------------------------------
/dist/components/Image/Placeholder.d.ts:
--------------------------------------------------------------------------------
1 | declare const Placeholder: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2 | export default Placeholder;
3 |
--------------------------------------------------------------------------------
/dist/components/Image/ProfileAvatar.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { BackgroundImageProps } from "./types";
3 | declare const ProfileAvatar: React.FC;
4 | export default ProfileAvatar;
5 |
--------------------------------------------------------------------------------
/dist/components/Image/TokenImage.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | declare const TokenImage: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, {}, never>;
3 | export default TokenImage;
4 |
--------------------------------------------------------------------------------
/dist/components/Image/TokenPairImage.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { TokenPairImageProps } from "./types";
3 | declare const TokenPairImage: React.FC;
4 | export default TokenPairImage;
5 |
--------------------------------------------------------------------------------
/dist/components/Image/Wrapper.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { WrapperProps } from "./types";
3 | declare const Wrapper: React.ForwardRefExoticComponent>;
4 | export default Wrapper;
5 |
--------------------------------------------------------------------------------
/dist/components/Image/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as BackgroundImage } from "./BackgroundImage";
2 | export { default as Image } from "./Image";
3 | export { default as TokenImage } from "./TokenImage";
4 | export { default as TokenPairImage } from "./TokenPairImage";
5 | export { default as ProfileAvatar } from "./ProfileAvatar";
6 | export type { ImageProps, TokenPairImageProps, variants as tokenPairImageVariant, Variant as TokenPairImageVariant, } from "./types";
7 |
--------------------------------------------------------------------------------
/dist/components/Image/options.d.ts:
--------------------------------------------------------------------------------
1 | declare const _default: {
2 | root: null;
3 | rootMargin: string;
4 | threshold: number;
5 | };
6 | export default _default;
7 |
--------------------------------------------------------------------------------
/dist/components/Image/styles.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | import { ImageProps, Variant } from "./types";
3 | interface StyledImageProps extends ImageProps {
4 | variant: Variant;
5 | }
6 | export declare const StyledPrimaryImage: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, StyledImageProps, never>;
7 | export declare const StyledSecondaryImage: import("styled-components").StyledComponent, import("styled-components").DefaultTheme, StyledImageProps, never>;
8 | export {};
9 |
--------------------------------------------------------------------------------
/dist/components/Image/types.d.ts:
--------------------------------------------------------------------------------
1 | import { HTMLAttributes, ImgHTMLAttributes, ReactElement } from "react";
2 | import { SpaceProps } from "styled-system";
3 | import { BoxProps } from "../Box";
4 | export interface WrapperProps extends SpaceProps, HTMLAttributes {
5 | width: number;
6 | height: number;
7 | }
8 | export interface ImageProps extends ImgHTMLAttributes, SpaceProps {
9 | width: number;
10 | height: number;
11 | wrapperProps?: WrapperProps;
12 | }
13 | export interface BackgroundImageProps extends ImageProps {
14 | loadingPlaceholder?: ReactElement;
15 | }
16 | export declare const variants: {
17 | readonly DEFAULT: "default";
18 | readonly INVERTED: "inverted";
19 | };
20 | export declare type Variant = typeof variants[keyof typeof variants];
21 | export interface TokenPairImageProps extends BoxProps {
22 | primarySrc: string;
23 | secondarySrc: string;
24 | variant?: Variant;
25 | height: number;
26 | width: number;
27 | primaryImageProps?: Omit;
28 | secondaryImageProps?: Omit;
29 | }
30 |
--------------------------------------------------------------------------------
/dist/components/Input/Input.d.ts:
--------------------------------------------------------------------------------
1 | import { DefaultTheme } from "styled-components";
2 | import { InputProps } from "./types";
3 | declare const Input: import("styled-components").StyledComponent<"input", DefaultTheme, InputProps, never>;
4 | export default Input;
5 |
--------------------------------------------------------------------------------
/dist/components/Input/InputGroup.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | import { InputGroupProps } from "./types";
3 | declare const InputGroup: ({ scale, startIcon, endIcon, children, ...props }: InputGroupProps) => JSX.Element;
4 | export default InputGroup;
5 |
--------------------------------------------------------------------------------
/dist/components/Input/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Input } from "./Input";
2 | export { default as InputGroup } from "./InputGroup";
3 | export type { InputProps, InputGroupProps, Scales as InputScales } from "./types";
4 |
--------------------------------------------------------------------------------
/dist/components/Input/types.d.ts:
--------------------------------------------------------------------------------
1 | import { ReactElement } from "react";
2 | import { SpaceProps } from "styled-system";
3 | export declare const scales: {
4 | readonly SM: "sm";
5 | readonly MD: "md";
6 | readonly LG: "lg";
7 | };
8 | export declare type Scales = typeof scales[keyof typeof scales];
9 | export interface InputProps extends SpaceProps {
10 | scale?: Scales;
11 | isSuccess?: boolean;
12 | isWarning?: boolean;
13 | }
14 | export interface InputGroupProps extends SpaceProps {
15 | scale?: Scales;
16 | startIcon?: ReactElement;
17 | endIcon?: ReactElement;
18 | children: JSX.Element;
19 | }
20 |
--------------------------------------------------------------------------------
/dist/components/LangSelector/LangSelector.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Colors } from "../../theme";
3 | import { Language } from "./types";
4 | import { Position } from "../Dropdown/types";
5 | import { Scale } from "../Button/types";
6 | interface Props {
7 | currentLang: string;
8 | langs: Language[];
9 | setLang: (lang: Language) => void;
10 | color: keyof Colors;
11 | dropdownPosition?: Position;
12 | buttonScale?: Scale;
13 | hideLanguage?: boolean;
14 | }
15 | declare const _default: React.NamedExoticComponent;
16 | export default _default;
17 |
--------------------------------------------------------------------------------
/dist/components/LangSelector/MenuButton.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | declare const MenuButton: import("styled-components").StyledComponent<{
3 | = "button">(props: import("../Button").ButtonProps): JSX.Element;
4 | defaultProps: {
5 | isLoading: boolean;
6 | external: boolean;
7 | variant: "primary";
8 | scale: "md";
9 | disabled: boolean;
10 | };
11 | }, import("styled-components").DefaultTheme, {}, never>;
12 | export default MenuButton;
13 |
--------------------------------------------------------------------------------
/dist/components/LangSelector/types.d.ts:
--------------------------------------------------------------------------------
1 | export interface Language {
2 | code: string;
3 | language: string;
4 | locale: string;
5 | }
6 |
--------------------------------------------------------------------------------
/dist/components/Layouts/BaseLayout.d.ts:
--------------------------------------------------------------------------------
1 | declare const GridLayout: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & import("../Box").GridProps, never>;
2 | export default GridLayout;
3 |
--------------------------------------------------------------------------------
/dist/components/Layouts/CardsLayout.d.ts:
--------------------------------------------------------------------------------
1 | declare const GridLayout: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & import("../Box").GridProps, never>;
2 | export default GridLayout;
3 |
--------------------------------------------------------------------------------
/dist/components/Layouts/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as BaseLayout } from "./BaseLayout";
2 | export { default as CardsLayout } from "./CardsLayout";
3 |
--------------------------------------------------------------------------------
/dist/components/Link/Link.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { LinkProps } from "./types";
3 | declare const Link: React.FC;
4 | export default Link;
5 |
--------------------------------------------------------------------------------
/dist/components/Link/LinkExternal.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { LinkProps } from "./types";
3 | declare const LinkExternal: React.FC;
4 | export default LinkExternal;
5 |
--------------------------------------------------------------------------------
/dist/components/Link/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Link } from "./Link";
2 | export { default as LinkExternal } from "./LinkExternal";
3 | export type { LinkProps } from "./types";
4 |
--------------------------------------------------------------------------------
/dist/components/Link/types.d.ts:
--------------------------------------------------------------------------------
1 | import { AnchorHTMLAttributes } from "react";
2 | import { TextProps } from "../Text";
3 | export interface LinkProps extends TextProps, AnchorHTMLAttributes {
4 | external?: boolean;
5 | }
6 |
--------------------------------------------------------------------------------
/dist/components/MenuItem/MenuItem.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { MenuItemProps } from "./types";
3 | declare const MenuItem: React.FC;
4 | export default MenuItem;
5 |
--------------------------------------------------------------------------------
/dist/components/MenuItem/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default } from "./MenuItem";
2 |
--------------------------------------------------------------------------------
/dist/components/MenuItem/styles.d.ts:
--------------------------------------------------------------------------------
1 | import { StyledMenuItemProps } from "./types";
2 | export declare const StyledMenuItemContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledMenuItemProps, never>;
3 | declare const StyledMenuItem: import("styled-components").StyledComponent<"a", import("styled-components").DefaultTheme, StyledMenuItemProps, never>;
4 | export default StyledMenuItem;
5 |
--------------------------------------------------------------------------------
/dist/components/MenuItem/types.d.ts:
--------------------------------------------------------------------------------
1 | import { Colors } from "../../theme";
2 | export declare type MenuItemVariant = "default" | "subMenu";
3 | export interface MenuItemProps {
4 | isActive?: boolean;
5 | href: string;
6 | variant?: MenuItemVariant;
7 | statusColor?: keyof Colors;
8 | }
9 | export declare type StyledMenuItemProps = {
10 | $isActive?: boolean;
11 | $variant?: MenuItemVariant;
12 | $statusColor?: keyof Colors;
13 | };
14 |
--------------------------------------------------------------------------------
/dist/components/MenuItems/MenuItems.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { MenuItemsProps } from "./types";
3 | declare const MenuItems: React.FC;
4 | export default MenuItems;
5 |
--------------------------------------------------------------------------------
/dist/components/MenuItems/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default } from "./MenuItems";
2 |
--------------------------------------------------------------------------------
/dist/components/MenuItems/mock.d.ts:
--------------------------------------------------------------------------------
1 | declare const MenuItemsMock: {
2 | label: string;
3 | href: string;
4 | items: import("../DropdownMenu/types").DropdownMenuItems[];
5 | }[];
6 | export default MenuItemsMock;
7 |
--------------------------------------------------------------------------------
/dist/components/MenuItems/types.d.ts:
--------------------------------------------------------------------------------
1 | import { BoxProps } from "../Box";
2 | import { DropdownMenuItems } from "../DropdownMenu/types";
3 | export declare type MenuItemsType = {
4 | label: string;
5 | href: string;
6 | icon?: string;
7 | items?: DropdownMenuItems[];
8 | showOnMobile?: boolean;
9 | showItemsOnMobile?: boolean;
10 | };
11 | export interface MenuItemsProps extends BoxProps {
12 | items: MenuItemsType[];
13 | activeItem?: string;
14 | activeSubItem?: string;
15 | }
16 |
--------------------------------------------------------------------------------
/dist/components/Message/Message.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { MessageProps } from "./types";
3 | declare const Message: React.FC;
4 | export default Message;
5 |
--------------------------------------------------------------------------------
/dist/components/Message/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Message } from "./Message";
2 | export type { MessageProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Message/theme.d.ts:
--------------------------------------------------------------------------------
1 | declare const variants: {
2 | warning: {
3 | background: string;
4 | borderColor: string;
5 | };
6 | danger: {
7 | background: string;
8 | borderColor: string;
9 | };
10 | };
11 | export default variants;
12 |
--------------------------------------------------------------------------------
/dist/components/Message/types.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SpaceProps } from "styled-system";
3 | export declare const variants: {
4 | readonly WARNING: "warning";
5 | readonly DANGER: "danger";
6 | };
7 | export declare type Variant = typeof variants[keyof typeof variants];
8 | export interface MessageProps extends SpaceProps {
9 | variant: Variant;
10 | icon?: React.ReactNode;
11 | }
12 |
--------------------------------------------------------------------------------
/dist/components/NotificationDot/NotificationDot.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { NotificationDotProps } from "./types";
3 | declare const NotificationDot: React.FC;
4 | export default NotificationDot;
5 |
--------------------------------------------------------------------------------
/dist/components/NotificationDot/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as NotificationDot } from "./NotificationDot";
2 | export type { NotificationDotProps, DotProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/NotificationDot/types.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | export interface NotificationDotProps {
3 | show?: boolean;
4 | children: React.ReactElement | React.ReactElement[];
5 | }
6 | export interface DotProps {
7 | show: boolean;
8 | }
9 |
--------------------------------------------------------------------------------
/dist/components/Overlay/Overlay.d.ts:
--------------------------------------------------------------------------------
1 | import { OverlayProps } from "./types";
2 | declare const Overlay: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
3 | role: "presentation";
4 | } & OverlayProps, "role">;
5 | export default Overlay;
6 |
--------------------------------------------------------------------------------
/dist/components/Overlay/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Overlay } from "./Overlay";
2 | export type { OverlayProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Overlay/types.d.ts:
--------------------------------------------------------------------------------
1 | export declare type OverlayProps = {
2 | show: boolean;
3 | zIndex?: number;
4 | };
5 |
--------------------------------------------------------------------------------
/dist/components/PancakeToggle/PancakeToggle.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { PancakeToggleProps } from "./types";
3 | declare const PancakeToggle: React.FC;
4 | export default PancakeToggle;
5 |
--------------------------------------------------------------------------------
/dist/components/PancakeToggle/StyledPancakeToggle.d.ts:
--------------------------------------------------------------------------------
1 | import { PancakeToggleProps, HandleProps, InputProps } from "./types";
2 | export declare const PancakeStack: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, HandleProps, never>;
3 | export declare const PancakeInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, InputProps, never>;
4 | export declare const PancakeLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, PancakeToggleProps, never>;
5 |
--------------------------------------------------------------------------------
/dist/components/PancakeToggle/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as PancakeToggle } from "./PancakeToggle";
2 | export type { PancakeToggleProps, Scales as PancakeToggleScales } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/PancakeToggle/theme.d.ts:
--------------------------------------------------------------------------------
1 | import { PancakeToggleTheme } from "./types";
2 | export declare const light: PancakeToggleTheme;
3 | export declare const dark: PancakeToggleTheme;
4 |
--------------------------------------------------------------------------------
/dist/components/PancakeToggle/types.d.ts:
--------------------------------------------------------------------------------
1 | import { InputHTMLAttributes } from "react";
2 | export declare type PancakeToggleTheme = {
3 | handleBackground: string;
4 | handleShadow: string;
5 | };
6 | export declare const scales: {
7 | readonly SM: "sm";
8 | readonly MD: "md";
9 | readonly LG: "lg";
10 | };
11 | export declare type Scales = typeof scales[keyof typeof scales];
12 | export interface PancakeToggleProps extends InputHTMLAttributes {
13 | scale?: Scales;
14 | checked?: boolean;
15 | }
16 | export interface HandleProps {
17 | scale: Scales;
18 | }
19 | export interface InputProps {
20 | scale: Scales;
21 | }
22 | export declare const scaleKeys: {
23 | readonly pancakeSize: "pancakeSize";
24 | readonly travelDistance: "travelDistance";
25 | readonly toggleHeight: "toggleHeight";
26 | readonly toggleWidth: "toggleWidth";
27 | readonly pancakeThickness: "pancakeThickness";
28 | readonly pancakeTwoOffset: "pancakeTwoOffset";
29 | readonly pancakeThreeOffset: "pancakeThreeOffset";
30 | readonly butterTop: "butterTop";
31 | readonly butterLeft: "butterLeft";
32 | readonly butterWidth: "butterWidth";
33 | readonly butterHeight: "butterHeight";
34 | readonly butterThickness: "butterThickness";
35 | readonly butterRadius: "butterRadius";
36 | readonly butterSmearOneTop: "butterSmearOneTop";
37 | readonly butterSmearOneLeft: "butterSmearOneLeft";
38 | readonly butterSmearTwoTop: "butterSmearTwoTop";
39 | readonly butterSmearTwoRight: "butterSmearTwoRight";
40 | };
41 | export declare type ScaleKeys = typeof scaleKeys[keyof typeof scaleKeys];
42 |
--------------------------------------------------------------------------------
/dist/components/Progress/Progress.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { ProgressProps } from "./types";
3 | declare const Progress: React.FC;
4 | export default Progress;
5 |
--------------------------------------------------------------------------------
/dist/components/Progress/ProgressBunnyWrapper.d.ts:
--------------------------------------------------------------------------------
1 | declare const ProgressBunnyWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2 | export default ProgressBunnyWrapper;
3 |
--------------------------------------------------------------------------------
/dist/components/Progress/StyledProgress.d.ts:
--------------------------------------------------------------------------------
1 | import { ProgressProps } from "./types";
2 | interface BarProps {
3 | primary?: boolean;
4 | }
5 | export declare const Bar: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, BarProps, never>;
6 | interface StyledProgressProps {
7 | variant: ProgressProps["variant"];
8 | scale: ProgressProps["scale"];
9 | }
10 | declare const StyledProgress: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledProgressProps, never>;
11 | export default StyledProgress;
12 |
--------------------------------------------------------------------------------
/dist/components/Progress/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Progress } from "./Progress";
2 | export type { ProgressProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Progress/themes.d.ts:
--------------------------------------------------------------------------------
1 | export declare const styleVariants: {
2 | round: {
3 | borderRadius: string;
4 | };
5 | flat: {
6 | borderRadius: number;
7 | };
8 | };
9 | export declare const styleScales: {
10 | md: {
11 | height: string;
12 | };
13 | sm: {
14 | height: string;
15 | };
16 | };
17 | export default styleVariants;
18 |
--------------------------------------------------------------------------------
/dist/components/Progress/types.d.ts:
--------------------------------------------------------------------------------
1 | export declare const variants: {
2 | readonly ROUND: "round";
3 | readonly FLAT: "flat";
4 | };
5 | export declare const scales: {
6 | readonly MD: "md";
7 | readonly SM: "sm";
8 | };
9 | export declare type Scale = typeof scales[keyof typeof scales];
10 | export declare type Variant = typeof variants[keyof typeof variants];
11 | export interface ProgressProps {
12 | variant?: Variant;
13 | scale?: Scale;
14 | primaryStep?: number;
15 | secondaryStep?: number;
16 | showProgressBunny?: boolean;
17 | }
18 |
--------------------------------------------------------------------------------
/dist/components/Radio/Radio.d.ts:
--------------------------------------------------------------------------------
1 | import { RadioProps } from "./types";
2 | declare const Radio: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, {
3 | type: "radio";
4 | } & RadioProps, "type">;
5 | export default Radio;
6 |
--------------------------------------------------------------------------------
/dist/components/Radio/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Radio } from "./Radio";
2 | export type { RadioProps, Scales as RadioScales } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Radio/theme.d.ts:
--------------------------------------------------------------------------------
1 | import { RadioTheme } from "./types";
2 | export declare const light: RadioTheme;
3 | export declare const dark: RadioTheme;
4 |
--------------------------------------------------------------------------------
/dist/components/Radio/types.d.ts:
--------------------------------------------------------------------------------
1 | import { SpaceProps } from "styled-system";
2 | export declare type RadioTheme = {
3 | handleBackground: string;
4 | };
5 | export declare const scales: {
6 | readonly SM: "sm";
7 | readonly MD: "md";
8 | };
9 | export declare type Scales = typeof scales[keyof typeof scales];
10 | export interface RadioProps extends SpaceProps {
11 | scale?: Scales;
12 | }
13 |
--------------------------------------------------------------------------------
/dist/components/Skeleton/Skeleton.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SkeletonProps } from "./types";
3 | declare const Skeleton: React.FC;
4 | export default Skeleton;
5 |
--------------------------------------------------------------------------------
/dist/components/Skeleton/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Skeleton } from "./Skeleton";
2 | export type { SkeletonProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Skeleton/types.d.ts:
--------------------------------------------------------------------------------
1 | import { LayoutProps, SpaceProps } from "styled-system";
2 | export declare const animation: {
3 | readonly WAVES: "waves";
4 | readonly PULSE: "pulse";
5 | };
6 | export declare const variant: {
7 | readonly RECT: "rect";
8 | readonly CIRCLE: "circle";
9 | };
10 | export declare type Animation = typeof animation[keyof typeof animation];
11 | export declare type Variant = typeof variant[keyof typeof variant];
12 | export interface SkeletonProps extends SpaceProps, LayoutProps {
13 | animation?: Animation;
14 | variant?: Variant;
15 | }
16 |
--------------------------------------------------------------------------------
/dist/components/Slider/Slider.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import SliderProps from "./types";
3 | declare const Slider: React.FC;
4 | export default Slider;
5 |
--------------------------------------------------------------------------------
/dist/components/Slider/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Slider } from "./Slider";
2 | export type { default as SliderProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Slider/styles.d.ts:
--------------------------------------------------------------------------------
1 | import { InputHTMLAttributes } from "react";
2 | interface SliderLabelProps {
3 | progress: string;
4 | }
5 | interface StyledInputProps extends InputHTMLAttributes {
6 | isMax: boolean;
7 | }
8 | interface DisabledProp {
9 | disabled?: boolean;
10 | }
11 | export declare const SliderLabelContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
12 | export declare const SliderLabel: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Text").TextProps & SliderLabelProps, never>;
13 | export declare const BunnyButt: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, DisabledProp, never>;
14 | export declare const BunnySlider: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
15 | export declare const StyledInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, StyledInputProps, never>;
16 | export declare const BarBackground: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, DisabledProp, never>;
17 | export declare const BarProgress: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, DisabledProp, never>;
18 | export {};
19 |
--------------------------------------------------------------------------------
/dist/components/Slider/types.d.ts:
--------------------------------------------------------------------------------
1 | import { BoxProps } from "../Box/types";
2 | export default interface SliderProps extends BoxProps {
3 | name: string;
4 | min: number;
5 | max: number;
6 | value: number;
7 | step?: number | "any";
8 | onValueChanged: (newValue: number) => void;
9 | valueLabel?: string;
10 | disabled?: boolean;
11 | }
12 |
--------------------------------------------------------------------------------
/dist/components/Spinner/PanIcon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../Svg/types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Spinner/PancakeIcon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../Svg/types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Spinner/Spinner.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SpinnerProps } from "./types";
3 | declare const Spinner: React.FC;
4 | export default Spinner;
5 |
--------------------------------------------------------------------------------
/dist/components/Spinner/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Spinner } from "./Spinner";
2 | export type { SpinnerProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/Spinner/types.d.ts:
--------------------------------------------------------------------------------
1 | export interface SpinnerProps {
2 | size?: number;
3 | }
4 |
--------------------------------------------------------------------------------
/dist/components/Stepper/Step.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { StatusProps, StepProps } from "./types";
3 | export declare const StepNumber: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StatusProps, never>;
4 | /**
5 | * ChildrenLeftWrapper and ChildrenRightWrapper are used on the non mobile version, to force the alternate layout.
6 | * One of the child is hidden based on the step number.
7 | */
8 | export declare const Step: React.FC;
9 |
--------------------------------------------------------------------------------
/dist/components/Stepper/Stepper.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | declare const Stepper: React.FC;
3 | export default Stepper;
4 |
--------------------------------------------------------------------------------
/dist/components/Stepper/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Stepper } from "./Stepper";
2 | export { Step } from "./Step";
3 | export type { Status as StepStatus, StepProps } from "./types";
4 |
--------------------------------------------------------------------------------
/dist/components/Stepper/types.d.ts:
--------------------------------------------------------------------------------
1 | import { DefaultTheme } from "styled-components";
2 | export interface ThemedProps {
3 | theme: DefaultTheme;
4 | }
5 | export declare type Status = "past" | "current" | "future";
6 | export interface StatusProps extends ThemedProps {
7 | theme: DefaultTheme;
8 | status: Status;
9 | }
10 | export interface StepProps {
11 | index: number;
12 | status: Status;
13 | numberOfSteps?: number;
14 | }
15 |
--------------------------------------------------------------------------------
/dist/components/SubMenu/SubMenu.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { Placement, Padding } from "@popperjs/core";
3 | export interface SubMenuProps {
4 | component: React.ReactNode;
5 | options?: {
6 | placement?: Placement;
7 | offset?: [number, number];
8 | padding?: Padding;
9 | };
10 | }
11 | declare const SubMenu: React.FC;
12 | export default SubMenu;
13 |
--------------------------------------------------------------------------------
/dist/components/SubMenu/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as SubMenu } from "./SubMenu";
2 | export { SubMenuItem } from "./styles";
3 |
--------------------------------------------------------------------------------
/dist/components/SubMenu/styles.d.ts:
--------------------------------------------------------------------------------
1 | export declare const SubMenuContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
2 | export declare const ClickableElementContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
3 | export declare const SubMenuItem: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
4 |
--------------------------------------------------------------------------------
/dist/components/SubMenuItems/SubMenuItems.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SubMenuItemsProps } from "./types";
3 | declare const SubMenuItems: React.FC;
4 | export default SubMenuItems;
5 |
--------------------------------------------------------------------------------
/dist/components/SubMenuItems/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as SubMenuItems } from "./SubMenuItems";
2 | export type { SubMenuItemsType, SubMenuItemsProps } from "./types";
3 |
--------------------------------------------------------------------------------
/dist/components/SubMenuItems/mock.d.ts:
--------------------------------------------------------------------------------
1 | declare const SubMenuItemsMock: {
2 | label: string;
3 | href: string;
4 | }[];
5 | export default SubMenuItemsMock;
6 |
--------------------------------------------------------------------------------
/dist/components/SubMenuItems/styles.d.ts:
--------------------------------------------------------------------------------
1 | declare const StyledSubMenuItems: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../Box").BoxProps & import("../Box").FlexProps, never>;
2 | export default StyledSubMenuItems;
3 |
--------------------------------------------------------------------------------
/dist/components/SubMenuItems/types.d.ts:
--------------------------------------------------------------------------------
1 | import { FlexProps } from "../Box";
2 | export declare type SubMenuItemsType = {
3 | label: string;
4 | href: string;
5 | };
6 | export interface SubMenuItemsProps extends FlexProps {
7 | items: SubMenuItemsType[];
8 | activeItem?: string;
9 | }
10 |
--------------------------------------------------------------------------------
/dist/components/Svg/AnimatedIconComponent.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { IconComponentType } from "./types";
3 | declare const AnimatedIconComponent: React.FC;
4 | export default AnimatedIconComponent;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/IconComponent.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "./types";
3 | declare const IconComponent: React.FC<{
4 | iconName: string;
5 | } & SvgProps>;
6 | export default IconComponent;
7 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Account.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/AccountFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Add.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowBack.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowDown.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowDropDown.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowDropUp.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowFirst.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowForward.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowLast.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ArrowUp.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/AutoRenew.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Binance.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/BinanceChain.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Block.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/BnbUsdtPairToken.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/BscScan.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/BunnyCards.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/BunnyPlaceholder.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Calculate.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Camera.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/CardView.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Cards.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Chart.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Checkmark.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/CheckmarkCircle.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/CheckmarkCircleFill.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ChevronDown.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ChevronLeft.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ChevronRight.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ChevronUp.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/CircleOutline.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Close.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Cog.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Coin98.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Community.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/CommunityFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Copy.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Crown.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Currency.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Earn.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/EarnFill.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/EarnFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Ellipsis.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Error.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/EthereumIcon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Farm.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Github.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Groups.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Hamburger.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/HamburgerClose.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Help.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/History.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Home.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Ifo.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Info.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Instagram.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Language.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/LanguageCurrency.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/LaurelLeft.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/LaurelRight.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ListView.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Login.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Logo.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/LogoRound.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/LogoWithText.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | interface LogoProps extends SvgProps {
4 | isDark: boolean;
5 | }
6 | declare const _default: React.NamedExoticComponent;
7 | export default _default;
8 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Logout.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MathWallet.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MedalBronze.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MedalGold.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MedalPurple.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MedalSilver.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MedalTeal.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Metamask.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Minus.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Moon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/More.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MoreHorizontal.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/MoreVertical.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Nft.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/NftFill.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/NftFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/NoProfileAvatar.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/OpenNew.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PancakeRound.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Pancakes.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Pencil.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PlayCircleOutline.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PocketWatch.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PolygonIcon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Pool.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Predictions.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PresentCheck.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PresentNone.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/PresentWon.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Prize.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ProgressBunny.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Proposal.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Reddit.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Refresh.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Remove.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Resources.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/ResourcesFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/SafePal.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Search.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Sell.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Share.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/SmallDot.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/StarFill.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/StarLine.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Sun.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Swap.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/SwapFill.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/SwapVert.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/SyncAlt.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TeamBattle.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TeamPlayer.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Telegram.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Testnet.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Ticket.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TicketFill.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TicketRound.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Timer.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TokenPocket.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Trade.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TradeFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Trophy.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TrophyFill.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TrophyGold.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/TrustWallet.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Tune.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Twitter.d.ts:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
6 | export default Icon;
7 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Verified.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/VisibilityOff.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/VisibilityOn.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/VolumeOff.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/VolumeUp.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Vote.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Wait.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Wallet.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/WalletConnect.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/WalletFilled.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Icons/Warning.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { SvgProps } from "../types";
3 | declare const Icon: React.FC;
4 | export default Icon;
5 |
--------------------------------------------------------------------------------
/dist/components/Svg/Svg.d.ts:
--------------------------------------------------------------------------------
1 | import { SvgProps } from "./types";
2 | declare const Svg: import("styled-components").StyledComponent<"svg", import("styled-components").DefaultTheme, SvgProps, never>;
3 | export default Svg;
4 |
--------------------------------------------------------------------------------
/dist/components/Svg/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as AddIcon } from "./Icons/Add";
2 | export { default as ArrowBackIcon } from "./Icons/ArrowBack";
3 | export { default as ArrowDownIcon } from "./Icons/ArrowDown";
4 | export { default as ArrowDropDownIcon } from "./Icons/ArrowDropDown";
5 | export { default as ArrowDropUpIcon } from "./Icons/ArrowDropUp";
6 | export { default as ArrowFirstIcon } from "./Icons/ArrowFirst";
7 | export { default as ArrowForwardIcon } from "./Icons/ArrowForward";
8 | export { default as ArrowLastIcon } from "./Icons/ArrowLast";
9 | export { default as ArrowUpIcon } from "./Icons/ArrowUp";
10 | export { default as AutoRenewIcon } from "./Icons/AutoRenew";
11 | export { default as BinanceIcon } from "./Icons/Binance";
12 | export { default as BinanceChainIcon } from "./Icons/BinanceChain";
13 | export { default as BlockIcon } from "./Icons/Block";
14 | export { default as BnbUsdtPairTokenIcon } from "./Icons/BnbUsdtPairToken";
15 | export { default as BunnyCardsIcon } from "./Icons/BunnyCards";
16 | export { default as BunnyPlaceholderIcon } from "./Icons/BunnyPlaceholder";
17 | export { default as Cards } from "./Icons/Cards";
18 | export { default as CardViewIcon } from "./Icons/CardView";
19 | export { default as CalculateIcon } from "./Icons/Calculate";
20 | export { default as CircleOutlineIcon } from "./Icons/CircleOutline";
21 | export { default as ChartIcon } from "./Icons/Chart";
22 | export { default as CheckmarkIcon } from "./Icons/Checkmark";
23 | export { default as CheckmarkCircleIcon } from "./Icons/CheckmarkCircle";
24 | export { default as CheckmarkCircleFillIcon } from "./Icons/CheckmarkCircleFill";
25 | export { default as ChevronDownIcon } from "./Icons/ChevronDown";
26 | export { default as ChevronLeftIcon } from "./Icons/ChevronLeft";
27 | export { default as ChevronRightIcon } from "./Icons/ChevronRight";
28 | export { default as ChevronUpIcon } from "./Icons/ChevronUp";
29 | export { default as CloseIcon } from "./Icons/Close";
30 | export { default as CogIcon } from "./Icons/Cog";
31 | export { default as Coin98Icon } from "./Icons/Coin98";
32 | export { default as CommunityIcon } from "./Icons/Community";
33 | export { default as CopyIcon } from "./Icons/Copy";
34 | export { default as CrownIcon } from "./Icons/Crown";
35 | export { default as CurrencyIcon } from "./Icons/Currency";
36 | export { default as ErrorIcon } from "./Icons/Error";
37 | export { default as EllipsisIcon } from "./Icons/Ellipsis";
38 | export { default as HelpIcon } from "./Icons/Help";
39 | export { default as HistoryIcon } from "./Icons/History";
40 | export { default as InfoIcon } from "./Icons/Info";
41 | export { default as LanguageIcon } from "./Icons/Language";
42 | export { default as LanguageCurrencyIcon } from "./Icons/LanguageCurrency";
43 | export { default as LaurelLeftIcon } from "./Icons/LaurelLeft";
44 | export { default as LaurelRightIcon } from "./Icons/LaurelRight";
45 | export { default as ListViewIcon } from "./Icons/ListView";
46 | export { default as LoginIcon } from "./Icons/Login";
47 | export { default as LogoIcon } from "./Icons/Logo";
48 | export { default as LogoRoundIcon } from "./Icons/LogoRound";
49 | export { default as MathWalletIcon } from "./Icons/MathWallet";
50 | export { default as LogoutIcon } from "./Icons/Logout";
51 | export { default as MedalBronzeIcon } from "./Icons/MedalBronze";
52 | export { default as MedalGoldIcon } from "./Icons/MedalGold";
53 | export { default as MedalPurpleIcon } from "./Icons/MedalPurple";
54 | export { default as MedalSilverIcon } from "./Icons/MedalSilver";
55 | export { default as MedalTealIcon } from "./Icons/MedalTeal";
56 | export { default as MetamaskIcon } from "./Icons/Metamask";
57 | export { default as MinusIcon } from "./Icons/Minus";
58 | export { default as MoreHorizontalIcon } from "./Icons/MoreHorizontal";
59 | export { default as MoreVerticalIcon } from "./Icons/MoreVertical";
60 | export { default as NoProfileAvatarIcon } from "./Icons/NoProfileAvatar";
61 | export { default as OpenNewIcon } from "./Icons/OpenNew";
62 | export { default as PancakesIcon } from "./Icons/Pancakes";
63 | export { default as PencilIcon } from "./Icons/Pencil";
64 | export { default as PancakeRoundIcon } from "./Icons/PancakeRound";
65 | export { default as PocketWatchIcon } from "./Icons/PocketWatch";
66 | export { default as PlayCircleOutlineIcon } from "./Icons/PlayCircleOutline";
67 | export { default as PredictionsIcon } from "../../widgets/Menu/icons/Predictions";
68 | export { default as PrizeIcon } from "./Icons/Prize";
69 | export { default as ProposalIcon } from "./Icons/Proposal";
70 | export { default as RemoveIcon } from "./Icons/Remove";
71 | export { default as VerifiedIcon } from "./Icons/Verified";
72 | export { default as ProgressBunny } from "./Icons/ProgressBunny";
73 | export { default as PresentCheckIcon } from "./Icons/PresentCheck";
74 | export { default as PresentWonIcon } from "./Icons/PresentWon";
75 | export { default as PresentNoneIcon } from "./Icons/PresentNone";
76 | export { default as RefreshIcon } from "./Icons/Refresh";
77 | export { default as SafePalIcon } from "./Icons/SafePal";
78 | export { default as SearchIcon } from "./Icons/Search";
79 | export { default as SmallDotIcon } from "./Icons/SmallDot";
80 | export { default as StarFillIcon } from "./Icons/StarFill";
81 | export { default as StarLineIcon } from "./Icons/StarLine";
82 | export { default as SwapIcon } from "./Icons/Swap";
83 | export { default as SwapVertIcon } from "./Icons/SwapVert";
84 | export { default as SyncAltIcon } from "./Icons/SyncAlt";
85 | export { default as TeamPlayerIcon } from "./Icons/TeamPlayer";
86 | export { default as TestnetIcon } from "./Icons/Testnet";
87 | export { default as Ticket } from "./Icons/Ticket";
88 | export { default as TicketFillIcon } from "./Icons/TicketFill";
89 | export { default as TicketRound } from "./Icons/TicketRound";
90 | export { default as TimerIcon } from "./Icons/Timer";
91 | export { default as TokenPocketIcon } from "./Icons/TokenPocket";
92 | export { default as TrophyGoldIcon } from "./Icons/TrophyGold";
93 | export { default as TrustWalletIcon } from "./Icons/TrustWallet";
94 | export { default as TuneIcon } from "./Icons/Tune";
95 | export { default as VisibilityOff } from "./Icons/VisibilityOff";
96 | export { default as VisibilityOn } from "./Icons/VisibilityOn";
97 | export { default as VolumeOffIcon } from "./Icons/VolumeOff";
98 | export { default as VolumeUpIcon } from "./Icons/VolumeUp";
99 | export { default as VoteIcon } from "./Icons/Vote";
100 | export { default as WarningIcon } from "./Icons/Warning";
101 | export { default as WalletConnectIcon } from "./Icons/WalletConnect";
102 | export { default as WalletIcon } from "./Icons/Wallet";
103 | export { default as WalletFilledIcon } from "./Icons/WalletFilled";
104 | export { default as WaitIcon } from "./Icons/Wait";
105 | export { default as Svg } from "./Svg";
106 | export type { SvgProps } from "./types";
107 |
--------------------------------------------------------------------------------
/dist/components/Svg/styles.d.ts:
--------------------------------------------------------------------------------
1 | import { Colors } from "../../theme";
2 | export declare const StyledIconContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
3 | activeBackgroundColor?: keyof Colors | undefined;
4 | }, never>;
5 | export declare const StyledAnimatedIconComponent: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
6 | isActive: boolean;
7 | height?: string | undefined;
8 | width?: string | undefined;
9 | hasFillIcon: boolean;
10 | }, never>;
11 |
--------------------------------------------------------------------------------
/dist/components/Svg/types.d.ts:
--------------------------------------------------------------------------------
1 | import { SVGAttributes } from "react";
2 | import { DefaultTheme } from "styled-components";
3 | import { SpaceProps } from "styled-system";
4 | export interface SvgProps extends SVGAttributes, SpaceProps {
5 | theme?: DefaultTheme;
6 | spin?: boolean;
7 | }
8 |
--------------------------------------------------------------------------------
/dist/components/TabMenu/Tab.d.ts:
--------------------------------------------------------------------------------
1 | import { TabProps } from "./types";
2 | declare const Tab: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, TabProps, never>;
3 | export default Tab;
4 |
--------------------------------------------------------------------------------
/dist/components/TabMenu/TabMenu.d.ts:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { TabMenuProps } from "./types";
3 | declare const ButtonMenu: React.FC;
4 | export default ButtonMenu;
5 |
--------------------------------------------------------------------------------
/dist/components/TabMenu/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as TabMenu } from "./TabMenu";
2 | export { default as Tab } from "./Tab";
3 | export type { TabMenuProps, TabProps } from "./types";
4 |
--------------------------------------------------------------------------------
/dist/components/TabMenu/types.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | import { ColorProps } from "styled-system";
3 | export interface TabMenuProps {
4 | activeIndex?: number;
5 | onItemClick?: (index: number) => void;
6 | children: React.ReactElement[];
7 | }
8 | export interface TabProps extends ColorProps {
9 | isActive?: boolean;
10 | onClick?: () => void;
11 | scale?: "md" | "lg";
12 | }
13 |
--------------------------------------------------------------------------------
/dist/components/Table/Cell.d.ts:
--------------------------------------------------------------------------------
1 | import { TypographyProps } from "styled-system";
2 | export declare const Td: import("styled-components").StyledComponent<"td", import("styled-components").DefaultTheme, TypographyProps>>, never>;
3 | export declare const Th: import("styled-components").StyledComponent<"td", import("styled-components").DefaultTheme, TypographyProps>> & {
4 | as: string;
5 | }, "as">;
6 |
--------------------------------------------------------------------------------
/dist/components/Table/Table.d.ts:
--------------------------------------------------------------------------------
1 | declare const Table: import("styled-components").StyledComponent<"table", import("styled-components").DefaultTheme, {}, never>;
2 | export default Table;
3 |
--------------------------------------------------------------------------------
/dist/components/Table/example/const.d.ts:
--------------------------------------------------------------------------------
1 | export declare const columns: ({
2 | id: number;
3 | name: string;
4 | hidden: boolean;
5 | label?: undefined;
6 | render?: undefined;
7 | } | {
8 | id: number;
9 | name: string;
10 | label: string;
11 | render: ({ value }: {
12 | value: React.ReactNode;
13 | }) => React.ReactNode;
14 | hidden?: undefined;
15 | } | {
16 | id: number;
17 | name: string;
18 | label: string;
19 | hidden?: undefined;
20 | render?: undefined;
21 | } | {
22 | id: number;
23 | name: string;
24 | hidden?: undefined;
25 | label?: undefined;
26 | render?: undefined;
27 | })[];
28 | export declare const data: never[];
29 |
--------------------------------------------------------------------------------
/dist/components/Table/example/header.d.ts:
--------------------------------------------------------------------------------
1 | declare const StyledTh: import("styled-components").StyledComponent<"th", import("styled-components").DefaultTheme, {}, never>;
2 | export default StyledTh;
3 |
--------------------------------------------------------------------------------
/dist/components/Table/hooks.d.ts:
--------------------------------------------------------------------------------
1 | import { ReactNode } from "react";
2 | import { ColumnType, DataType, UseTableReturnType, UseTableOptionsType } from "./types";
3 | export declare const makeRender: (value: any, render: (({ value: val, row }: {
4 | value: any;
5 | row: T;
6 | }) => ReactNode) | undefined, row: T) => (() => React.ReactNode);
7 | export declare const useTable: (columns: ColumnType[], data: T[], options?: UseTableOptionsType | undefined) => UseTableReturnType;
8 |
--------------------------------------------------------------------------------
/dist/components/Table/index.d.ts:
--------------------------------------------------------------------------------
1 | export { default as Table } from "./Table";
2 | export * from "./Cell";
3 | export * from "./hooks";
4 | export * from "./types";
5 | export * from "./utils";
6 |
--------------------------------------------------------------------------------
/dist/components/Table/types.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | export declare type ColumnType = {
3 | name: string;
4 | label?: string;
5 | hidden?: boolean;
6 | sort?: ((a: RowType, b: RowType) => number) | undefined;
7 | render?: ({ value, row }: {
8 | value: any;
9 | row: T;
10 | }) => React.ReactNode;
11 | headerRender?: HeaderRenderType;
12 | };
13 | export declare type ColumnStateType = {
14 | name: string;
15 | label: string;
16 | hidden: boolean;
17 | sort?: ((a: RowType, b: RowType) => number) | undefined;
18 | sorted: {
19 | on: boolean;
20 | asc?: boolean;
21 | };
22 | headerRender?: HeaderRenderType;
23 | };
24 | export declare type HeaderRenderType = ({ label }: {
25 | label: React.ReactNode;
26 | }) => React.ReactNode;
27 | export declare type HeaderType = {
28 | name: string;
29 | label?: string;
30 | hidden?: boolean;
31 | sorted: {
32 | on: boolean;
33 | asc?: boolean;
34 | };
35 | sort?: ((a: RowType, b: RowType) => number) | undefined;
36 | render: () => React.ReactNode;
37 | };
38 | export declare type DataType = {
39 | [key: string]: any;
40 | };
41 | export declare type ColumnByNamesType = {
42 | [key: string]: ColumnType;
43 | };
44 | export declare type RenderFunctionType = ({ value, row }: RenderFunctionArgsType) => React.ReactNode | undefined;
45 | declare type RenderFunctionArgsType = {
46 | value: any;
47 | row: T;
48 | };
49 | export declare type ColumnByNameType = Omit>, "name" | "sort">;
50 | export interface RowType {
51 | id: number;
52 | cells: CellType[];
53 | hidden?: boolean;
54 | selected?: boolean;
55 | original: T;
56 | }
57 | export declare type CellType = {
58 | value: any;
59 | render: () => React.ReactNode;
60 | };
61 | export interface UseTableTypeParams {
62 | columns: ColumnType[];
63 | data: T[];
64 | options?: {
65 | sortable?: boolean;
66 | selectable?: boolean;
67 | filter?: (row: RowType[]) => RowType[];
68 | filterOn?: boolean;
69 | };
70 | }
71 | export interface UseTablePropsType {
72 | columns: ColumnType[];
73 | data: T[];
74 | options?: {
75 | sortable?: boolean;
76 | selectable?: boolean;
77 | filter?: (row: RowType[]) => RowType[];
78 | };
79 | }
80 | export interface UseTableOptionsType