@bitrise/bitkit 9.19.3 → 9.19.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/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
|
4
4
|
const BuildstatusLoadingAnimated = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
5
5
|
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
6
6
|
<circle cx={8} cy={8} r={7} stroke="currentColor" strokeWidth={1.1} strokeDasharray={48} fill="none">
|
|
7
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
7
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
8
8
|
<animateTransform
|
|
9
9
|
attributeName="transform"
|
|
10
10
|
type="rotate"
|
|
@@ -15,7 +15,7 @@ const BuildstatusLoadingAnimated = forwardRef<IconProps, 'svg'>((props, ref) =>
|
|
|
15
15
|
/>
|
|
16
16
|
</circle>
|
|
17
17
|
<circle cx={8} cy={8} r={4} stroke="currentColor" strokeWidth={1.1} strokeDasharray={48} fill="none">
|
|
18
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
18
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
19
19
|
<animateTransform
|
|
20
20
|
attributeName="transform"
|
|
21
21
|
type="rotate"
|
|
@@ -4,7 +4,7 @@ import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
|
4
4
|
const BuildstatusLoadingAnimated = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
5
5
|
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
6
6
|
<circle cx={12} cy={12} r={11} stroke="currentColor" strokeWidth={2} strokeDasharray={48} fill="none">
|
|
7
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
7
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
8
8
|
<animateTransform
|
|
9
9
|
attributeName="transform"
|
|
10
10
|
type="rotate"
|
|
@@ -15,7 +15,7 @@ const BuildstatusLoadingAnimated = forwardRef<IconProps, 'svg'>((props, ref) =>
|
|
|
15
15
|
/>
|
|
16
16
|
</circle>
|
|
17
17
|
<circle cx={12} cy={12} r={6} stroke="currentColor" strokeWidth={2} strokeDasharray={48} fill="none">
|
|
18
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
18
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
19
19
|
<animateTransform
|
|
20
20
|
attributeName="transform"
|
|
21
21
|
type="rotate"
|
|
@@ -4,7 +4,7 @@ import * as React from 'react';
|
|
|
4
4
|
const SvgIconsBuildstatusLoadingAnimated = (props: React.SVGProps<SVGSVGElement>) => (
|
|
5
5
|
<svg {...props} fill="none" viewBox="0 0 24 24">
|
|
6
6
|
<circle cx={12} cy={12} r={11} stroke="currentColor" strokeWidth={2} strokeDasharray={48}>
|
|
7
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
7
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
8
8
|
<animateTransform
|
|
9
9
|
attributeName="transform"
|
|
10
10
|
type="rotate"
|
|
@@ -15,7 +15,7 @@ const SvgIconsBuildstatusLoadingAnimated = (props: React.SVGProps<SVGSVGElement>
|
|
|
15
15
|
/>
|
|
16
16
|
</circle>
|
|
17
17
|
<circle cx={12} cy={12} r={6} stroke="currentColor" strokeWidth={2} strokeDasharray={48}>
|
|
18
|
-
<animate attributeName="stroke-dashoffset" from={
|
|
18
|
+
<animate attributeName="stroke-dashoffset" from={96} to={0} dur="3.5s" repeatCount="indefinite" />
|
|
19
19
|
<animateTransform
|
|
20
20
|
attributeName="transform"
|
|
21
21
|
type="rotate"
|