fln-espranza 0.0.29 → 0.0.30
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/components/icons/EIconFemale.jsx +20 -0
- package/components/icons/EIconMale.jsx +20 -0
- package/index.ts +5 -2
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
|
|
3
|
+
export function EIconFemale(props){
|
|
4
|
+
const size = props.size || '100%';
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={size}
|
|
8
|
+
height={size}
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M6.157 14.73c.389.235.829.311 1.245.248l-.18.543-.002.004a1.315 1.315 0 0 0 1.123 1.72v2.63a1.874 1.874 0 0 0 3.281 1.241 1.874 1.874 0 0 0 3.281-1.241v-2.63a1.313 1.313 0 0 0 1.122-1.725v-.001l-.181-.54a1.876 1.876 0 0 0 1.884-2.82v-.001l-1.884-3.135v-.001a4.692 4.692 0 0 0-3.085-2.178 2.436 2.436 0 0 0 .587-3.88 2.437 2.437 0 1 0-2.86 3.88 4.692 4.692 0 0 0-3.085 2.178l-1.884 3.136a1.876 1.876 0 0 0 .638 2.573Z"
|
|
15
|
+
stroke="#000"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
)
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react"
|
|
2
|
+
|
|
3
|
+
export function EIconMale(props){
|
|
4
|
+
const size = props.size || '100%';
|
|
5
|
+
return (
|
|
6
|
+
<svg
|
|
7
|
+
width={size}
|
|
8
|
+
height={size}
|
|
9
|
+
fill="none"
|
|
10
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
d="M11.624 21.116a1.874 1.874 0 0 0 3.281-1.241v-5.329a1.876 1.876 0 0 0 2.828-2.389l-2.049-3.409a4.131 4.131 0 0 0-2.85-1.944 2.436 2.436 0 0 0 .514-3.84 2.437 2.437 0 1 0-2.932 3.84 4.13 4.13 0 0 0-2.848 1.944l-2.05 3.41a1.876 1.876 0 0 0 2.825 2.391v5.326a1.874 1.874 0 0 0 3.281 1.241Z"
|
|
15
|
+
stroke="#000"
|
|
16
|
+
strokeWidth={1.5}
|
|
17
|
+
/>
|
|
18
|
+
</svg>
|
|
19
|
+
)
|
|
20
|
+
}
|
package/index.ts
CHANGED
|
@@ -84,6 +84,8 @@ import EQuestionSerialNumberLabel from "./components/EQuestionSerialNumberLabel"
|
|
|
84
84
|
import EQuestionText from "./components/EQuestionText";
|
|
85
85
|
import EEmptyPlaceholder from "./components/EEmptyPlaceholder";
|
|
86
86
|
import EProfileScreenLayout from "./components/EProfileScreenLayout";
|
|
87
|
+
import { EIconMale } from "./components/icons/EIconMale";
|
|
88
|
+
import { EIconFemale } from "./components/icons/EIconFemale";
|
|
87
89
|
|
|
88
90
|
export {
|
|
89
91
|
Avatar,
|
|
@@ -171,6 +173,7 @@ export {
|
|
|
171
173
|
EIconTrash,
|
|
172
174
|
EIconUserCard,
|
|
173
175
|
EIconUserCheck,
|
|
174
|
-
EIconUsers
|
|
175
|
-
|
|
176
|
+
EIconUsers,
|
|
177
|
+
EIconMale,
|
|
178
|
+
EIconFemale
|
|
176
179
|
};
|