@bitrise/bitkit 12.12.3 → 12.14.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,17 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Siren = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path d="m13 2h-2v4h2z" />
|
|
6
|
+
<path d="m12 13v-2c-.0145 0-.0289.0003-.0433.0009-2.72921.0234-4.93674 2.2335-4.95608 4.9637-.00041.0117-.00062.0235-.00062.0354h2v.0315c.00032-.0102-.00001-.0212 0-.0315 0-1.6567 1.3434-2.9997 3-3z" />
|
|
7
|
+
<path
|
|
8
|
+
clipRule="evenodd"
|
|
9
|
+
d="m12 8c-4.41828 0-8 3.5817-8 8v4h-2v2h20v-2h-2v-4c0-4.4183-3.5817-8-8-8zm6 12h-12v-4c0-3.3137 2.68629-6 6-6 3.3137 0 6 2.6863 6 6z"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
/>
|
|
12
|
+
<path d="m2.87891 5.29297 1.41421-1.41421 2.82843 2.82842-1.41422 1.41422z" />
|
|
13
|
+
<path d="m21.2427 5.29297-1.4142-1.41421-2.8285 2.82842 1.4142 1.41422z" />
|
|
14
|
+
</Icon>
|
|
15
|
+
));
|
|
16
|
+
|
|
17
|
+
export default Siren;
|
|
@@ -152,6 +152,7 @@ export { default as Settings } from './Settings';
|
|
|
152
152
|
export { default as Ship } from './Ship';
|
|
153
153
|
export { default as ShowPassword } from './ShowPassword';
|
|
154
154
|
export { default as Shuffle } from './Shuffle';
|
|
155
|
+
export { default as Siren } from './Siren';
|
|
155
156
|
export { default as Sort } from './Sort';
|
|
156
157
|
export { default as Stability } from './Stability';
|
|
157
158
|
export { default as Stack } from './Stack';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Icon, IconProps, forwardRef } from '@chakra-ui/react';
|
|
2
|
+
|
|
3
|
+
const Siren = forwardRef<IconProps, 'svg'>((props, ref) => (
|
|
4
|
+
<Icon ref={ref} viewBox="0 0 24 24" {...props}>
|
|
5
|
+
<path d="m13 2h-2v4h2z" />
|
|
6
|
+
<path d="m12 13v-2c-.0145 0-.0289.0003-.0433.0009-2.72921.0234-4.93674 2.2335-4.95608 4.9637-.00041.0117-.00062.0235-.00062.0354h2v.0315c.00032-.0102-.00001-.0212 0-.0315 0-1.6567 1.3434-2.9997 3-3z" />
|
|
7
|
+
<path
|
|
8
|
+
clipRule="evenodd"
|
|
9
|
+
d="m12 8c-4.41828 0-8 3.5817-8 8v4h-2v2h20v-2h-2v-4c0-4.4183-3.5817-8-8-8zm6 12h-12v-4c0-3.3137 2.68629-6 6-6 3.3137 0 6 2.6863 6 6z"
|
|
10
|
+
fillRule="evenodd"
|
|
11
|
+
/>
|
|
12
|
+
<path d="m2.87891 5.29297 1.41421-1.41421 2.82843 2.82842-1.41422 1.41422z" />
|
|
13
|
+
<path d="m21.2427 5.29297-1.4142-1.41421-2.8285 2.82842 1.4142 1.41422z" />
|
|
14
|
+
</Icon>
|
|
15
|
+
));
|
|
16
|
+
|
|
17
|
+
export default Siren;
|
|
@@ -152,6 +152,7 @@ export { default as Settings } from './Settings';
|
|
|
152
152
|
export { default as Ship } from './Ship';
|
|
153
153
|
export { default as ShowPassword } from './ShowPassword';
|
|
154
154
|
export { default as Shuffle } from './Shuffle';
|
|
155
|
+
export { default as Siren } from './Siren';
|
|
155
156
|
export { default as Sort } from './Sort';
|
|
156
157
|
export { default as Stability } from './Stability';
|
|
157
158
|
export { default as Stack } from './Stack';
|
package/src/utils/chakra.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { forwardRef } from '@chakra-ui/react';
|
|
1
|
+
export { forwardRef, keyframes } from '@chakra-ui/react';
|