box-ui-elements 14.1.0-beta.5 → 14.1.0-beta.6
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/es/icon/fill/LightningBolt16.js +30 -0
- package/es/icon/fill/LightningBolt16.js.flow +28 -0
- package/es/icon/fill/LightningBolt16.js.map +1 -0
- package/es/icon/fill/LightningBolt16.stories.js +13 -0
- package/es/icon/fill/LightningBolt16.stories.js.map +1 -0
- package/es/icon/line/GenericCopy16.js +30 -0
- package/es/icon/line/GenericCopy16.js.flow +25 -0
- package/es/icon/line/GenericCopy16.js.map +1 -0
- package/es/icon/line/GenericCopy16.stories.js +13 -0
- package/es/icon/line/GenericCopy16.stories.js.map +1 -0
- package/es/src/icon/fill/LightningBolt16.d.ts +13 -0
- package/es/src/icon/fill/LightningBolt16.stories.d.ts +9 -0
- package/es/src/icon/line/GenericCopy16.d.ts +13 -0
- package/es/src/icon/line/GenericCopy16.stories.d.ts +9 -0
- package/package.json +1 -1
- package/src/icon/fill/LightningBolt16.js.flow +28 -0
- package/src/icon/fill/LightningBolt16.stories.tsx +13 -0
- package/src/icon/fill/LightningBolt16.tsx +26 -0
- package/src/icon/line/GenericCopy16.js.flow +25 -0
- package/src/icon/line/GenericCopy16.stories.tsx +13 -0
- package/src/icon/line/GenericCopy16.tsx +23 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
/* eslint-disable react/jsx-sort-props */
|
|
4
|
+
import * as React from 'react';
|
|
5
|
+
import * as vars from '../../styles/variables';
|
|
6
|
+
import AccessibleSVG from '../../components/accessible-svg/AccessibleSVG';
|
|
7
|
+
/**
|
|
8
|
+
* This is an auto-generated component and should not be edited
|
|
9
|
+
* manually in contributor pull requests.
|
|
10
|
+
*
|
|
11
|
+
* If you have problems with this component:
|
|
12
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
13
|
+
*
|
|
14
|
+
* If there are missing features in this component:
|
|
15
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
var LightningBolt16 = function LightningBolt16(props) {
|
|
19
|
+
return React.createElement(AccessibleSVG, _extends({
|
|
20
|
+
width: 16,
|
|
21
|
+
height: 16,
|
|
22
|
+
viewBox: "0 0 16 16"
|
|
23
|
+
}, props), React.createElement("path", {
|
|
24
|
+
fill: vars.bdlGray50,
|
|
25
|
+
d: "M11.503 1a.496.496 0 01.447.712L9.302 6.998h2.193a.5.5 0 01.423.766L6.91 14.792a.5.5 0 01-.902-.365L6.836 9H4.493a.496.496 0 01-.483-.602l1.516-7A.495.495 0 016.008 1h5.495z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export default LightningBolt16;
|
|
30
|
+
//# sourceMappingURL=LightningBolt16.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// @flow
|
|
2
|
+
/* eslint-disable react/jsx-sort-props */
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as vars from '../../styles/variables';
|
|
5
|
+
import AccessibleSVG from '../../icons/accessible-svg';
|
|
6
|
+
import type { Icon } from '../../icons/flowTypes';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This is an auto-generated component and should not be edited
|
|
10
|
+
* manually in contributor pull requests.
|
|
11
|
+
*
|
|
12
|
+
* If you have problems with this component:
|
|
13
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
14
|
+
*
|
|
15
|
+
* If there are missing features in this component:
|
|
16
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
const LightningBolt16 = (props: Icon) => (
|
|
20
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
21
|
+
<path
|
|
22
|
+
fill={vars.bdlGray50}
|
|
23
|
+
d="M11.503 1a.496.496 0 01.447.712L9.302 6.998h2.193a.5.5 0 01.423.766L6.91 14.792a.5.5 0 01-.902-.365L6.836 9H4.493a.496.496 0 01-.483-.602l1.516-7A.495.495 0 016.008 1h5.495z"
|
|
24
|
+
/>
|
|
25
|
+
</AccessibleSVG>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
export default LightningBolt16;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/icon/fill/LightningBolt16.tsx"],"names":["React","vars","AccessibleSVG","LightningBolt16","props","bdlGray50"],"mappings":";;AAAA;AACA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,OAAO,KAAKC,IAAZ,MAAsB,wBAAtB;AACA,OAAOC,aAAP,MAAwC,+CAAxC;AAEA;;;;;;;;;;;AAWA,IAAMC,eAAe,GAAG,SAAlBA,eAAkB,CAACC,KAAD;AAAA,SACpB,oBAAC,aAAD;AAAe,IAAA,KAAK,EAAE,EAAtB;AAA0B,IAAA,MAAM,EAAE,EAAlC;AAAsC,IAAA,OAAO,EAAC;AAA9C,KAA8DA,KAA9D,GACI;AACI,IAAA,IAAI,EAAEH,IAAI,CAACI,SADf;AAEI,IAAA,CAAC,EAAC;AAFN,IADJ,CADoB;AAAA,CAAxB;;AASA,eAAeF,eAAf","sourcesContent":["/* eslint-disable react/jsx-sort-props */\nimport * as React from 'react';\nimport * as vars from '../../styles/variables';\nimport AccessibleSVG, { SVGProps } from '../../components/accessible-svg/AccessibleSVG';\n\n/**\n * This is an auto-generated component and should not be edited\n * manually in contributor pull requests.\n *\n * If you have problems with this component:\n * - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md\n *\n * If there are missing features in this component:\n * - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md\n */\n\nconst LightningBolt16 = (props: SVGProps) => (\n <AccessibleSVG width={16} height={16} viewBox=\"0 0 16 16\" {...props}>\n <path\n fill={vars.bdlGray50}\n d=\"M11.503 1a.496.496 0 01.447.712L9.302 6.998h2.193a.5.5 0 01.423.766L6.91 14.792a.5.5 0 01-.902-.365L6.836 9H4.493a.496.496 0 01-.483-.602l1.516-7A.495.495 0 016.008 1h5.495z\"\n />\n </AccessibleSVG>\n);\n\nexport default LightningBolt16;\n"],"file":"LightningBolt16.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import LightningBolt16 from './LightningBolt16';
|
|
3
|
+
export var lightningBolt16 = function lightningBolt16() {
|
|
4
|
+
return React.createElement(LightningBolt16, null);
|
|
5
|
+
};
|
|
6
|
+
export default {
|
|
7
|
+
title: 'Icon|Fill|LightningBolt16',
|
|
8
|
+
component: LightningBolt16,
|
|
9
|
+
parameters: {
|
|
10
|
+
notes: "`import LightningBolt16 from 'box-ui-elements/es/icon/fill/LightningBolt16';`"
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=LightningBolt16.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/icon/fill/LightningBolt16.stories.tsx"],"names":["React","LightningBolt16","lightningBolt16","title","component","parameters","notes"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,eAAP,MAA4B,mBAA5B;AAEA,OAAO,IAAMC,eAAe,GAAG,SAAlBA,eAAkB;AAAA,SAAM,oBAAC,eAAD,OAAN;AAAA,CAAxB;AAEP,eAAe;AACXC,EAAAA,KAAK,EAAE,2BADI;AAEXC,EAAAA,SAAS,EAAEH,eAFA;AAGXI,EAAAA,UAAU,EAAE;AACRC,IAAAA,KAAK,EAAE;AADC;AAHD,CAAf","sourcesContent":["import * as React from 'react';\n\nimport LightningBolt16 from './LightningBolt16';\n\nexport const lightningBolt16 = () => <LightningBolt16 />;\n\nexport default {\n title: 'Icon|Fill|LightningBolt16',\n component: LightningBolt16,\n parameters: {\n notes: \"`import LightningBolt16 from 'box-ui-elements/es/icon/fill/LightningBolt16';`\",\n },\n};\n"],"file":"LightningBolt16.stories.js"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
/* eslint-disable react/jsx-sort-props */
|
|
4
|
+
import * as React from 'react';
|
|
5
|
+
import * as vars from '../../styles/variables';
|
|
6
|
+
import AccessibleSVG from '../../components/accessible-svg/AccessibleSVG';
|
|
7
|
+
/**
|
|
8
|
+
* This is an auto-generated component and should not be edited
|
|
9
|
+
* manually in contributor pull requests.
|
|
10
|
+
*
|
|
11
|
+
* If you have problems with this component:
|
|
12
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
13
|
+
*
|
|
14
|
+
* If there are missing features in this component:
|
|
15
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
var GenericCopy16 = function GenericCopy16(props) {
|
|
19
|
+
return React.createElement(AccessibleSVG, _extends({
|
|
20
|
+
width: 16,
|
|
21
|
+
height: 16,
|
|
22
|
+
viewBox: "0 0 16 16"
|
|
23
|
+
}, props), React.createElement("path", {
|
|
24
|
+
fill: vars.bdlGray,
|
|
25
|
+
d: "M13 3c.557 0 .942.345.994.875L14 4v11H4V3h9zm0 1H5v10h8V4zm-2-3v1H3v10H2V1h9z"
|
|
26
|
+
}));
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export default GenericCopy16;
|
|
30
|
+
//# sourceMappingURL=GenericCopy16.js.map
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// @flow
|
|
2
|
+
/* eslint-disable react/jsx-sort-props */
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as vars from '../../styles/variables';
|
|
5
|
+
import AccessibleSVG from '../../icons/accessible-svg';
|
|
6
|
+
import type { Icon } from '../../icons/flowTypes';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This is an auto-generated component and should not be edited
|
|
10
|
+
* manually in contributor pull requests.
|
|
11
|
+
*
|
|
12
|
+
* If you have problems with this component:
|
|
13
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
14
|
+
*
|
|
15
|
+
* If there are missing features in this component:
|
|
16
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
const GenericCopy16 = (props: Icon) => (
|
|
20
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
21
|
+
<path fill={vars.bdlGray} d="M13 3c.557 0 .942.345.994.875L14 4v11H4V3h9zm0 1H5v10h8V4zm-2-3v1H3v10H2V1h9z" />
|
|
22
|
+
</AccessibleSVG>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export default GenericCopy16;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/icon/line/GenericCopy16.tsx"],"names":["React","vars","AccessibleSVG","GenericCopy16","props","bdlGray"],"mappings":";;AAAA;AACA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AACA,OAAO,KAAKC,IAAZ,MAAsB,wBAAtB;AACA,OAAOC,aAAP,MAAwC,+CAAxC;AAEA;;;;;;;;;;;AAWA,IAAMC,aAAa,GAAG,SAAhBA,aAAgB,CAACC,KAAD;AAAA,SAClB,oBAAC,aAAD;AAAe,IAAA,KAAK,EAAE,EAAtB;AAA0B,IAAA,MAAM,EAAE,EAAlC;AAAsC,IAAA,OAAO,EAAC;AAA9C,KAA8DA,KAA9D,GACI;AAAM,IAAA,IAAI,EAAEH,IAAI,CAACI,OAAjB;AAA0B,IAAA,CAAC,EAAC;AAA5B,IADJ,CADkB;AAAA,CAAtB;;AAMA,eAAeF,aAAf","sourcesContent":["/* eslint-disable react/jsx-sort-props */\nimport * as React from 'react';\nimport * as vars from '../../styles/variables';\nimport AccessibleSVG, { SVGProps } from '../../components/accessible-svg/AccessibleSVG';\n\n/**\n * This is an auto-generated component and should not be edited\n * manually in contributor pull requests.\n *\n * If you have problems with this component:\n * - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md\n *\n * If there are missing features in this component:\n * - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md\n */\n\nconst GenericCopy16 = (props: SVGProps) => (\n <AccessibleSVG width={16} height={16} viewBox=\"0 0 16 16\" {...props}>\n <path fill={vars.bdlGray} d=\"M13 3c.557 0 .942.345.994.875L14 4v11H4V3h9zm0 1H5v10h8V4zm-2-3v1H3v10H2V1h9z\" />\n </AccessibleSVG>\n);\n\nexport default GenericCopy16;\n"],"file":"GenericCopy16.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import GenericCopy16 from './GenericCopy16';
|
|
3
|
+
export var genericCopy16 = function genericCopy16() {
|
|
4
|
+
return React.createElement(GenericCopy16, null);
|
|
5
|
+
};
|
|
6
|
+
export default {
|
|
7
|
+
title: 'Icon|Line|GenericCopy16',
|
|
8
|
+
component: GenericCopy16,
|
|
9
|
+
parameters: {
|
|
10
|
+
notes: "`import GenericCopy16 from 'box-ui-elements/es/icon/line/GenericCopy16';`"
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=GenericCopy16.stories.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../src/icon/line/GenericCopy16.stories.tsx"],"names":["React","GenericCopy16","genericCopy16","title","component","parameters","notes"],"mappings":"AAAA,OAAO,KAAKA,KAAZ,MAAuB,OAAvB;AAEA,OAAOC,aAAP,MAA0B,iBAA1B;AAEA,OAAO,IAAMC,aAAa,GAAG,SAAhBA,aAAgB;AAAA,SAAM,oBAAC,aAAD,OAAN;AAAA,CAAtB;AAEP,eAAe;AACXC,EAAAA,KAAK,EAAE,yBADI;AAEXC,EAAAA,SAAS,EAAEH,aAFA;AAGXI,EAAAA,UAAU,EAAE;AACRC,IAAAA,KAAK,EAAE;AADC;AAHD,CAAf","sourcesContent":["import * as React from 'react';\n\nimport GenericCopy16 from './GenericCopy16';\n\nexport const genericCopy16 = () => <GenericCopy16 />;\n\nexport default {\n title: 'Icon|Line|GenericCopy16',\n component: GenericCopy16,\n parameters: {\n notes: \"`import GenericCopy16 from 'box-ui-elements/es/icon/line/GenericCopy16';`\",\n },\n};\n"],"file":"GenericCopy16.stories.js"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps } from '../../components/accessible-svg/AccessibleSVG';
|
|
2
|
+
/**
|
|
3
|
+
* This is an auto-generated component and should not be edited
|
|
4
|
+
* manually in contributor pull requests.
|
|
5
|
+
*
|
|
6
|
+
* If you have problems with this component:
|
|
7
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
8
|
+
*
|
|
9
|
+
* If there are missing features in this component:
|
|
10
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
11
|
+
*/
|
|
12
|
+
declare const LightningBolt16: (props: SVGProps) => JSX.Element;
|
|
13
|
+
export default LightningBolt16;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const lightningBolt16: () => JSX.Element;
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: (props: import("../../components/accessible-svg/AccessibleSVG").SVGProps) => JSX.Element;
|
|
5
|
+
parameters: {
|
|
6
|
+
notes: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SVGProps } from '../../components/accessible-svg/AccessibleSVG';
|
|
2
|
+
/**
|
|
3
|
+
* This is an auto-generated component and should not be edited
|
|
4
|
+
* manually in contributor pull requests.
|
|
5
|
+
*
|
|
6
|
+
* If you have problems with this component:
|
|
7
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
8
|
+
*
|
|
9
|
+
* If there are missing features in this component:
|
|
10
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
11
|
+
*/
|
|
12
|
+
declare const GenericCopy16: (props: SVGProps) => JSX.Element;
|
|
13
|
+
export default GenericCopy16;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const genericCopy16: () => JSX.Element;
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: (props: import("../../components/accessible-svg/AccessibleSVG").SVGProps) => JSX.Element;
|
|
5
|
+
parameters: {
|
|
6
|
+
notes: string;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export default _default;
|
package/package.json
CHANGED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// @flow
|
|
2
|
+
/* eslint-disable react/jsx-sort-props */
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as vars from '../../styles/variables';
|
|
5
|
+
import AccessibleSVG from '../../icons/accessible-svg';
|
|
6
|
+
import type { Icon } from '../../icons/flowTypes';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This is an auto-generated component and should not be edited
|
|
10
|
+
* manually in contributor pull requests.
|
|
11
|
+
*
|
|
12
|
+
* If you have problems with this component:
|
|
13
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
14
|
+
*
|
|
15
|
+
* If there are missing features in this component:
|
|
16
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
const LightningBolt16 = (props: Icon) => (
|
|
20
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
21
|
+
<path
|
|
22
|
+
fill={vars.bdlGray50}
|
|
23
|
+
d="M11.503 1a.496.496 0 01.447.712L9.302 6.998h2.193a.5.5 0 01.423.766L6.91 14.792a.5.5 0 01-.902-.365L6.836 9H4.493a.496.496 0 01-.483-.602l1.516-7A.495.495 0 016.008 1h5.495z"
|
|
24
|
+
/>
|
|
25
|
+
</AccessibleSVG>
|
|
26
|
+
);
|
|
27
|
+
|
|
28
|
+
export default LightningBolt16;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
import LightningBolt16 from './LightningBolt16';
|
|
4
|
+
|
|
5
|
+
export const lightningBolt16 = () => <LightningBolt16 />;
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
title: 'Icon|Fill|LightningBolt16',
|
|
9
|
+
component: LightningBolt16,
|
|
10
|
+
parameters: {
|
|
11
|
+
notes: "`import LightningBolt16 from 'box-ui-elements/es/icon/fill/LightningBolt16';`",
|
|
12
|
+
},
|
|
13
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* eslint-disable react/jsx-sort-props */
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import * as vars from '../../styles/variables';
|
|
4
|
+
import AccessibleSVG, { SVGProps } from '../../components/accessible-svg/AccessibleSVG';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* This is an auto-generated component and should not be edited
|
|
8
|
+
* manually in contributor pull requests.
|
|
9
|
+
*
|
|
10
|
+
* If you have problems with this component:
|
|
11
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
12
|
+
*
|
|
13
|
+
* If there are missing features in this component:
|
|
14
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
const LightningBolt16 = (props: SVGProps) => (
|
|
18
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
19
|
+
<path
|
|
20
|
+
fill={vars.bdlGray50}
|
|
21
|
+
d="M11.503 1a.496.496 0 01.447.712L9.302 6.998h2.193a.5.5 0 01.423.766L6.91 14.792a.5.5 0 01-.902-.365L6.836 9H4.493a.496.496 0 01-.483-.602l1.516-7A.495.495 0 016.008 1h5.495z"
|
|
22
|
+
/>
|
|
23
|
+
</AccessibleSVG>
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
export default LightningBolt16;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
// @flow
|
|
2
|
+
/* eslint-disable react/jsx-sort-props */
|
|
3
|
+
import * as React from 'react';
|
|
4
|
+
import * as vars from '../../styles/variables';
|
|
5
|
+
import AccessibleSVG from '../../icons/accessible-svg';
|
|
6
|
+
import type { Icon } from '../../icons/flowTypes';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* This is an auto-generated component and should not be edited
|
|
10
|
+
* manually in contributor pull requests.
|
|
11
|
+
*
|
|
12
|
+
* If you have problems with this component:
|
|
13
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
14
|
+
*
|
|
15
|
+
* If there are missing features in this component:
|
|
16
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
const GenericCopy16 = (props: Icon) => (
|
|
20
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
21
|
+
<path fill={vars.bdlGray} d="M13 3c.557 0 .942.345.994.875L14 4v11H4V3h9zm0 1H5v10h8V4zm-2-3v1H3v10H2V1h9z" />
|
|
22
|
+
</AccessibleSVG>
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export default GenericCopy16;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
import GenericCopy16 from './GenericCopy16';
|
|
4
|
+
|
|
5
|
+
export const genericCopy16 = () => <GenericCopy16 />;
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
title: 'Icon|Line|GenericCopy16',
|
|
9
|
+
component: GenericCopy16,
|
|
10
|
+
parameters: {
|
|
11
|
+
notes: "`import GenericCopy16 from 'box-ui-elements/es/icon/line/GenericCopy16';`",
|
|
12
|
+
},
|
|
13
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/* eslint-disable react/jsx-sort-props */
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import * as vars from '../../styles/variables';
|
|
4
|
+
import AccessibleSVG, { SVGProps } from '../../components/accessible-svg/AccessibleSVG';
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* This is an auto-generated component and should not be edited
|
|
8
|
+
* manually in contributor pull requests.
|
|
9
|
+
*
|
|
10
|
+
* If you have problems with this component:
|
|
11
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Bug_report.md
|
|
12
|
+
*
|
|
13
|
+
* If there are missing features in this component:
|
|
14
|
+
* - https://github.com/box/box-ui-elements/issues/new?template=Feature_request.md
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
const GenericCopy16 = (props: SVGProps) => (
|
|
18
|
+
<AccessibleSVG width={16} height={16} viewBox="0 0 16 16" {...props}>
|
|
19
|
+
<path fill={vars.bdlGray} d="M13 3c.557 0 .942.345.994.875L14 4v11H4V3h9zm0 1H5v10h8V4zm-2-3v1H3v10H2V1h9z" />
|
|
20
|
+
</AccessibleSVG>
|
|
21
|
+
);
|
|
22
|
+
|
|
23
|
+
export default GenericCopy16;
|