@bitrise/bitkit 12.25.0 → 12.26.0
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
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Replace = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
d="M2.00001 0.666586H0.666672L0.666672 4.66659H0.834695H2.22761H4.66667V3.33325H3.01853C3.75096 2.51492 4.81534 1.99992 6 1.99992C8.20914 1.99992 10 3.79078 10 5.99992H11.3333C11.3333 3.0544 8.94552 0.666586 6 0.666586C4.40708 0.666586 2.97726 1.36493 2.00001 2.47215L2.00001 0.666586ZM9.7724 7.33325H7.33334V8.66659H8.98148C8.24905 9.48492 7.18467 9.99992 6 9.99992C3.79087 9.99992 2.00001 8.20906 2.00001 5.99992H0.666672C0.666672 8.94544 3.05449 11.3333 6 11.3333C7.59293 11.3333 9.02275 10.6349 10 9.52768V11.3333H11.3333V7.33325H11.1653H9.7724Z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Replace;
|
|
@@ -146,6 +146,7 @@ export { default as Pull } from './Pull';
|
|
|
146
146
|
export { default as Push } from './Push';
|
|
147
147
|
export { default as ReactIcon } from './ReactIcon';
|
|
148
148
|
export { default as Refresh } from './Refresh';
|
|
149
|
+
export { default as Replace } from './Replace';
|
|
149
150
|
export { default as Request } from './Request';
|
|
150
151
|
export { default as Responsiveness } from './Responsiveness';
|
|
151
152
|
export { default as Save } from './Save';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Replace = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
fillRule="evenodd"
|
|
7
|
+
clipRule="evenodd"
|
|
8
|
+
d="M2 0H0L0 6H0.252035H2.34141H6V4H3.52779C4.62643 2.7725 6.223 2 8 2C11.3137 2 14 4.68629 14 8H16C16 3.58172 12.4183 0 8 0C5.61061 0 3.46589 1.04751 2 2.70835V0ZM13.6586 10H10V12H12.4722C11.3736 13.2275 9.777 14 8 14C4.68629 14 2 11.3137 2 8H0C0 12.4183 3.58172 16 8 16C10.3894 16 12.5341 14.9525 14 13.2916V16H16V10H15.748H13.6586Z"
|
|
9
|
+
fill="currentColor"
|
|
10
|
+
/>
|
|
11
|
+
</Icon>
|
|
12
|
+
));
|
|
13
|
+
|
|
14
|
+
export default Replace;
|
|
@@ -146,6 +146,7 @@ export { default as Pull } from './Pull';
|
|
|
146
146
|
export { default as Push } from './Push';
|
|
147
147
|
export { default as ReactIcon } from './ReactIcon';
|
|
148
148
|
export { default as Refresh } from './Refresh';
|
|
149
|
+
export { default as Replace } from './Replace';
|
|
149
150
|
export { default as Request } from './Request';
|
|
150
151
|
export { default as Responsiveness } from './Responsiveness';
|
|
151
152
|
export { default as Save } from './Save';
|