@fibery/ui-kit 1.28.0 → 1.28.1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.28.0",
3
+ "version": "1.28.1",
4
4
  "private": false,
5
5
  "files": [
6
6
  "src/antd/styles.ts",
@@ -109,8 +109,8 @@
109
109
  "svgo": "2.8.0",
110
110
  "typescript": "5.1.6",
111
111
  "unist-util-reduce": "0.2.2",
112
- "@fibery/babel-preset": "7.4.0",
113
- "@fibery/eslint-config": "8.5.1"
112
+ "@fibery/eslint-config": "8.5.1",
113
+ "@fibery/babel-preset": "7.4.0"
114
114
  },
115
115
  "jest": {
116
116
  "testEnvironment": "jsdom",
@@ -0,0 +1,8 @@
1
+
2
+ // This icon file is generated automatically.
3
+
4
+ import { IconDefinition } from '../types';
5
+
6
+ const MirrorOff: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":20,"height":20},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M10.38 3.103a.75.75 0 0 0-.76 0l-7.25 4.25a.75.75 0 0 0 0 1.294l7.25 4.25a.75.75 0 0 0 .76 0l7.25-4.25a.75.75 0 0 0 0-1.294l-7.25-4.25ZM10 11.381 4.233 8 10 4.62 15.767 8 10 11.38Z"},"children":[]},{"type":"element","tagName":"path","properties":{"d":"M10 17a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM14.5 14a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM6.5 15a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM18 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM3 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"},"children":[]}],"metadata":""}]},"name":"mirror-off"};
7
+
8
+ export default MirrorOff;
@@ -3,6 +3,6 @@
3
3
 
4
4
  import { IconDefinition } from '../types';
5
5
 
6
- const MirrorOn: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"width":14,"height":12,"fill":"none"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M6.697.482a.6.6 0 0 1 .606 0l5.8 3.4a.6.6 0 0 1 0 1.036L11.257 6l1.846 1.082a.6.6 0 0 1 0 1.036l-5.8 3.4a.6.6 0 0 1-.606 0l-5.8-3.4a.6.6 0 0 1 0-1.036L2.743 6 .897 4.918a.6.6 0 0 1 0-1.036l5.8-3.4Zm0 7.836L3.929 6.696 2.386 7.6 7 10.305 11.614 7.6l-1.543-.904-2.768 1.622a.6.6 0 0 1-.606 0ZM11.614 4.4 7 7.105 2.386 4.4 7 1.696 11.614 4.4Z","fill":"#151719","fillOpacity":0.35},"children":[]}],"metadata":""}]},"name":"mirror-on"};
6
+ const MirrorOn: IconDefinition = {"icon":{"type":"root","children":[{"type":"element","tagName":"svg","properties":{"viewBox":"0 0 20 20"},"children":[{"type":"element","tagName":"path","properties":{"fillRule":"evenodd","clipRule":"evenodd","d":"M9.62 3.103a.75.75 0 0 1 .76 0l7.25 4.25a.75.75 0 0 1 0 1.294L15.32 10l2.308 1.353a.75.75 0 0 1 0 1.294l-7.25 4.25a.75.75 0 0 1-.758 0l-7.25-4.25a.75.75 0 0 1 0-1.294L4.679 10 2.37 8.647a.75.75 0 0 1 0-1.294l7.25-4.25Zm0 9.794-3.458-2.028L4.233 12 10 15.38 15.767 12l-1.929-1.13-3.459 2.027a.75.75 0 0 1-.758 0ZM15.768 8 10 11.38 4.233 8 10 4.62 15.767 8Z"},"children":[]}],"metadata":""}]},"name":"mirror-on"};
7
7
 
8
8
  export default MirrorOn;
@@ -124,6 +124,7 @@ export { default as MessagePlusSquare } from './MessagePlusSquare';
124
124
  export { default as Milestones } from './Milestones';
125
125
  export { default as Minus } from './Minus';
126
126
  export { default as Miro } from './Miro';
127
+ export { default as MirrorOff } from './MirrorOff';
127
128
  export { default as MirrorOn } from './MirrorOn';
128
129
  export { default as Mixpanel } from './Mixpanel';
129
130
  export { default as Monitor } from './Monitor';
@@ -0,0 +1,12 @@
1
+ // This icon file is generated automatically.
2
+
3
+ import MirrorOffSvg from '../ast/MirrorOff';
4
+ import { Icon } from '../Icon';
5
+ import { IconBaseProps } from '../types';
6
+
7
+ const MirrorOff = (
8
+ props: IconBaseProps,
9
+ ): JSX.Element => <Icon {...props} icon={MirrorOffSvg} />;
10
+
11
+ MirrorOff.displayName = 'MirrorOff';
12
+ export default MirrorOff;
@@ -124,6 +124,7 @@ export { default as MessagePlusSquare } from './MessagePlusSquare';
124
124
  export { default as Milestones } from './Milestones';
125
125
  export { default as Minus } from './Minus';
126
126
  export { default as Miro } from './Miro';
127
+ export { default as MirrorOff } from './MirrorOff';
127
128
  export { default as MirrorOn } from './MirrorOn';
128
129
  export { default as Mixpanel } from './Mixpanel';
129
130
  export { default as Monitor } from './Monitor';