@goodhood-web/ui 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +12 -0
- package/.eslintrc.json +25 -0
- package/.storybook/main.ts +31 -0
- package/.storybook/manager-head.html +1 -0
- package/.storybook/manager.ts +7 -0
- package/.storybook/nebenanTheme.ts +17 -0
- package/.storybook/preview.ts +9 -0
- package/.stylelintrc.json +14 -0
- package/README.md +7 -0
- package/__mocks__/svg.js +2 -0
- package/images/favicon.ico +0 -0
- package/images/logo.svg +11 -0
- package/jest.config.ts +16 -0
- package/package.json +1 -1
- package/project.json +88 -0
- package/{index.d.ts → src/index.ts} +25 -1
- package/src/lib/BaseButton/BaseButton.module.scss +11 -0
- package/src/lib/BaseButton/BaseButton.spec.tsx +12 -0
- package/src/lib/BaseButton/BaseButton.stories.tsx +26 -0
- package/src/lib/BaseButton/BaseButton.tsx +39 -0
- package/src/lib/Card/Card.module.scss +15 -0
- package/src/lib/Card/Card.spec.tsx +15 -0
- package/src/lib/Card/Card.stories.tsx +159 -0
- package/src/lib/Card/Card.tsx +31 -0
- package/src/lib/Card/Card.types.ts +12 -0
- package/src/lib/Card/Card.utils.spec.tsx +51 -0
- package/src/lib/Card/Card.utils.ts +23 -0
- package/src/lib/Card/CardBody/CardBody.module.scss +4 -0
- package/src/lib/Card/CardBody/CardBody.spec.tsx +15 -0
- package/src/lib/Card/CardBody/CardBody.stories.tsx +108 -0
- package/src/lib/Card/CardBody/CardBody.tsx +9 -0
- package/src/lib/Card/CardBody/CardBody.types.ts +4 -0
- package/src/lib/Card/CardHeader/CardHeader.module.scss +12 -0
- package/src/lib/Card/CardHeader/CardHeader.spec.tsx +72 -0
- package/src/lib/Card/CardHeader/CardHeader.stories.tsx +77 -0
- package/src/lib/Card/CardHeader/CardHeader.tsx +29 -0
- package/src/lib/Card/CardHeader/CardHeader.type.ts +14 -0
- package/src/lib/ContentCreatorButton/ContentCreatorButton.module.scss +13 -0
- package/src/lib/ContentCreatorButton/ContentCreatorButton.spec.tsx +14 -0
- package/src/lib/ContentCreatorButton/ContentCreatorButton.stories.tsx +29 -0
- package/src/lib/ContentCreatorButton/ContentCreatorButton.tsx +35 -0
- package/{lib/ContentCreatorButton/ContentCreatorButton.types.d.ts → src/lib/ContentCreatorButton/ContentCreatorButton.types.ts} +3 -2
- package/src/lib/Divider/Divider.module.scss +10 -0
- package/src/lib/Divider/Divider.spec.tsx +46 -0
- package/src/lib/Divider/Divider.stories.tsx +35 -0
- package/src/lib/Divider/Divider.tsx +17 -0
- package/src/lib/Divider/Divider.types.ts +6 -0
- package/src/lib/Fieldset/Fieldset.module.scss +3 -0
- package/src/lib/Fieldset/Fieldset.spec.tsx +68 -0
- package/src/lib/Fieldset/Fieldset.stories.tsx +60 -0
- package/src/lib/Fieldset/Fieldset.tsx +28 -0
- package/src/lib/Fieldset/Fieldset.types.ts +7 -0
- package/src/lib/Form/Form.spec.tsx +15 -0
- package/src/lib/Form/Form.stories.tsx +53 -0
- package/src/lib/Form/Form.tsx +14 -0
- package/src/lib/Form/Form.types.ts +11 -0
- package/src/lib/Icon/Icon.module.scss +7 -0
- package/src/lib/Icon/Icon.spec.tsx +28 -0
- package/src/lib/Icon/Icon.stories.tsx +88 -0
- package/src/lib/Icon/Icon.tsx +29 -0
- package/src/lib/Icon/Icon.types.ts +23 -0
- package/src/lib/Icon/icons/24x24/index.ts +89 -0
- package/src/lib/Icon/icons/24x24/svg/arrow_left.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/arrow_right.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/bookmark.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/bookmarked.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/burger_menu.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/camera.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/checkmark.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/checkmark_circle.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/chevron_down.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/chevron_left.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/chevron_right.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/chevron_up.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/comment_bubble.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/cross.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/cross_circle.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/envelope.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/event_calendar.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/external_link.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/eye.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/eye_crossed.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/filter.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/globe.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/heart.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/image.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/loudspeaker.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/marketplace.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/more_dots.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/more_dots_alt.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/mute.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/notification_bell.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/paperclip.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/pencil.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/pin.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/plus.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/plus_circle.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/privacy_lock.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/search.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/share_arrow.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/share_arrow_outline.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/sort.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/thanks.svg +1 -0
- package/src/lib/Icon/icons/24x24/svg/trash_can.svg +1 -0
- package/src/lib/Icon/icons/32x32/index.ts +179 -0
- package/src/lib/Icon/icons/32x32/svg/address_book.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/baby_toy.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/bicycle.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/bookmark.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/books.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/bubble_heart_filled.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/bubble_heart_outline.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/buildings.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/burger_menu.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/business.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/business_profile.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/camera.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/camera_crossed.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/car.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/carrot.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/chat.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/checkmark_circle.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/christmas_tree.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/clipboard.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/clothing.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/cocktail.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/comment_bubble.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/compass.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/computer.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/couch.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/credit_card.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/cross_circle.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/cutlery.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/drill_tool.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/email.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/envelope.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/event_calendar_check.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/event_calendar_date.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/event_calendar_plus.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/exchange.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/eye.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/eye_crossed.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/gift.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/group.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/healthcare.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/heart.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/house.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/image.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/info.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/invite_neighbour.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/key.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/kitchen_pot.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/list.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/log_out.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/loudspeaker.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/map.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/marketplace.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/miscellaneous_other.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/more_dots.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/more_dots_alt.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/music.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/nebenan.de.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/neighbour.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/notification_bell.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/organisation.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/paper_form_empty.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/paper_form_filled.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/paperclip.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/paw.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/pencil.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/pin.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/pins.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/plant.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/plus.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/plus_circle.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/post.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/privacy_lock.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/qr_code.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/search.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/settings_cog.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/shopping_bag.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/shopping_cart.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/special_place.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/suitcase.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/supporter.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/tennis_ball.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/thanks.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/trash_can.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/truck.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/user.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/user_profile.svg +1 -0
- package/src/lib/Icon/icons/32x32/svg/wellness.svg +1 -0
- package/src/lib/Icon/icons/index.ts +9 -0
- package/src/lib/IconButton/IconButton.module.scss +36 -0
- package/src/lib/IconButton/IconButton.spec.tsx +56 -0
- package/src/lib/IconButton/IconButton.stories.tsx +36 -0
- package/src/lib/IconButton/IconButton.tsx +25 -0
- package/{lib/IconButton/IconButton.types.d.ts → src/lib/IconButton/IconButton.types.ts} +10 -10
- package/src/lib/IconButton/utils.ts +6 -0
- package/src/lib/Image/Image.spec.tsx +10 -0
- package/src/lib/Image/Image.tsx +7 -0
- package/src/lib/Image/Image.type.tsx +5 -0
- package/src/lib/LabelPill/LabelPill.module.scss +33 -0
- package/src/lib/LabelPill/LabelPill.spec.tsx +23 -0
- package/src/lib/LabelPill/LabelPill.stories.tsx +31 -0
- package/src/lib/LabelPill/LabelPill.tsx +16 -0
- package/src/lib/LabelPill/LabelPill.types.ts +4 -0
- package/src/lib/Legend/Legend.module.scss +9 -0
- package/src/lib/Legend/Legend.spec.tsx +39 -0
- package/src/lib/Legend/Legend.stories.ts +39 -0
- package/src/lib/Legend/Legend.tsx +19 -0
- package/src/lib/Legend/Legend.types.ts +5 -0
- package/src/lib/MenuItem/MenuItem.module.scss +70 -0
- package/src/lib/MenuItem/MenuItem.spec.tsx +47 -0
- package/src/lib/MenuItem/MenuItem.stories.tsx +97 -0
- package/src/lib/MenuItem/MenuItem.tsx +34 -0
- package/src/lib/MenuItem/MenuItem.types.ts +10 -0
- package/src/lib/NotificationBubble/NotificationBubble.module.scss +30 -0
- package/src/lib/NotificationBubble/NotificationBubble.spec.tsx +36 -0
- package/src/lib/NotificationBubble/NotificationBubble.stories.tsx +56 -0
- package/src/lib/NotificationBubble/NotificationBubble.tsx +34 -0
- package/{lib/NotificationBubble/NotificationBubble.types.d.ts → src/lib/NotificationBubble/NotificationBubble.types.tsx} +3 -2
- package/src/lib/Thumbnail/Thumbnail.module.scss +67 -0
- package/src/lib/Thumbnail/Thumbnail.spec.tsx +51 -0
- package/src/lib/Thumbnail/Thumbnail.stories.tsx +242 -0
- package/src/lib/Thumbnail/Thumbnail.tsx +28 -0
- package/src/lib/Thumbnail/Thumbnail.type.tsx +18 -0
- package/src/lib/Toggle/Toggle.module.scss +53 -0
- package/src/lib/Toggle/Toggle.spec.tsx +23 -0
- package/src/lib/Toggle/Toggle.stories.tsx +38 -0
- package/src/lib/Toggle/Toggle.tsx +32 -0
- package/{lib/Toggle/Toggle.types.d.ts → src/lib/Toggle/Toggle.types.ts} +3 -2
- package/src/lib/ToggleInput/ToggleInput.module.scss +33 -0
- package/src/lib/ToggleInput/ToggleInput.spec.tsx +45 -0
- package/src/lib/ToggleInput/ToggleInput.stories.tsx +62 -0
- package/src/lib/ToggleInput/ToggleInput.tsx +40 -0
- package/{lib/ToggleInput/ToggleInput.types.d.ts → src/lib/ToggleInput/ToggleInput.types.ts} +5 -3
- package/src/lib/Typography/Typography.module.scss +61 -0
- package/src/lib/Typography/Typography.spec.tsx +60 -0
- package/src/lib/Typography/Typography.stories.tsx +45 -0
- package/src/lib/Typography/Typography.tsx +26 -0
- package/src/lib/Typography/Typography.types.ts +28 -0
- package/src/styles/_design-tokens.scss +1 -0
- package/src/styles/_fonts.scss +0 -0
- package/src/styles/_functions.scss +17 -0
- package/src/styles/_mixins.scss +33 -0
- package/src/styles/index.scss +3 -0
- package/src/styles/reset.scss +65 -0
- package/tsconfig.json +24 -0
- package/tsconfig.lib.json +35 -0
- package/tsconfig.spec.json +20 -0
- package/tsconfig.storybook.json +31 -0
- package/vite.config.ts +57 -0
- package/index.js +0 -93
- package/index.mjs +0 -4258
- package/lib/BaseButton/BaseButton.d.ts +0 -11
- package/lib/Card/Card.d.ts +0 -3
- package/lib/Card/Card.types.d.ts +0 -10
- package/lib/Card/Card.utils.d.ts +0 -3
- package/lib/Card/CardBody/CardBody.d.ts +0 -3
- package/lib/Card/CardBody/CardBody.types.d.ts +0 -5
- package/lib/Card/CardHeader/CardHeader.d.ts +0 -3
- package/lib/Card/CardHeader/CardHeader.type.d.ts +0 -10
- package/lib/ContentCreatorButton/ContentCreatorButton.d.ts +0 -3
- package/lib/Divider/Divider.d.ts +0 -3
- package/lib/Divider/Divider.types.d.ts +0 -6
- package/lib/Fieldset/Fieldset.d.ts +0 -3
- package/lib/Fieldset/Fieldset.types.d.ts +0 -8
- package/lib/Form/Form.d.ts +0 -3
- package/lib/Form/Form.types.d.ts +0 -10
- package/lib/Icon/Icon.d.ts +0 -4
- package/lib/Icon/Icon.types.d.ts +0 -18
- package/lib/Icon/icons/24x24/index.d.ts +0 -130
- package/lib/Icon/icons/32x32/index.d.ts +0 -265
- package/lib/Icon/icons/index.d.ts +0 -395
- package/lib/IconButton/IconButton.d.ts +0 -3
- package/lib/IconButton/utils.d.ts +0 -3
- package/lib/Image/Image.d.ts +0 -3
- package/lib/Image/Image.type.d.ts +0 -5
- package/lib/LabelPill/LabelPill.d.ts +0 -3
- package/lib/LabelPill/LabelPill.types.d.ts +0 -4
- package/lib/Legend/Legend.d.ts +0 -3
- package/lib/Legend/Legend.types.d.ts +0 -5
- package/lib/MenuItem/MenuItem.d.ts +0 -3
- package/lib/MenuItem/MenuItem.types.d.ts +0 -9
- package/lib/NotificationBubble/NotificationBubble.d.ts +0 -3
- package/lib/Toggle/Toggle.d.ts +0 -3
- package/lib/ToggleInput/ToggleInput.d.ts +0 -3
- package/lib/Typography/Typography.d.ts +0 -3
- package/lib/Typography/Typography.types.d.ts +0 -8
- package/style.css +0 -1
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { ButtonOwnProps } from '@mui/base';
|
|
3
|
-
export interface BaseButtonProps extends ButtonOwnProps {
|
|
4
|
-
ariaLabel?: string;
|
|
5
|
-
ariaLabelledBy?: string;
|
|
6
|
-
className?: string;
|
|
7
|
-
onClick: () => void;
|
|
8
|
-
ref?: React.ForwardedRef<null>;
|
|
9
|
-
}
|
|
10
|
-
declare const BaseButton: (props: BaseButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
export default BaseButton;
|
package/lib/Card/Card.d.ts
DELETED
package/lib/Card/Card.types.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
import { CardBodyProps } from './CardBody/CardBody.types';
|
|
3
|
-
import { CardHeaderProps } from './CardHeader/CardHeader.type';
|
|
4
|
-
export interface CardProps {
|
|
5
|
-
ariaLabel?: string;
|
|
6
|
-
as?: Extract<keyof JSX.IntrinsicElements, 'section' | 'div'>;
|
|
7
|
-
borderRadius?: boolean;
|
|
8
|
-
children: React.ReactElement<CardBodyProps | CardHeaderProps> | React.ReactElement<CardBodyProps | CardHeaderProps>[];
|
|
9
|
-
role?: string;
|
|
10
|
-
}
|
package/lib/Card/Card.utils.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
export declare const findAllowedElement: (elements: React.ReactNode, type: React.ElementType) => React.ReactNode;
|
|
3
|
-
export declare const filterAllowedElements: (elements: React.ReactNode, allowedElements: React.ElementType[]) => React.ReactNode[];
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { ComponentProps, ReactElement } from 'react';
|
|
2
|
-
import { BaseButton, Icon } from '@goodhood-web/ui';
|
|
3
|
-
import { TypographyProps } from '../../Typography/Typography.types';
|
|
4
|
-
export type CardHeaderProps = {
|
|
5
|
-
as?: Exclude<TypographyProps['as'], 'h1' | 'p' | 'span'>;
|
|
6
|
-
headline: string;
|
|
7
|
-
leftElement?: ReactElement<ComponentProps<typeof Icon | typeof BaseButton>>;
|
|
8
|
-
rightElement?: ReactElement<ComponentProps<typeof BaseButton>>;
|
|
9
|
-
type?: Exclude<TypographyProps['type'], 'h1'>;
|
|
10
|
-
};
|
package/lib/Divider/Divider.d.ts
DELETED
package/lib/Form/Form.d.ts
DELETED
package/lib/Form/Form.types.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { HTMLProps } from 'react';
|
|
2
|
-
type NativeFormProps = HTMLProps<HTMLFormElement>;
|
|
3
|
-
export type FormProps = {
|
|
4
|
-
ariaLabel?: NativeFormProps['aria-label'];
|
|
5
|
-
ariaLabelledBy?: NativeFormProps['aria-labelledby'];
|
|
6
|
-
children?: React.ReactNode;
|
|
7
|
-
className?: NativeFormProps['className'];
|
|
8
|
-
id?: NativeFormProps['id'];
|
|
9
|
-
};
|
|
10
|
-
export {};
|
package/lib/Icon/Icon.d.ts
DELETED
package/lib/Icon/Icon.types.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { AriaRole } from 'react';
|
|
2
|
-
import icons24 from './icons/24x24';
|
|
3
|
-
import icons32 from './icons/32x32';
|
|
4
|
-
export type Icon32 = keyof typeof icons32;
|
|
5
|
-
export type Icon24 = keyof typeof icons24;
|
|
6
|
-
type BaseIconProps = {
|
|
7
|
-
className?: string;
|
|
8
|
-
role?: Extract<AriaRole, 'presentation' | 'img'>;
|
|
9
|
-
title?: string;
|
|
10
|
-
};
|
|
11
|
-
export type IconProps = ({
|
|
12
|
-
name: Icon32;
|
|
13
|
-
size?: '32';
|
|
14
|
-
} & BaseIconProps) | ({
|
|
15
|
-
name: Icon24;
|
|
16
|
-
size: '24';
|
|
17
|
-
} & BaseIconProps);
|
|
18
|
-
export {};
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const IconsMap: {
|
|
3
|
-
readonly arrow_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
4
|
-
title?: string | undefined;
|
|
5
|
-
}>;
|
|
6
|
-
readonly arrow_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
7
|
-
title?: string | undefined;
|
|
8
|
-
}>;
|
|
9
|
-
readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
10
|
-
title?: string | undefined;
|
|
11
|
-
}>;
|
|
12
|
-
readonly bookmarked: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
13
|
-
title?: string | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
16
|
-
title?: string | undefined;
|
|
17
|
-
}>;
|
|
18
|
-
readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
19
|
-
title?: string | undefined;
|
|
20
|
-
}>;
|
|
21
|
-
readonly checkmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
22
|
-
title?: string | undefined;
|
|
23
|
-
}>;
|
|
24
|
-
readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
25
|
-
title?: string | undefined;
|
|
26
|
-
}>;
|
|
27
|
-
readonly chevron_down: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
28
|
-
title?: string | undefined;
|
|
29
|
-
}>;
|
|
30
|
-
readonly chevron_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
31
|
-
title?: string | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
readonly chevron_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
34
|
-
title?: string | undefined;
|
|
35
|
-
}>;
|
|
36
|
-
readonly chevron_up: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
37
|
-
title?: string | undefined;
|
|
38
|
-
}>;
|
|
39
|
-
readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
40
|
-
title?: string | undefined;
|
|
41
|
-
}>;
|
|
42
|
-
readonly cross: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
43
|
-
title?: string | undefined;
|
|
44
|
-
}>;
|
|
45
|
-
readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
46
|
-
title?: string | undefined;
|
|
47
|
-
}>;
|
|
48
|
-
readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
49
|
-
title?: string | undefined;
|
|
50
|
-
}>;
|
|
51
|
-
readonly event_calendar: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
52
|
-
title?: string | undefined;
|
|
53
|
-
}>;
|
|
54
|
-
readonly external_link: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
55
|
-
title?: string | undefined;
|
|
56
|
-
}>;
|
|
57
|
-
readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
58
|
-
title?: string | undefined;
|
|
59
|
-
}>;
|
|
60
|
-
readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
61
|
-
title?: string | undefined;
|
|
62
|
-
}>;
|
|
63
|
-
readonly filter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
64
|
-
title?: string | undefined;
|
|
65
|
-
}>;
|
|
66
|
-
readonly globe: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
67
|
-
title?: string | undefined;
|
|
68
|
-
}>;
|
|
69
|
-
readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
70
|
-
title?: string | undefined;
|
|
71
|
-
}>;
|
|
72
|
-
readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
73
|
-
title?: string | undefined;
|
|
74
|
-
}>;
|
|
75
|
-
readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
76
|
-
title?: string | undefined;
|
|
77
|
-
}>;
|
|
78
|
-
readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
79
|
-
title?: string | undefined;
|
|
80
|
-
}>;
|
|
81
|
-
readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
82
|
-
title?: string | undefined;
|
|
83
|
-
}>;
|
|
84
|
-
readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
85
|
-
title?: string | undefined;
|
|
86
|
-
}>;
|
|
87
|
-
readonly mute: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
88
|
-
title?: string | undefined;
|
|
89
|
-
}>;
|
|
90
|
-
readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
91
|
-
title?: string | undefined;
|
|
92
|
-
}>;
|
|
93
|
-
readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
94
|
-
title?: string | undefined;
|
|
95
|
-
}>;
|
|
96
|
-
readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
97
|
-
title?: string | undefined;
|
|
98
|
-
}>;
|
|
99
|
-
readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
100
|
-
title?: string | undefined;
|
|
101
|
-
}>;
|
|
102
|
-
readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
103
|
-
title?: string | undefined;
|
|
104
|
-
}>;
|
|
105
|
-
readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
106
|
-
title?: string | undefined;
|
|
107
|
-
}>;
|
|
108
|
-
readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
109
|
-
title?: string | undefined;
|
|
110
|
-
}>;
|
|
111
|
-
readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
112
|
-
title?: string | undefined;
|
|
113
|
-
}>;
|
|
114
|
-
readonly share_arrow: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
115
|
-
title?: string | undefined;
|
|
116
|
-
}>;
|
|
117
|
-
readonly share_arrow_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
118
|
-
title?: string | undefined;
|
|
119
|
-
}>;
|
|
120
|
-
readonly sort: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
121
|
-
title?: string | undefined;
|
|
122
|
-
}>;
|
|
123
|
-
readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
124
|
-
title?: string | undefined;
|
|
125
|
-
}>;
|
|
126
|
-
readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
127
|
-
title?: string | undefined;
|
|
128
|
-
}>;
|
|
129
|
-
};
|
|
130
|
-
export default IconsMap;
|
|
@@ -1,265 +0,0 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
|
-
declare const IconsMap: {
|
|
3
|
-
readonly address_book: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
4
|
-
title?: string | undefined;
|
|
5
|
-
}>;
|
|
6
|
-
readonly baby_toy: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
7
|
-
title?: string | undefined;
|
|
8
|
-
}>;
|
|
9
|
-
readonly bicycle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
10
|
-
title?: string | undefined;
|
|
11
|
-
}>;
|
|
12
|
-
readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
13
|
-
title?: string | undefined;
|
|
14
|
-
}>;
|
|
15
|
-
readonly books: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
16
|
-
title?: string | undefined;
|
|
17
|
-
}>;
|
|
18
|
-
readonly bubble_heart_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
19
|
-
title?: string | undefined;
|
|
20
|
-
}>;
|
|
21
|
-
readonly bubble_heart_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
22
|
-
title?: string | undefined;
|
|
23
|
-
}>;
|
|
24
|
-
readonly buildings: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
25
|
-
title?: string | undefined;
|
|
26
|
-
}>;
|
|
27
|
-
readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
28
|
-
title?: string | undefined;
|
|
29
|
-
}>;
|
|
30
|
-
readonly business: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
31
|
-
title?: string | undefined;
|
|
32
|
-
}>;
|
|
33
|
-
readonly business_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
34
|
-
title?: string | undefined;
|
|
35
|
-
}>;
|
|
36
|
-
readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
37
|
-
title?: string | undefined;
|
|
38
|
-
}>;
|
|
39
|
-
readonly camera_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
40
|
-
title?: string | undefined;
|
|
41
|
-
}>;
|
|
42
|
-
readonly car: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
43
|
-
title?: string | undefined;
|
|
44
|
-
}>;
|
|
45
|
-
readonly carrot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
46
|
-
title?: string | undefined;
|
|
47
|
-
}>;
|
|
48
|
-
readonly chat: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
49
|
-
title?: string | undefined;
|
|
50
|
-
}>;
|
|
51
|
-
readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
52
|
-
title?: string | undefined;
|
|
53
|
-
}>;
|
|
54
|
-
readonly christmas_tree: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
55
|
-
title?: string | undefined;
|
|
56
|
-
}>;
|
|
57
|
-
readonly clipboard: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
58
|
-
title?: string | undefined;
|
|
59
|
-
}>;
|
|
60
|
-
readonly clothing: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
61
|
-
title?: string | undefined;
|
|
62
|
-
}>;
|
|
63
|
-
readonly cocktail: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
64
|
-
title?: string | undefined;
|
|
65
|
-
}>;
|
|
66
|
-
readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
67
|
-
title?: string | undefined;
|
|
68
|
-
}>;
|
|
69
|
-
readonly compass: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
70
|
-
title?: string | undefined;
|
|
71
|
-
}>;
|
|
72
|
-
readonly computer: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
73
|
-
title?: string | undefined;
|
|
74
|
-
}>;
|
|
75
|
-
readonly couch: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
76
|
-
title?: string | undefined;
|
|
77
|
-
}>;
|
|
78
|
-
readonly credit_card: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
79
|
-
title?: string | undefined;
|
|
80
|
-
}>;
|
|
81
|
-
readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
82
|
-
title?: string | undefined;
|
|
83
|
-
}>;
|
|
84
|
-
readonly cutlery: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
85
|
-
title?: string | undefined;
|
|
86
|
-
}>;
|
|
87
|
-
readonly drill_tool: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
88
|
-
title?: string | undefined;
|
|
89
|
-
}>;
|
|
90
|
-
readonly email: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
91
|
-
title?: string | undefined;
|
|
92
|
-
}>;
|
|
93
|
-
readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
94
|
-
title?: string | undefined;
|
|
95
|
-
}>;
|
|
96
|
-
readonly event_calendar_check: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
97
|
-
title?: string | undefined;
|
|
98
|
-
}>;
|
|
99
|
-
readonly event_calendar_date: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
100
|
-
title?: string | undefined;
|
|
101
|
-
}>;
|
|
102
|
-
readonly event_calendar_plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
103
|
-
title?: string | undefined;
|
|
104
|
-
}>;
|
|
105
|
-
readonly exchange: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
106
|
-
title?: string | undefined;
|
|
107
|
-
}>;
|
|
108
|
-
readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
109
|
-
title?: string | undefined;
|
|
110
|
-
}>;
|
|
111
|
-
readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
112
|
-
title?: string | undefined;
|
|
113
|
-
}>;
|
|
114
|
-
readonly gift: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
115
|
-
title?: string | undefined;
|
|
116
|
-
}>;
|
|
117
|
-
readonly group: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
118
|
-
title?: string | undefined;
|
|
119
|
-
}>;
|
|
120
|
-
readonly healthcare: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
121
|
-
title?: string | undefined;
|
|
122
|
-
}>;
|
|
123
|
-
readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
124
|
-
title?: string | undefined;
|
|
125
|
-
}>;
|
|
126
|
-
readonly house: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
127
|
-
title?: string | undefined;
|
|
128
|
-
}>;
|
|
129
|
-
readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
130
|
-
title?: string | undefined;
|
|
131
|
-
}>;
|
|
132
|
-
readonly info: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
133
|
-
title?: string | undefined;
|
|
134
|
-
}>;
|
|
135
|
-
readonly invite_neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
136
|
-
title?: string | undefined;
|
|
137
|
-
}>;
|
|
138
|
-
readonly key: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
139
|
-
title?: string | undefined;
|
|
140
|
-
}>;
|
|
141
|
-
readonly kitchen_pot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
142
|
-
title?: string | undefined;
|
|
143
|
-
}>;
|
|
144
|
-
readonly list: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
145
|
-
title?: string | undefined;
|
|
146
|
-
}>;
|
|
147
|
-
readonly log_out: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
148
|
-
title?: string | undefined;
|
|
149
|
-
}>;
|
|
150
|
-
readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
151
|
-
title?: string | undefined;
|
|
152
|
-
}>;
|
|
153
|
-
readonly map: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
154
|
-
title?: string | undefined;
|
|
155
|
-
}>;
|
|
156
|
-
readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
157
|
-
title?: string | undefined;
|
|
158
|
-
}>;
|
|
159
|
-
readonly miscellaneous_other: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
160
|
-
title?: string | undefined;
|
|
161
|
-
}>;
|
|
162
|
-
readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
163
|
-
title?: string | undefined;
|
|
164
|
-
}>;
|
|
165
|
-
readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
166
|
-
title?: string | undefined;
|
|
167
|
-
}>;
|
|
168
|
-
readonly music: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
169
|
-
title?: string | undefined;
|
|
170
|
-
}>;
|
|
171
|
-
readonly nebenan_de: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
172
|
-
title?: string | undefined;
|
|
173
|
-
}>;
|
|
174
|
-
readonly neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
175
|
-
title?: string | undefined;
|
|
176
|
-
}>;
|
|
177
|
-
readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
178
|
-
title?: string | undefined;
|
|
179
|
-
}>;
|
|
180
|
-
readonly organisation: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
181
|
-
title?: string | undefined;
|
|
182
|
-
}>;
|
|
183
|
-
readonly paper_form_empty: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
184
|
-
title?: string | undefined;
|
|
185
|
-
}>;
|
|
186
|
-
readonly paper_form_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
187
|
-
title?: string | undefined;
|
|
188
|
-
}>;
|
|
189
|
-
readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
190
|
-
title?: string | undefined;
|
|
191
|
-
}>;
|
|
192
|
-
readonly paw: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
193
|
-
title?: string | undefined;
|
|
194
|
-
}>;
|
|
195
|
-
readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
196
|
-
title?: string | undefined;
|
|
197
|
-
}>;
|
|
198
|
-
readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
199
|
-
title?: string | undefined;
|
|
200
|
-
}>;
|
|
201
|
-
readonly pins: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
202
|
-
title?: string | undefined;
|
|
203
|
-
}>;
|
|
204
|
-
readonly plant: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
205
|
-
title?: string | undefined;
|
|
206
|
-
}>;
|
|
207
|
-
readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
208
|
-
title?: string | undefined;
|
|
209
|
-
}>;
|
|
210
|
-
readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
211
|
-
title?: string | undefined;
|
|
212
|
-
}>;
|
|
213
|
-
readonly post: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
214
|
-
title?: string | undefined;
|
|
215
|
-
}>;
|
|
216
|
-
readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
217
|
-
title?: string | undefined;
|
|
218
|
-
}>;
|
|
219
|
-
readonly qr_code: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
220
|
-
title?: string | undefined;
|
|
221
|
-
}>;
|
|
222
|
-
readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
223
|
-
title?: string | undefined;
|
|
224
|
-
}>;
|
|
225
|
-
readonly settings_cog: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
226
|
-
title?: string | undefined;
|
|
227
|
-
}>;
|
|
228
|
-
readonly shopping_bag: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
229
|
-
title?: string | undefined;
|
|
230
|
-
}>;
|
|
231
|
-
readonly shopping_cart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
232
|
-
title?: string | undefined;
|
|
233
|
-
}>;
|
|
234
|
-
readonly special_place: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
235
|
-
title?: string | undefined;
|
|
236
|
-
}>;
|
|
237
|
-
readonly suitcase: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
238
|
-
title?: string | undefined;
|
|
239
|
-
}>;
|
|
240
|
-
readonly supporter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
241
|
-
title?: string | undefined;
|
|
242
|
-
}>;
|
|
243
|
-
readonly tennis_ball: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
244
|
-
title?: string | undefined;
|
|
245
|
-
}>;
|
|
246
|
-
readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
247
|
-
title?: string | undefined;
|
|
248
|
-
}>;
|
|
249
|
-
readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
250
|
-
title?: string | undefined;
|
|
251
|
-
}>;
|
|
252
|
-
readonly truck: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
253
|
-
title?: string | undefined;
|
|
254
|
-
}>;
|
|
255
|
-
readonly user: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
256
|
-
title?: string | undefined;
|
|
257
|
-
}>;
|
|
258
|
-
readonly user_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
259
|
-
title?: string | undefined;
|
|
260
|
-
}>;
|
|
261
|
-
readonly wellness: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
262
|
-
title?: string | undefined;
|
|
263
|
-
}>;
|
|
264
|
-
};
|
|
265
|
-
export default IconsMap;
|