@ecohouse/ui 0.1.42 → 0.1.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +312 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -4
- package/dist/index.d.ts +40 -4
- package/dist/index.js +307 -39
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Button/Button.stories.tsx +5 -0
- package/src/components/Button/Button.tsx +34 -5
- package/src/components/Input/Input.tsx +6 -0
- package/src/components/LanguageSwitcher/LanguageSwitcher.tsx +1 -1
- package/src/components/RadioButton/RadioButton.stories.tsx +64 -0
- package/src/components/RadioButton/RadioButton.tsx +135 -0
- package/src/components/RadioButton/index.ts +2 -0
- package/src/components/SegmentedToggle/SegmentedToggle.tsx +21 -1
- package/src/components/Select/Select.tsx +12 -3
- package/src/components/index.ts +3 -0
- package/src/icons/Amenity/amenityPaths.ts +3 -10
- package/src/icons/Dram/DramIcon.tsx +14 -0
- package/src/icons/Dram/DramIcon.web.tsx +20 -0
- package/src/icons/Dram/dramPath.ts +2 -0
- package/src/icons/Dram/index.ts +1 -0
- package/src/icons/HouseRules/houseRulesPaths.ts +3 -3
- package/src/icons/MoonStars/MoonStarsIcon.tsx +27 -0
- package/src/icons/MoonStars/MoonStarsIcon.web.tsx +33 -0
- package/src/icons/MoonStars/index.ts +6 -0
- package/src/icons/MoonStars/moonStarsPaths.ts +7 -0
- package/src/icons/NoPets/NoPetsIcon.tsx +23 -0
- package/src/icons/NoPets/NoPetsIcon.web.tsx +29 -0
- package/src/icons/NoPets/index.ts +1 -0
- package/src/icons/NoPets/noPetsPaths.ts +8 -0
- package/src/icons/StarOutline/StarOutlineIcon.tsx +24 -0
- package/src/icons/StarOutline/StarOutlineIcon.web.tsx +30 -0
- package/src/icons/StarOutline/index.ts +1 -0
- package/src/icons/StarOutline/starOutlinePath.ts +2 -0
- package/src/icons/Sun/SunIcon.tsx +20 -0
- package/src/icons/Sun/SunIcon.web.tsx +26 -0
- package/src/icons/Sun/index.ts +1 -0
- package/src/icons/Sun/sunPath.ts +2 -0
- package/src/icons/Washer/WasherIcon.tsx +25 -0
- package/src/icons/Washer/WasherIcon.web.tsx +31 -0
- package/src/icons/Washer/index.ts +1 -0
- package/src/icons/Washer/washerPaths.ts +28 -0
- package/src/icons/index.ts +6 -0
- package/src/icons/registry.ts +18 -0
- package/src/index.ts +9 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import { colors } from "../../theme";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
import { NO_PETS_PATHS } from "./noPetsPaths";
|
|
5
|
+
|
|
6
|
+
export function NoPetsIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }: IconProps) {
|
|
7
|
+
return (
|
|
8
|
+
<Svg width={size} height={size} viewBox="0 0 20 20" fill="none">
|
|
9
|
+
{NO_PETS_PATHS.map((path, index) => (
|
|
10
|
+
<Path
|
|
11
|
+
key={`no-pets-${index}`}
|
|
12
|
+
d={path}
|
|
13
|
+
stroke={color}
|
|
14
|
+
strokeWidth={strokeWidth}
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
strokeLinejoin="round"
|
|
17
|
+
/>
|
|
18
|
+
))}
|
|
19
|
+
</Svg>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
export { NO_PETS_PATHS } from "./noPetsPaths";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { colors } from "../../theme";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
import { NO_PETS_PATHS } from "./noPetsPaths";
|
|
4
|
+
|
|
5
|
+
export function NoPetsIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }: IconProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width={size}
|
|
9
|
+
height={size}
|
|
10
|
+
viewBox="0 0 20 20"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
aria-hidden
|
|
14
|
+
>
|
|
15
|
+
{NO_PETS_PATHS.map((path, index) => (
|
|
16
|
+
<path
|
|
17
|
+
key={`no-pets-${index}`}
|
|
18
|
+
d={path}
|
|
19
|
+
stroke={color}
|
|
20
|
+
strokeWidth={strokeWidth}
|
|
21
|
+
strokeLinecap="round"
|
|
22
|
+
strokeLinejoin="round"
|
|
23
|
+
/>
|
|
24
|
+
))}
|
|
25
|
+
</svg>
|
|
26
|
+
);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export { NO_PETS_PATHS } from "./noPetsPaths";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { NoPetsIcon, NO_PETS_PATHS } from "./NoPetsIcon";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const NO_PETS_PATHS = [
|
|
2
|
+
"M9.30729 9.29492C8.71562 9.55326 8.32062 10.2174 7.64062 11.4558C6.85562 12.8749 5.26896 12.9933 4.87312 14.1983C4.79229 14.4191 4.75229 14.7624 4.75396 14.9999C4.75396 15.9799 5.40979 16.6666 6.25396 16.6666C7.30312 16.6666 8.75396 15.8333 10.004 15.8333C11.254 15.8333 12.7048 16.6666 13.754 16.6666C14.5265 16.6666 15.1406 16.0924 15.2398 15.2433",
|
|
3
|
+
"M16.8222 6.73435C16.7151 6.6891 16.6001 6.66586 16.4838 6.66602H16.4713C15.8588 6.67602 15.1713 7.29102 14.8105 8.22102C14.378 9.33352 14.5772 10.471 15.2588 10.7643C15.3663 10.8102 15.4813 10.8327 15.5972 10.8327C16.213 10.8327 16.9097 10.2143 17.273 9.27768C17.703 8.16518 17.4997 7.02768 16.8222 6.73435Z",
|
|
4
|
+
"M9.16562 5.82732C9.17486 5.62532 9.16369 5.42291 9.13229 5.22315C8.96312 4.14232 8.25979 3.33398 7.52229 3.33398C7.29304 3.33531 7.07077 3.41301 6.89062 3.55482",
|
|
5
|
+
"M13.7119 5.61149C13.8903 4.46482 13.3994 3.44982 12.6119 3.34315C12.5672 3.33696 12.5221 3.3339 12.4769 3.33399C11.7394 3.33399 11.0369 4.14232 10.8686 5.22315C10.6903 6.36982 11.1811 7.38482 11.9686 7.49149C12.0136 7.49732 12.0586 7.50065 12.1036 7.50065C12.8411 7.50065 13.5453 6.68899 13.7119 5.61149Z",
|
|
6
|
+
"M4.74152 10.7643C5.42152 10.471 5.61985 9.33185 5.18819 8.22102C4.82485 7.28435 4.12902 6.66602 3.51402 6.66602C3.39735 6.66602 3.28319 6.68852 3.17485 6.73435C2.49485 7.02768 2.29652 8.16685 2.72819 9.27768C3.09152 10.2143 3.78735 10.8327 4.40235 10.8327C4.51902 10.8327 4.63319 10.8102 4.74152 10.7643Z",
|
|
7
|
+
"M2.5 2.5L17.5 17.5",
|
|
8
|
+
] as const;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import { colors } from "../../theme";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
import { STAR_OUTLINE_PATH } from "./starOutlinePath";
|
|
5
|
+
|
|
6
|
+
export function StarOutlineIcon({
|
|
7
|
+
size = 24,
|
|
8
|
+
color = colors.grey200,
|
|
9
|
+
strokeWidth = 1.35,
|
|
10
|
+
}: IconProps) {
|
|
11
|
+
return (
|
|
12
|
+
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none">
|
|
13
|
+
<Path
|
|
14
|
+
d={STAR_OUTLINE_PATH}
|
|
15
|
+
stroke={color}
|
|
16
|
+
strokeWidth={strokeWidth}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
</Svg>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export { STAR_OUTLINE_PATH } from "./starOutlinePath";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { colors } from "../../theme";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
import { STAR_OUTLINE_PATH } from "./starOutlinePath";
|
|
4
|
+
|
|
5
|
+
export function StarOutlineIcon({
|
|
6
|
+
size = 24,
|
|
7
|
+
color = colors.grey200,
|
|
8
|
+
strokeWidth = 1.35,
|
|
9
|
+
}: IconProps) {
|
|
10
|
+
return (
|
|
11
|
+
<svg
|
|
12
|
+
width={size}
|
|
13
|
+
height={size}
|
|
14
|
+
viewBox="0 0 24 24"
|
|
15
|
+
fill="none"
|
|
16
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
17
|
+
aria-hidden
|
|
18
|
+
>
|
|
19
|
+
<path
|
|
20
|
+
d={STAR_OUTLINE_PATH}
|
|
21
|
+
stroke={color}
|
|
22
|
+
strokeWidth={strokeWidth}
|
|
23
|
+
strokeLinecap="round"
|
|
24
|
+
strokeLinejoin="round"
|
|
25
|
+
/>
|
|
26
|
+
</svg>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { STAR_OUTLINE_PATH } from "./starOutlinePath";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { StarOutlineIcon, STAR_OUTLINE_PATH } from "./StarOutlineIcon";
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import { colors } from "../../theme";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
import { SUN_PATH } from "./sunPath";
|
|
5
|
+
|
|
6
|
+
export function SunIcon({ size = 16, color = colors.primary, strokeWidth = 1.5 }: IconProps) {
|
|
7
|
+
return (
|
|
8
|
+
<Svg width={size} height={size} viewBox="0 0 16 16" fill="none">
|
|
9
|
+
<Path
|
|
10
|
+
d={SUN_PATH}
|
|
11
|
+
stroke={color}
|
|
12
|
+
strokeWidth={strokeWidth}
|
|
13
|
+
strokeLinecap="round"
|
|
14
|
+
strokeLinejoin="round"
|
|
15
|
+
/>
|
|
16
|
+
</Svg>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export { SUN_PATH } from "./sunPath";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { colors } from "../../theme";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
import { SUN_PATH } from "./sunPath";
|
|
4
|
+
|
|
5
|
+
export function SunIcon({ size = 16, color = colors.primary, strokeWidth = 1.5 }: IconProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width={size}
|
|
9
|
+
height={size}
|
|
10
|
+
viewBox="0 0 16 16"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
aria-hidden
|
|
14
|
+
>
|
|
15
|
+
<path
|
|
16
|
+
d={SUN_PATH}
|
|
17
|
+
stroke={color}
|
|
18
|
+
strokeWidth={strokeWidth}
|
|
19
|
+
strokeLinecap="round"
|
|
20
|
+
strokeLinejoin="round"
|
|
21
|
+
/>
|
|
22
|
+
</svg>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export { SUN_PATH } from "./sunPath";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SunIcon, SUN_PATH } from "./SunIcon";
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const SUN_PATH =
|
|
2
|
+
"M8 1.33333V2.66667M8 13.3333V14.6667M1.33333 8H2.66667M13.3333 8H14.6667M3.28667 3.28667L4.22667 4.22667M11.7733 11.7733L12.7133 12.7133M12.7133 3.28667L11.7733 4.22667M4.22667 11.7733L3.28667 12.7133M10.6667 8C10.6667 9.47276 9.47276 10.6667 8 10.6667C6.52724 10.6667 5.33333 9.47276 5.33333 8C5.33333 6.52724 6.52724 5.33333 8 5.33333C9.47276 5.33333 10.6667 6.52724 10.6667 8Z";
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import Svg, { Path } from "react-native-svg";
|
|
2
|
+
import { colors } from "../../theme";
|
|
3
|
+
import type { IconProps } from "../types";
|
|
4
|
+
import { WASHER_PATHS } from "./washerPaths";
|
|
5
|
+
|
|
6
|
+
export function WasherIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }: IconProps) {
|
|
7
|
+
return (
|
|
8
|
+
<Svg width={size} height={size} viewBox="0 0 20 20" fill="none">
|
|
9
|
+
{WASHER_PATHS.map((path, index) => {
|
|
10
|
+
const filled = path.fill === true;
|
|
11
|
+
return (
|
|
12
|
+
<Path
|
|
13
|
+
key={`washer-${index}`}
|
|
14
|
+
d={path.d}
|
|
15
|
+
fill={filled ? color : "none"}
|
|
16
|
+
stroke={filled ? undefined : color}
|
|
17
|
+
strokeWidth={filled ? undefined : strokeWidth}
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
})}
|
|
21
|
+
</Svg>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export { WASHER_PATHS } from "./washerPaths";
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { colors } from "../../theme";
|
|
2
|
+
import type { IconProps } from "../types";
|
|
3
|
+
import { WASHER_PATHS } from "./washerPaths";
|
|
4
|
+
|
|
5
|
+
export function WasherIcon({ size = 20, color = colors.white, strokeWidth = 1.5 }: IconProps) {
|
|
6
|
+
return (
|
|
7
|
+
<svg
|
|
8
|
+
width={size}
|
|
9
|
+
height={size}
|
|
10
|
+
viewBox="0 0 20 20"
|
|
11
|
+
fill="none"
|
|
12
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
+
aria-hidden
|
|
14
|
+
>
|
|
15
|
+
{WASHER_PATHS.map((path, index) => {
|
|
16
|
+
const filled = path.fill === true;
|
|
17
|
+
return (
|
|
18
|
+
<path
|
|
19
|
+
key={`washer-${index}`}
|
|
20
|
+
d={path.d}
|
|
21
|
+
fill={filled ? color : "none"}
|
|
22
|
+
stroke={filled ? undefined : color}
|
|
23
|
+
strokeWidth={filled ? undefined : strokeWidth}
|
|
24
|
+
/>
|
|
25
|
+
);
|
|
26
|
+
})}
|
|
27
|
+
</svg>
|
|
28
|
+
);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
export { WASHER_PATHS } from "./washerPaths";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { WasherIcon, WASHER_PATHS } from "./WasherIcon";
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface WasherPathDefinition {
|
|
2
|
+
d: string;
|
|
3
|
+
fill?: boolean;
|
|
4
|
+
strokeWidth?: number;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export const WASHER_PATHS: readonly WasherPathDefinition[] = [
|
|
8
|
+
{
|
|
9
|
+
d: "M15.832 1.66602H4.16536C3.70513 1.66602 3.33203 2.03911 3.33203 2.49935V17.4993C3.33203 17.9596 3.70513 18.3327 4.16536 18.3327H15.832C16.2923 18.3327 16.6654 17.9596 16.6654 17.4993V2.49935C16.6654 2.03911 16.2923 1.66602 15.832 1.66602Z",
|
|
10
|
+
strokeWidth: 1.5,
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
d: "M3.33203 4.99935C3.33203 5.4596 3.70513 5.83268 4.16536 5.83268H15.832C16.2923 5.83268 16.6654 5.4596 16.6654 4.99935V2.49935C16.6654 2.03911 16.2923 1.66602 15.832 1.66602H4.16536C3.70513 1.66602 3.33203 2.03911 3.33203 2.49935V4.99935Z",
|
|
14
|
+
strokeWidth: 1.5,
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
d: "M5.83333 4.58268C6.29357 4.58268 6.66667 4.20959 6.66667 3.74935C6.66667 3.28911 6.29357 2.91602 5.83333 2.91602C5.3731 2.91602 5 3.28911 5 3.74935C5 4.20959 5.3731 4.58268 5.83333 4.58268Z",
|
|
18
|
+
fill: true,
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
d: "M8.33333 4.58268C8.79357 4.58268 9.16667 4.20959 9.16667 3.74935C9.16667 3.28911 8.79357 2.91602 8.33333 2.91602C7.8731 2.91602 7.5 3.28911 7.5 3.74935C7.5 4.20959 7.8731 4.58268 8.33333 4.58268Z",
|
|
22
|
+
fill: true,
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
d: "M9.9987 14.9993C11.6095 14.9993 12.9154 13.6935 12.9154 12.0827C12.9154 10.4719 11.6095 9.16602 9.9987 9.16602C8.38787 9.16602 7.08203 10.4719 7.08203 12.0827C7.08203 13.6935 8.38787 14.9993 9.9987 14.9993Z",
|
|
26
|
+
strokeWidth: 1.5,
|
|
27
|
+
},
|
|
28
|
+
];
|
package/src/icons/index.ts
CHANGED
|
@@ -55,6 +55,7 @@ export { FiltersIcon } from "./Filters";
|
|
|
55
55
|
export { FullscreenIcon } from "./Fullscreen";
|
|
56
56
|
export { CutleryIcon } from "./Cutlery";
|
|
57
57
|
export { DollarIcon } from "./Dollar";
|
|
58
|
+
export { DramIcon } from "./Dram";
|
|
58
59
|
export { DragHandleIcon } from "./DragHandle";
|
|
59
60
|
export { HeartIcon } from "./Heart";
|
|
60
61
|
export { HeadsetIcon } from "./Headset";
|
|
@@ -80,8 +81,10 @@ export { MapCollapseIcon, MapExpandIcon } from "./MapControls";
|
|
|
80
81
|
export { MenuIcon } from "./Menu";
|
|
81
82
|
export type { MenuIconProps } from "./Menu";
|
|
82
83
|
export { MenuLinesIcon } from "./MenuLines";
|
|
84
|
+
export { MoonStarsIcon } from "./MoonStars";
|
|
83
85
|
export { MoreHorizontalIcon } from "./MoreHorizontal";
|
|
84
86
|
export { NavigateIcon } from "./Navigate";
|
|
87
|
+
export { NoPetsIcon } from "./NoPets";
|
|
85
88
|
export { PhoneIcon } from "./Phone";
|
|
86
89
|
export { PlusIcon } from "./Plus";
|
|
87
90
|
export { MinusIcon } from "./Minus";
|
|
@@ -94,10 +97,13 @@ export { SidebarIcon } from "./Sidebar";
|
|
|
94
97
|
export { SortIcon } from "./Sort";
|
|
95
98
|
export { StarIcon } from "./Star";
|
|
96
99
|
export { StarFilledIcon } from "./StarFilled";
|
|
100
|
+
export { StarOutlineIcon } from "./StarOutline";
|
|
101
|
+
export { SunIcon } from "./Sun";
|
|
97
102
|
export { TableViewIcon } from "./TableView";
|
|
98
103
|
export { UserIcon } from "./User";
|
|
99
104
|
export { UsersAltIcon } from "./UsersAlt";
|
|
100
105
|
export { VideoIcon } from "./Video";
|
|
101
106
|
export { VideoOffIcon } from "./VideoOff";
|
|
107
|
+
export { WasherIcon } from "./Washer";
|
|
102
108
|
export { ZoomOutIcon } from "./ZoomOut";
|
|
103
109
|
export type { StarIconProps } from "./Star";
|
package/src/icons/registry.ts
CHANGED
|
@@ -44,6 +44,7 @@ import { FiltersIcon } from "./Filters";
|
|
|
44
44
|
import { FullscreenIcon } from "./Fullscreen";
|
|
45
45
|
import { CutleryIcon } from "./Cutlery";
|
|
46
46
|
import { DollarIcon } from "./Dollar";
|
|
47
|
+
import { DramIcon } from "./Dram";
|
|
47
48
|
import { DragHandleIcon } from "./DragHandle";
|
|
48
49
|
import { HeartIcon } from "./Heart";
|
|
49
50
|
import { HeadsetIcon } from "./Headset";
|
|
@@ -68,8 +69,10 @@ import { MapCollapseIcon, MapExpandIcon } from "./MapControls";
|
|
|
68
69
|
import { MenuIcon } from "./Menu";
|
|
69
70
|
import { MenuLinesIcon } from "./MenuLines";
|
|
70
71
|
import { MinusIcon } from "./Minus";
|
|
72
|
+
import { MoonStarsIcon } from "./MoonStars";
|
|
71
73
|
import { MoreHorizontalIcon } from "./MoreHorizontal";
|
|
72
74
|
import { NavigateIcon } from "./Navigate";
|
|
75
|
+
import { NoPetsIcon } from "./NoPets";
|
|
73
76
|
import { PhoneIcon } from "./Phone";
|
|
74
77
|
import { PlusIcon } from "./Plus";
|
|
75
78
|
import { RefreshIcon } from "./Refresh";
|
|
@@ -81,11 +84,14 @@ import { SidebarIcon } from "./Sidebar";
|
|
|
81
84
|
import { SortIcon } from "./Sort";
|
|
82
85
|
import { StarIcon } from "./Star";
|
|
83
86
|
import { StarFilledIcon } from "./StarFilled";
|
|
87
|
+
import { StarOutlineIcon } from "./StarOutline";
|
|
88
|
+
import { SunIcon } from "./Sun";
|
|
84
89
|
import { TableViewIcon } from "./TableView";
|
|
85
90
|
import { UserIcon } from "./User";
|
|
86
91
|
import { UsersAltIcon } from "./UsersAlt";
|
|
87
92
|
import { VideoIcon } from "./Video";
|
|
88
93
|
import { VideoOffIcon } from "./VideoOff";
|
|
94
|
+
import { WasherIcon } from "./Washer";
|
|
89
95
|
import { ZoomOutIcon } from "./ZoomOut";
|
|
90
96
|
import type { IconComponent } from "./types";
|
|
91
97
|
|
|
@@ -145,8 +151,10 @@ export const icons = {
|
|
|
145
151
|
menu: MenuIcon,
|
|
146
152
|
menuLines: MenuLinesIcon,
|
|
147
153
|
minus: MinusIcon,
|
|
154
|
+
moonStars: MoonStarsIcon,
|
|
148
155
|
moreHorizontal: MoreHorizontalIcon,
|
|
149
156
|
navigate: NavigateIcon,
|
|
157
|
+
noPets: NoPetsIcon,
|
|
150
158
|
noSmoking: NoSmokingIcon,
|
|
151
159
|
paw: PawIcon,
|
|
152
160
|
phone: PhoneIcon,
|
|
@@ -165,6 +173,8 @@ export const icons = {
|
|
|
165
173
|
sort: SortIcon,
|
|
166
174
|
star: StarIcon,
|
|
167
175
|
starFilled: StarFilledIcon,
|
|
176
|
+
starOutline: StarOutlineIcon,
|
|
177
|
+
sun: SunIcon,
|
|
168
178
|
tableView: TableViewIcon,
|
|
169
179
|
tooltipArrow: TooltipArrowIcon,
|
|
170
180
|
trash: TrashIcon,
|
|
@@ -172,8 +182,10 @@ export const icons = {
|
|
|
172
182
|
usersAlt: UsersAltIcon,
|
|
173
183
|
video: VideoIcon,
|
|
174
184
|
videoOff: VideoOffIcon,
|
|
185
|
+
washer: WasherIcon,
|
|
175
186
|
cutlery: CutleryIcon,
|
|
176
187
|
dollar: DollarIcon,
|
|
188
|
+
dram: DramIcon,
|
|
177
189
|
dragHandle: DragHandleIcon,
|
|
178
190
|
eye: EyeIcon,
|
|
179
191
|
image: ImageIcon,
|
|
@@ -234,7 +246,10 @@ export const iconGroups = {
|
|
|
234
246
|
"zoomOut",
|
|
235
247
|
"star",
|
|
236
248
|
"starFilled",
|
|
249
|
+
"starOutline",
|
|
250
|
+
"sun",
|
|
237
251
|
"minus",
|
|
252
|
+
"moonStars",
|
|
238
253
|
"moreHorizontal",
|
|
239
254
|
"plus",
|
|
240
255
|
"refresh",
|
|
@@ -251,6 +266,7 @@ export const iconGroups = {
|
|
|
251
266
|
"clockFilled",
|
|
252
267
|
"guests",
|
|
253
268
|
"lock",
|
|
269
|
+
"noPets",
|
|
254
270
|
"noSmoking",
|
|
255
271
|
"paw",
|
|
256
272
|
"qrCode",
|
|
@@ -260,6 +276,7 @@ export const iconGroups = {
|
|
|
260
276
|
"usersAlt",
|
|
261
277
|
"video",
|
|
262
278
|
"videoOff",
|
|
279
|
+
"washer",
|
|
263
280
|
"whatsApp",
|
|
264
281
|
],
|
|
265
282
|
communication: ["mail", "phone"],
|
|
@@ -268,6 +285,7 @@ export const iconGroups = {
|
|
|
268
285
|
"areaExpand",
|
|
269
286
|
"cutlery",
|
|
270
287
|
"dollar",
|
|
288
|
+
"dram",
|
|
271
289
|
"eye",
|
|
272
290
|
"globe",
|
|
273
291
|
"layoutGrid",
|
package/src/index.ts
CHANGED
|
@@ -34,6 +34,7 @@ export {
|
|
|
34
34
|
RatingInput,
|
|
35
35
|
CommentCard,
|
|
36
36
|
Range,
|
|
37
|
+
RadioButton,
|
|
37
38
|
} from "./components";
|
|
38
39
|
export type {
|
|
39
40
|
AvatarProps,
|
|
@@ -94,6 +95,8 @@ export type {
|
|
|
94
95
|
CommentCardProps,
|
|
95
96
|
RangeProps,
|
|
96
97
|
RangeValue,
|
|
98
|
+
RadioButtonProps,
|
|
99
|
+
RadioButtonVariant,
|
|
97
100
|
} from "./components";
|
|
98
101
|
|
|
99
102
|
export {
|
|
@@ -160,6 +163,7 @@ export {
|
|
|
160
163
|
ClockFilledIcon,
|
|
161
164
|
CopyIcon,
|
|
162
165
|
DownloadIcon,
|
|
166
|
+
DramIcon,
|
|
163
167
|
QrCodeIcon,
|
|
164
168
|
ShareIcon,
|
|
165
169
|
TooltipArrowIcon,
|
|
@@ -194,7 +198,9 @@ export {
|
|
|
194
198
|
MenuIcon,
|
|
195
199
|
MenuLinesIcon,
|
|
196
200
|
MinusIcon,
|
|
201
|
+
MoonStarsIcon,
|
|
197
202
|
NavigateIcon,
|
|
203
|
+
NoPetsIcon,
|
|
198
204
|
PhoneIcon,
|
|
199
205
|
PlusIcon,
|
|
200
206
|
RefreshIcon,
|
|
@@ -206,11 +212,14 @@ export {
|
|
|
206
212
|
SortIcon,
|
|
207
213
|
StarIcon,
|
|
208
214
|
StarFilledIcon,
|
|
215
|
+
StarOutlineIcon,
|
|
216
|
+
SunIcon,
|
|
209
217
|
TableViewIcon,
|
|
210
218
|
UserIcon,
|
|
211
219
|
UsersAltIcon,
|
|
212
220
|
VideoIcon,
|
|
213
221
|
VideoOffIcon,
|
|
222
|
+
WasherIcon,
|
|
214
223
|
CutleryIcon,
|
|
215
224
|
DollarIcon,
|
|
216
225
|
DragHandleIcon,
|