@bitrise/bitkit 13.227.0 → 13.229.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,9 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Kotlin = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path clipRule="evenodd" d="M15 15H1V1H15L8 7.9986L15 15Z" fill="currentColor" fillRule="evenodd" />
|
|
6
|
+
</Icon>
|
|
7
|
+
));
|
|
8
|
+
|
|
9
|
+
export default Kotlin;
|
|
@@ -133,6 +133,7 @@ export { default as Invoice } from './Invoice';
|
|
|
133
133
|
export { default as Ionic } from './Ionic';
|
|
134
134
|
export { default as Japanese } from './Japanese';
|
|
135
135
|
export { default as Key } from './Key';
|
|
136
|
+
export { default as Kotlin } from './Kotlin';
|
|
136
137
|
export { default as Laptop } from './Laptop';
|
|
137
138
|
export { default as LaunchDarkly } from './LaunchDarkly';
|
|
138
139
|
export { default as Lightbulb } from './Lightbulb';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Kotlin = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path clipRule="evenodd" d="M22 22H2V2H22L12 11.998L22 22Z" fill="currentColor" fillRule="evenodd" />
|
|
6
|
+
</Icon>
|
|
7
|
+
));
|
|
8
|
+
|
|
9
|
+
export default Kotlin;
|
|
@@ -131,6 +131,7 @@ export { default as Invoice } from './Invoice';
|
|
|
131
131
|
export { default as Ionic } from './Ionic';
|
|
132
132
|
export { default as Japanese } from './Japanese';
|
|
133
133
|
export { default as Key } from './Key';
|
|
134
|
+
export { default as Kotlin } from './Kotlin';
|
|
134
135
|
export { default as Laptop } from './Laptop';
|
|
135
136
|
export { default as LaunchDarkly } from './LaunchDarkly';
|
|
136
137
|
export { default as Lightbulb } from './Lightbulb';
|