@bitrise/bitkit 13.30.0 → 13.31.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,12 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const ArrowNorthEast = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 16 16" {...props}>
|
|
5
|
+
<path
|
|
6
|
+
d="M12.9999 3H5V4.5H10.4394L2.46973 12.4697L3.53039 13.5303L11.4999 5.56078V11H12.9999V3Z"
|
|
7
|
+
fill="currentColor"
|
|
8
|
+
/>
|
|
9
|
+
</Icon>
|
|
10
|
+
));
|
|
11
|
+
|
|
12
|
+
export default ArrowNorthEast;
|
|
@@ -14,6 +14,7 @@ export { default as ArrowMoveLeft } from './ArrowMoveLeft';
|
|
|
14
14
|
export { default as ArrowMoveDown } from './ArrowMoveDown';
|
|
15
15
|
export { default as ArrowMoveUp } from './ArrowMoveUp';
|
|
16
16
|
export { default as ArrowMoveRight } from './ArrowMoveRight';
|
|
17
|
+
export { default as ArrowNorthEast } from './ArrowNorthEast';
|
|
17
18
|
export { default as ArrowQuit } from './ArrowQuit';
|
|
18
19
|
export { default as ArrowLeft } from './ArrowLeft';
|
|
19
20
|
export { default as ArrowRight } from './ArrowRight';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { forwardRef, Icon, IconProps } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const ArrowNorthEast = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path d="M13.5859 9H8V7H17V16H15V10.4143L6.70718 18.7071L5.29297 17.2929L13.5859 9Z" fill="currentColor" />
|
|
6
|
+
</Icon>
|
|
7
|
+
));
|
|
8
|
+
|
|
9
|
+
export default ArrowNorthEast;
|
|
@@ -14,6 +14,7 @@ export { default as ArrowMoveLeft } from './ArrowMoveLeft';
|
|
|
14
14
|
export { default as ArrowMoveDown } from './ArrowMoveDown';
|
|
15
15
|
export { default as ArrowMoveUp } from './ArrowMoveUp';
|
|
16
16
|
export { default as ArrowMoveRight } from './ArrowMoveRight';
|
|
17
|
+
export { default as ArrowNorthEast } from './ArrowNorthEast';
|
|
17
18
|
export { default as ArrowQuit } from './ArrowQuit';
|
|
18
19
|
export { default as ArrowLeft } from './ArrowLeft';
|
|
19
20
|
export { default as ArrowRight } from './ArrowRight';
|