@bitrise/bitkit 12.25.0 → 12.26.1
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="M4.00001 2.66659H2.66667V6.66659H2.8347H4.22761H6.66667V5.33325H5.01853C5.75096 4.51492 6.81534 3.99992 8 3.99992C10.2091 3.99992 12 5.79078 12 7.99992H13.3333C13.3333 5.0544 10.9455 2.66659 8 2.66659C6.40708 2.66659 4.97726 3.36493 4.00001 4.47215L4.00001 2.66659ZM11.7724 9.33325H9.33334V10.6666H10.9815C10.2491 11.4849 9.18467 11.9999 8 11.9999C5.79087 11.9999 4.00001 10.2091 4.00001 7.99992H2.66667C2.66667 10.9454 5.05449 13.3333 8 13.3333C9.59293 13.3333 11.0227 12.6349 12 11.5277V13.3333H13.3333V9.33325H13.1653H11.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="M6 4H4V10H4.25203H6.34141H10V8H7.52779C8.62643 6.7725 10.223 6 12 6C15.3137 6 18 8.68629 18 12H20C20 7.58172 16.4183 4 12 4C9.61061 4 7.46589 5.04751 6 6.70835V4ZM17.6586 14H14V16H16.4722C15.3736 17.2275 13.777 18 12 18C8.68629 18 6 15.3137 6 12H4C4 16.4183 7.58172 20 12 20C14.3894 20 16.5341 18.9525 18 17.2916V20H20V14H19.748H17.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';
|