@bitrise/bitkit 12.37.0 → 12.38.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,18 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const SortArrows = forwardRef<IconProps, 'svg'>((props, ref) => {
|
|
4
|
+
return (
|
|
5
|
+
<Icon ref={ref} viewBox="0 0 24 24" width="16" height="16" {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M4.41414 9.45378L7.0404 6.83193V15H9.06061V6.93277L11.5859 9.35294L13 7.94118L8.0505 3L3 7.94118L4.41414 9.45378Z"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M19.5859 14.5462L16.9596 17.1681V9H14.9394V17.0672L12.4141 14.6471L11 16.0588L15.9495 21L21 16.0588L19.5859 14.5462Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</Icon>
|
|
15
|
+
);
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export default SortArrows;
|
|
@@ -161,6 +161,7 @@ export { default as ShowPassword } from './ShowPassword';
|
|
|
161
161
|
export { default as Shuffle } from './Shuffle';
|
|
162
162
|
export { default as Siren } from './Siren';
|
|
163
163
|
export { default as Sort } from './Sort';
|
|
164
|
+
export { default as SortArrows } from './SortArrows';
|
|
164
165
|
export { default as Stability } from './Stability';
|
|
165
166
|
export { default as Stack } from './Stack';
|
|
166
167
|
export { default as StageCurrent } from './StageCurrent';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const SortArrows = forwardRef<IconProps, 'svg'>((props, ref) => {
|
|
4
|
+
return (
|
|
5
|
+
<Icon ref={ref} viewBox="0 0 24 24" width="24" height="24" {...props}>
|
|
6
|
+
<path
|
|
7
|
+
d="M4.41414 9.45378L7.0404 6.83193V15H9.06061V6.93277L11.5859 9.35294L13 7.94118L8.0505 3L3 7.94118L4.41414 9.45378Z"
|
|
8
|
+
fill="currentColor"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M19.5859 14.5462L16.9596 17.1681V9H14.9394V17.0672L12.4141 14.6471L11 16.0588L15.9495 21L21 16.0588L19.5859 14.5462Z"
|
|
12
|
+
fill="currentColor"
|
|
13
|
+
/>
|
|
14
|
+
</Icon>
|
|
15
|
+
);
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
export default SortArrows;
|
|
@@ -161,6 +161,7 @@ export { default as ShowPassword } from './ShowPassword';
|
|
|
161
161
|
export { default as Shuffle } from './Shuffle';
|
|
162
162
|
export { default as Siren } from './Siren';
|
|
163
163
|
export { default as Sort } from './Sort';
|
|
164
|
+
export { default as SortArrows } from './SortArrows';
|
|
164
165
|
export { default as Stability } from './Stability';
|
|
165
166
|
export { default as Stack } from './Stack';
|
|
166
167
|
export { default as StageCurrent } from './StageCurrent';
|