@adiraku/react-native-ui 0.1.15 → 0.1.16
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/lib/commonjs/components/TextArea/TextArea.style.js +4 -5
- package/lib/commonjs/components/TextArea/TextArea.style.js.map +1 -1
- package/lib/commonjs/components/coachmark/coachmark.style.js +3 -3
- package/lib/commonjs/components/coachmark/coachmark.style.js.map +1 -1
- package/lib/commonjs/components/slider-indicator/slider-indicator.style.js +3 -3
- package/lib/commonjs/components/slider-indicator/slider-indicator.style.js.map +1 -1
- package/lib/commonjs/icons/actions/IconEmail.js +32 -0
- package/lib/commonjs/icons/actions/IconEmail.js.map +1 -0
- package/lib/commonjs/icons/actions/IconHamburger.js +34 -0
- package/lib/commonjs/icons/actions/IconHamburger.js.map +1 -0
- package/lib/commonjs/icons/actions/IconOther.js +37 -0
- package/lib/commonjs/icons/actions/IconOther.js.map +1 -0
- package/lib/commonjs/icons/actions/IconReload.js +32 -0
- package/lib/commonjs/icons/actions/IconReload.js.map +1 -0
- package/lib/commonjs/icons/actions/IconSeeHide.js +37 -0
- package/lib/commonjs/icons/actions/IconSeeHide.js.map +1 -0
- package/lib/commonjs/icons/actions/IconSeeShow.js +35 -0
- package/lib/commonjs/icons/actions/IconSeeShow.js.map +1 -0
- package/lib/commonjs/icons/actions/IconSorting.js +38 -0
- package/lib/commonjs/icons/actions/IconSorting.js.map +1 -0
- package/lib/commonjs/icons/index.js +49 -0
- package/lib/commonjs/icons/index.js.map +1 -1
- package/lib/module/components/TextArea/TextArea.style.js +4 -5
- package/lib/module/components/TextArea/TextArea.style.js.map +1 -1
- package/lib/module/components/coachmark/coachmark.style.js +3 -3
- package/lib/module/components/coachmark/coachmark.style.js.map +1 -1
- package/lib/module/components/slider-indicator/slider-indicator.style.js +4 -4
- package/lib/module/components/slider-indicator/slider-indicator.style.js.map +1 -1
- package/lib/module/icons/actions/IconEmail.js +23 -0
- package/lib/module/icons/actions/IconEmail.js.map +1 -0
- package/lib/module/icons/actions/IconHamburger.js +25 -0
- package/lib/module/icons/actions/IconHamburger.js.map +1 -0
- package/lib/module/icons/actions/IconOther.js +28 -0
- package/lib/module/icons/actions/IconOther.js.map +1 -0
- package/lib/module/icons/actions/IconReload.js +23 -0
- package/lib/module/icons/actions/IconReload.js.map +1 -0
- package/lib/module/icons/actions/IconSeeHide.js +28 -0
- package/lib/module/icons/actions/IconSeeHide.js.map +1 -0
- package/lib/module/icons/actions/IconSeeShow.js +26 -0
- package/lib/module/icons/actions/IconSeeShow.js.map +1 -0
- package/lib/module/icons/actions/IconSorting.js +29 -0
- package/lib/module/icons/actions/IconSorting.js.map +1 -0
- package/lib/module/icons/index.js +7 -0
- package/lib/module/icons/index.js.map +1 -1
- package/lib/typescript/components/TextArea/TextArea.style.d.ts.map +1 -1
- package/lib/typescript/icons/actions/IconEmail.d.ts +4 -0
- package/lib/typescript/icons/actions/IconEmail.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconHamburger.d.ts +4 -0
- package/lib/typescript/icons/actions/IconHamburger.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconOther.d.ts +4 -0
- package/lib/typescript/icons/actions/IconOther.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconReload.d.ts +4 -0
- package/lib/typescript/icons/actions/IconReload.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconSeeHide.d.ts +4 -0
- package/lib/typescript/icons/actions/IconSeeHide.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconSeeShow.d.ts +4 -0
- package/lib/typescript/icons/actions/IconSeeShow.d.ts.map +1 -0
- package/lib/typescript/icons/actions/IconSorting.d.ts +4 -0
- package/lib/typescript/icons/actions/IconSorting.d.ts.map +1 -0
- package/lib/typescript/icons/index.d.ts +7 -0
- package/lib/typescript/icons/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/TextArea/TextArea.style.tsx +1 -2
- package/src/components/coachmark/coachmark.style.tsx +1 -1
- package/src/components/slider-indicator/slider-indicator.style.tsx +2 -2
- package/src/icons/actions/IconEmail.tsx +30 -0
- package/src/icons/actions/IconHamburger.tsx +32 -0
- package/src/icons/actions/IconOther.tsx +36 -0
- package/src/icons/actions/IconReload.tsx +30 -0
- package/src/icons/actions/IconSeeHide.tsx +31 -0
- package/src/icons/actions/IconSeeShow.tsx +30 -0
- package/src/icons/actions/IconSorting.tsx +38 -0
- package/src/icons/index.ts +7 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { G, Path } from 'react-native-svg';
|
|
3
|
+
import { Palettes } from '../../themes';
|
|
4
|
+
|
|
5
|
+
import type { IconProps } from '../../types';
|
|
6
|
+
|
|
7
|
+
export const IconSeeShow = (props: IconProps) => {
|
|
8
|
+
const {
|
|
9
|
+
width = 24,
|
|
10
|
+
height = 24,
|
|
11
|
+
fill = Palettes.black[900],
|
|
12
|
+
...rest
|
|
13
|
+
} = props;
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={width}
|
|
18
|
+
height={height}
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
fill="none"
|
|
21
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
22
|
+
{...rest}
|
|
23
|
+
>
|
|
24
|
+
<G fill={fill}>
|
|
25
|
+
<Path d="M12 7.5c3.35 0 6.48 1.72 8.25 4.5-1.76 2.78-4.9 4.5-8.25 4.5-3.35 0-6.48-1.72-8.25-4.5C5.51 9.22 8.65 7.5 12 7.5zM12 6c-3.99 0-7.71 2.11-9.7 5.5L2 12l.3.5C4.31 15.89 8.02 18 12 18c3.98 0 7.71-2.11 9.7-5.5l.3-.5-.3-.5C19.69 8.11 15.99 6 12 6z" />
|
|
26
|
+
<Path d="M12 16.25A4.26 4.26 0 017.75 12 4.26 4.26 0 0112 7.75 4.26 4.26 0 0116.25 12 4.26 4.26 0 0112 16.25zm0-7c-1.52 0-2.75 1.23-2.75 2.75s1.23 2.75 2.75 2.75 2.75-1.23 2.75-2.75S13.52 9.25 12 9.25z" />
|
|
27
|
+
</G>
|
|
28
|
+
</Svg>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import Svg, { Path } from 'react-native-svg';
|
|
3
|
+
import { Palettes } from '../../themes';
|
|
4
|
+
|
|
5
|
+
import type { IconProps } from '../../types';
|
|
6
|
+
|
|
7
|
+
export const IconSorting = (props: IconProps) => {
|
|
8
|
+
const {
|
|
9
|
+
width = 24,
|
|
10
|
+
height = 24,
|
|
11
|
+
fill = Palettes.black[900],
|
|
12
|
+
...rest
|
|
13
|
+
} = props;
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<Svg
|
|
17
|
+
width={width}
|
|
18
|
+
height={height}
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
fill="none"
|
|
21
|
+
// xmlns="http://www.w3.org/2000/svg"
|
|
22
|
+
{...rest}
|
|
23
|
+
>
|
|
24
|
+
<Path
|
|
25
|
+
d="M8 21c-.6 0-1-.4-1-1V4c0-.6.4-1 1-1s1 .4 1 1v16c0 .6-.4 1-1 1z"
|
|
26
|
+
fill={fill}
|
|
27
|
+
/>
|
|
28
|
+
<Path
|
|
29
|
+
d="M12 9c-.3 0-.5-.1-.7-.3L8 5.4 4.7 8.7c-.4.4-1 .4-1.4 0-.4-.4-.4-1 0-1.4l4-4c.4-.4 1-.4 1.4 0l4 4c.4.4.4 1 0 1.4-.2.2-.4.3-.7.3zM16 21c-.6 0-1-.4-1-1V4c0-.6.4-1 1-1s1 .4 1 1v16c0 .6-.4 1-1 1z"
|
|
30
|
+
fill={fill}
|
|
31
|
+
/>
|
|
32
|
+
<Path
|
|
33
|
+
d="M16 21c-.3 0-.5-.1-.7-.3l-4-4c-.4-.4-.4-1 0-1.4.4-.4 1-.4 1.4 0l3.3 3.3 3.3-3.3c.4-.4 1-.4 1.4 0 .4.4.4 1 0 1.4l-4 4c-.2.2-.4.3-.7.3z"
|
|
34
|
+
fill={fill}
|
|
35
|
+
/>
|
|
36
|
+
</Svg>
|
|
37
|
+
);
|
|
38
|
+
};
|
package/src/icons/index.ts
CHANGED
|
@@ -39,6 +39,13 @@ export { IconEdit } from './actions/IconEdit';
|
|
|
39
39
|
export { IconFilter } from './actions/IconFilter';
|
|
40
40
|
export { IconCustomerService } from './actions/IconCustomerService';
|
|
41
41
|
export { IconAttach } from './actions/IconAttach';
|
|
42
|
+
export { IconSeeShow } from './actions/IconSeeShow';
|
|
43
|
+
export { IconSeeHide } from './actions/IconSeeHide';
|
|
44
|
+
export { IconReload } from './actions/IconReload';
|
|
45
|
+
export { IconOther } from './actions/IconOther';
|
|
46
|
+
export { IconEmail } from './actions/IconEmail';
|
|
47
|
+
export { IconSorting } from './actions/IconSorting';
|
|
48
|
+
export { IconHamburger } from './actions/IconHamburger';
|
|
42
49
|
|
|
43
50
|
export { IconMyLocation } from './misc/IconMyLocation';
|
|
44
51
|
export { IconHistory } from './misc/IconHistory';
|