@bitrise/bitkit 12.118.0 → 12.119.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,24 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const OutsideContributor = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
d="M4.5 1C3.67157 1 3 1.67157 3 2.5V4C3 4.82843 3.67157 5.5 4.5 5.5H5.5C6.32843 5.5 7 4.82843 7 4V2.5C7 1.67157 6.32843 1 5.5 1H4.5ZM5.5 2.5H4.5V4H5.5V2.5Z"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
clipRule="evenodd"
|
|
13
|
+
d="M11 15.5C13.4853 15.5 15.5 13.4853 15.5 11C15.5 8.51472 13.4853 6.5 11 6.5C8.51472 6.5 6.5 8.51472 6.5 11C6.5 13.4853 8.51472 15.5 11 15.5ZM9 10H11.293L8.64648 12.6465L9.35359 13.3536L12 10.7072V13H13V9H9V10Z"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M2.25 6.75H7.50869C6.99989 7.16846 6.56756 7.6765 6.2358 8.25H2.5V11H1V8C1 7.30964 1.55964 6.75 2.25 6.75Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
</Icon>
|
|
22
|
+
));
|
|
23
|
+
|
|
24
|
+
export default OutsideContributor;
|
|
@@ -233,3 +233,4 @@ export { default as Wow } from './Wow';
|
|
|
233
233
|
export { default as WrappedLines } from './WrappedLines';
|
|
234
234
|
export { default as Xamarin } from './Xamarin';
|
|
235
235
|
export { default as XTwitter } from './XTwitter';
|
|
236
|
+
export { default as OutsideContributor } from './OutsideContributor';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const OutsideContributor = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
clipRule="evenodd"
|
|
7
|
+
d="M7.5 2C6.39543 2 5.5 2.89543 5.5 4V7C5.5 8.10457 6.39543 9 7.5 9H9.5C10.6046 9 11.5 8.10457 11.5 7V4C11.5 2.89543 10.6046 2 9.5 2H7.5ZM9.5 4H7.5V7H9.5V4Z"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
fillRule="evenodd"
|
|
10
|
+
/>
|
|
11
|
+
<path
|
|
12
|
+
clipRule="evenodd"
|
|
13
|
+
d="M17.5 23C20.5376 23 23 20.5376 23 17.5C23 14.4624 20.5376 12 17.5 12C14.4624 12 12 14.4624 12 17.5C12 20.5376 14.4624 23 17.5 23ZM15.5 16H18.293L14.6465 19.6465L15.3536 20.3536L19 16.7072V19.5H20V15H15.5V16Z"
|
|
14
|
+
fill="currentColor"
|
|
15
|
+
fillRule="evenodd"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M2 13C2 11.8954 2.89543 11 4 11H13C13.6154 11 14.1659 11.278 14.5328 11.7152C13.8884 12.0464 13.3065 12.4822 12.8096 13H4V17H2V13Z"
|
|
19
|
+
fill="currentColor"
|
|
20
|
+
/>
|
|
21
|
+
</Icon>
|
|
22
|
+
));
|
|
23
|
+
|
|
24
|
+
export default OutsideContributor;
|
|
@@ -233,3 +233,4 @@ export { default as Wow } from './Wow';
|
|
|
233
233
|
export { default as WrappedLines } from './WrappedLines';
|
|
234
234
|
export { default as Xamarin } from './Xamarin';
|
|
235
235
|
export { default as XTwitter } from './XTwitter';
|
|
236
|
+
export { default as OutsideContributor } from './OutsideContributor';
|