@bigbinary/neeto-icons-rn 1.20.59 → 1.20.60
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/icons/PauseCircle.js +29 -0
- package/dist/icons/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import Svg, { Circle, Path } from "react-native-svg";
|
|
3
|
+
const SvgPauseCircle = (props) => (
|
|
4
|
+
<Svg
|
|
5
|
+
fill="none"
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
viewBox="0 0 24 24"
|
|
8
|
+
width={props.size}
|
|
9
|
+
height={props.size}
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<Circle cx={12} cy={12} r={9} stroke="#344054" strokeWidth={1.2} />
|
|
13
|
+
<Path
|
|
14
|
+
d="M10 9V15"
|
|
15
|
+
stroke="#344054"
|
|
16
|
+
strokeWidth={1.2}
|
|
17
|
+
strokeLinecap="round"
|
|
18
|
+
strokeLinejoin="round"
|
|
19
|
+
/>
|
|
20
|
+
<Path
|
|
21
|
+
d="M14 9V15"
|
|
22
|
+
stroke="#344054"
|
|
23
|
+
strokeWidth={1.2}
|
|
24
|
+
strokeLinecap="round"
|
|
25
|
+
strokeLinejoin="round"
|
|
26
|
+
/>
|
|
27
|
+
</Svg>
|
|
28
|
+
);
|
|
29
|
+
export default SvgPauseCircle;
|
package/dist/icons/index.js
CHANGED
|
@@ -301,6 +301,7 @@ export { default as PaddingTop } from "./PaddingTop";
|
|
|
301
301
|
export { default as PaddingX } from "./PaddingX";
|
|
302
302
|
export { default as PaddingY } from "./PaddingY";
|
|
303
303
|
export { default as Pause } from "./Pause";
|
|
304
|
+
export { default as PauseCircle } from "./PauseCircle";
|
|
304
305
|
export { default as Payment } from "./Payment";
|
|
305
306
|
export { default as Phone } from "./Phone";
|
|
306
307
|
export { default as PhoneRing } from "./PhoneRing";
|