@box/blueprint-web-assets 4.39.3 → 4.40.2

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.
Files changed (47) hide show
  1. package/dist/icons/Fill/PointerDown.d.ts +3 -0
  2. package/dist/icons/Fill/PointerDown.js +5 -0
  3. package/dist/icons/Fill/PointerLeft.d.ts +3 -0
  4. package/dist/icons/Fill/PointerLeft.js +5 -0
  5. package/dist/icons/Fill/PointerRight.d.ts +3 -0
  6. package/dist/icons/Fill/PointerRight.js +5 -0
  7. package/dist/icons/Fill/PointerUp.d.ts +3 -0
  8. package/dist/icons/Fill/PointerUp.js +5 -0
  9. package/dist/icons/Fill/index.d.ts +4 -0
  10. package/dist/icons/Fill/index.js +4 -0
  11. package/dist/icons/Logo/FileRequest.d.ts +3 -0
  12. package/dist/icons/Logo/FileRequest.js +5 -0
  13. package/dist/icons/Logo/index.d.ts +1 -0
  14. package/dist/icons/Logo/index.js +1 -0
  15. package/dist/icons/Medium/AlignmentCenter.js +1 -1
  16. package/dist/icons/Medium/AlignmentFill.js +1 -1
  17. package/dist/icons/Medium/AlignmentLeft.js +1 -1
  18. package/dist/icons/Medium/AlignmentRight.js +1 -1
  19. package/dist/icons/Medium/Bold.js +1 -1
  20. package/dist/icons/Medium/BubbleQuestion.d.ts +3 -0
  21. package/dist/icons/Medium/BubbleQuestion.js +5 -0
  22. package/dist/icons/Medium/BubbleText.d.ts +3 -0
  23. package/dist/icons/Medium/BubbleText.js +5 -0
  24. package/dist/icons/Medium/BulletList.js +1 -1
  25. package/dist/icons/Medium/CheckList.js +1 -1
  26. package/dist/icons/Medium/Color.js +1 -1
  27. package/dist/icons/Medium/Download.js +1 -1
  28. package/dist/icons/Medium/Italic.js +1 -1
  29. package/dist/icons/Medium/NumberList.js +1 -1
  30. package/dist/icons/Medium/Strikethrough.js +1 -1
  31. package/dist/icons/Medium/Table.js +1 -1
  32. package/dist/icons/Medium/Underline.js +1 -1
  33. package/dist/icons/Medium/Upload.js +1 -1
  34. package/dist/icons/Medium/index.d.ts +2 -0
  35. package/dist/icons/Medium/index.js +2 -0
  36. package/dist/icons/MediumFilled/Check.d.ts +3 -0
  37. package/dist/icons/MediumFilled/Check.js +5 -0
  38. package/dist/icons/MediumFilled/Notes.d.ts +3 -0
  39. package/dist/icons/MediumFilled/Notes.js +5 -0
  40. package/dist/icons/MediumFilled/ThumbsDown.js +1 -1
  41. package/dist/icons/MediumFilled/ThumbsUp.js +1 -1
  42. package/dist/icons/MediumFilled/index.d.ts +2 -0
  43. package/dist/icons/MediumFilled/index.js +2 -0
  44. package/dist/tokens/px-tokens.d.ts +1 -1
  45. package/dist/tokens/px-tokens.js +1 -1
  46. package/dist/tokens/tokens-css-vars.scss +1 -1
  47. package/package.json +2 -2
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgPointerDown = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M5.645 7.43a1.61 1.61 0 0 0-2.191 0 1.415 1.415 0 0 0 0 2.077l7.45 7.063a1.59 1.59 0 0 0 1.1.43c.396-.001.79-.145 1.091-.43l7.451-7.063a1.415 1.415 0 0 0 0-2.077 1.61 1.61 0 0 0-2.19 0L12 13.455 5.645 7.43Z" }) }));
4
+ const ForwardRef = forwardRef(SvgPointerDown);
5
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgPointerLeft = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M16.57 5.645a1.61 1.61 0 0 0 0-2.191 1.415 1.415 0 0 0-2.077 0l-7.063 7.45a1.589 1.589 0 0 0-.43 1.1c.001.396.144.79.43 1.091l7.063 7.451a1.415 1.415 0 0 0 2.077 0 1.61 1.61 0 0 0 0-2.19L10.545 12l6.025-6.355Z" }) }));
4
+ const ForwardRef = forwardRef(SvgPointerLeft);
5
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgPointerRight = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M7.43 18.355a1.61 1.61 0 0 0 0 2.191 1.415 1.415 0 0 0 2.077 0l7.063-7.45a1.59 1.59 0 0 0 .43-1.1 1.589 1.589 0 0 0-.43-1.091L9.507 3.454a1.415 1.415 0 0 0-2.077 0 1.61 1.61 0 0 0 0 2.19L13.455 12 7.43 18.355Z" }) }));
4
+ const ForwardRef = forwardRef(SvgPointerRight);
5
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgPointerUp = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', d: "M18.355 16.57a1.61 1.61 0 0 0 2.191 0 1.415 1.415 0 0 0 0-2.077l-7.45-7.063a1.589 1.589 0 0 0-1.1-.43c-.396.001-.79.144-1.091.43l-7.451 7.063a1.415 1.415 0 0 0 0 2.077 1.61 1.61 0 0 0 2.19 0L12 10.545l6.355 6.025Z" }) }));
4
+ const ForwardRef = forwardRef(SvgPointerUp);
5
+ export default ForwardRef;
@@ -166,6 +166,10 @@ export { default as PointerChevronDown } from './PointerChevronDown';
166
166
  export { default as PointerChevronLeft } from './PointerChevronLeft';
167
167
  export { default as PointerChevronRight } from './PointerChevronRight';
168
168
  export { default as PointerChevronUp } from './PointerChevronUp';
169
+ export { default as PointerDown } from './PointerDown';
170
+ export { default as PointerLeft } from './PointerLeft';
171
+ export { default as PointerRight } from './PointerRight';
172
+ export { default as PointerUp } from './PointerUp';
169
173
  export { default as Printer } from './Printer';
170
174
  export { default as Radio } from './Radio';
171
175
  export { default as Region } from './Region';
@@ -166,6 +166,10 @@ export { default as PointerChevronDown } from './PointerChevronDown';
166
166
  export { default as PointerChevronLeft } from './PointerChevronLeft';
167
167
  export { default as PointerChevronRight } from './PointerChevronRight';
168
168
  export { default as PointerChevronUp } from './PointerChevronUp';
169
+ export { default as PointerDown } from './PointerDown';
170
+ export { default as PointerLeft } from './PointerLeft';
171
+ export { default as PointerRight } from './PointerRight';
172
+ export { default as PointerUp } from './PointerUp';
169
173
  export { default as Printer } from './Printer';
170
174
  export { default as Radio } from './Radio';
171
175
  export { default as Region } from './Region';
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgFileRequest = (props, ref) => (_jsxs("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 32 32", role: "img", ref: ref, ...props, children: [_jsx("path", { fill: "#0061D5", d: "M2 6a4 4 0 0 1 4-4h20a4 4 0 0 1 4 4v20a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V6Z" }), _jsx("path", { fill: "white", d: "M15.5 10c1.563 0 2.94.797 3.747 2.007a5 5 0 0 1-.03 9.988L19 22h-1a1 1 0 0 1-1-1v-3h1.499a.5.5 0 0 0 .412-.784l-2.557-3.069a.499.499 0 0 0-.708 0l-2.5 3A.5.5 0 0 0 13.5 18H15l-.001 3.017-.006.1A1 1 0 0 1 14 22h-2a4 4 0 0 1-.984-7.878A4.5 4.5 0 0 1 15.5 10Z" })] }));
4
+ const ForwardRef = forwardRef(SvgFileRequest);
5
+ export default ForwardRef;
@@ -31,6 +31,7 @@ export { default as ContentSharing } from './ContentSharing';
31
31
  export { default as CustomSetup } from './CustomSetup';
32
32
  export { default as DeviceTrust } from './DeviceTrust';
33
33
  export { default as Discover } from './Discover';
34
+ export { default as FileRequest } from './FileRequest';
34
35
  export { default as Form } from './Form';
35
36
  export { default as HelpArticle } from './HelpArticle';
36
37
  export { default as HowToGuides } from './HowToGuides';
@@ -31,6 +31,7 @@ export { default as ContentSharing } from './ContentSharing';
31
31
  export { default as CustomSetup } from './CustomSetup';
32
32
  export { default as DeviceTrust } from './DeviceTrust';
33
33
  export { default as Discover } from './Discover';
34
+ export { default as FileRequest } from './FileRequest';
34
35
  export { default as Form } from './Form';
35
36
  export { default as HelpArticle } from './HelpArticle';
36
37
  export { default as HowToGuides } from './HowToGuides';
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgAlignmentCenter = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M2 6a1 1 0 0 1 1-1h18.002a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm4 6a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm-1 5a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H5Z", clipRule: "evenodd" }) }));
3
+ const SvgAlignmentCenter = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M3 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm3 5a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm-1 4a1 1 0 1 0 0 2h14a1 1 0 1 0 0-2H5Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgAlignmentCenter);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgAlignmentFill = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M2 6a1 1 0 0 1 1-1h18.002a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2H3Z", clipRule: "evenodd" }) }));
3
+ const SvgAlignmentFill = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M3.001 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm0 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h16a1 1 0 1 0 0-2H4Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgAlignmentFill);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgAlignmentLeft = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M2 6a1 1 0 0 1 1-1h18.002a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm0 6a1 1 0 0 1 1-1h11.001a1 1 0 1 1 0 2h-11a1 1 0 0 1-1-1Zm1 5a1 1 0 1 0 0 2h15.002a1 1 0 1 0 0-2H3Z", clipRule: "evenodd" }) }));
3
+ const SvgAlignmentLeft = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M3.001 7a1 1 0 0 1 1-1h16a1 1 0 0 1 0 2h-16a1 1 0 0 1-1-1Zm0 5a1 1 0 0 1 1-1h10a1 1 0 0 1 0 2h-10a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h13a1 1 0 0 0 0-2h-13Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgAlignmentLeft);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgAlignmentRight = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M2 6a1 1 0 0 1 1-1h18.002a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm7 6a1 1 0 0 1 1-1h11.001a1 1 0 1 1 0 2H10a1 1 0 0 1-1-1Zm-3 5a1 1 0 1 0 0 2h15.002a1 1 0 1 0 0-2H6Z", clipRule: "evenodd" }) }));
3
+ const SvgAlignmentRight = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M3 7a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm6 5a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2H10a1 1 0 0 1-1-1Zm-2 4a1 1 0 1 0 0 2h13a1 1 0 1 0 0-2H7Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgAlignmentRight);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgBold = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M8.8 3A2.8 2.8 0 0 0 6 5.8V18.43A2.571 2.571 0 0 0 8.571 21H13.5a5.5 5.5 0 0 0 2.337-10.48A4.5 4.5 0 0 0 12.5 3H8.8Zm3.7 7a2.5 2.5 0 0 0 0-5H8.8a.8.8 0 0 0-.8.8V10h4.5ZM8 12v6.43c0 .315.256.57.571.57H13.5a3.5 3.5 0 1 0 0-7H8Z", clipRule: "evenodd" }) }));
3
+ const SvgBold = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M8.6 4A2.6 2.6 0 0 0 6 6.6V17.57A2.429 2.429 0 0 0 8.429 20H13a5 5 0 0 0 2.14-9.52A4 4 0 0 0 12 4H8.6Zm3.4 6a2 2 0 1 0 0-4H8.6a.6.6 0 0 0-.6.6V10h4Zm-4 2v5.571c0 .237.192.429.429.429H13a3 3 0 0 0 0-6H8Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgBold);
5
5
  export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgBubbleQuestion = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M4 11c0-2.297.683-3.999 1.926-5.138C7.18 4.712 9.155 4 12 4c2.845 0 4.819.711 6.074 1.862C19.317 7.001 20 8.702 20 11c0 2.297-.683 3.999-1.926 5.138C16.82 17.288 14.845 18 12 18h-.459a1.1 1.1 0 0 0-.774.318C9.665 19.41 8.243 20.048 7.16 20.2c-.553.078-.905.013-1.07-.065C6 20.09 6 20.084 6 20V20c0-.22.072-.347.361-.813.285-.458.665-1.104.685-2.104a1.1 1.1 0 0 0-.606-1.005C4.885 15.298 4 13.745 4 11Zm8-9c-3.155 0-5.681.789-7.426 2.388C2.817 5.999 2 8.298 2 11c0 2.938.91 5.227 2.966 6.539a2.79 2.79 0 0 1-.303.592l-.055.088C4.372 18.591 4 19.18 4 20c0 .912.496 1.59 1.23 1.94.657.313 1.453.345 2.205.24 1.428-.2 3.108-.95 4.464-2.18H12c3.155 0 5.681-.789 7.426-2.388C21.183 16.001 22 13.702 22 11c0-2.703-.817-5.001-2.574-6.612C17.68 2.788 15.155 2 12 2Zm-.286 10.992c-.247 0-.444-.077-.59-.231a.855.855 0 0 1-.22-.608v-.194c0-.272.05-.515.15-.728.1-.217.24-.414.42-.593.18-.181.39-.352.631-.513.254-.168.46-.323.621-.467.164-.143.284-.295.36-.456.078-.164.116-.356.116-.576 0-.227-.058-.426-.175-.598a1.154 1.154 0 0 0-.471-.403 1.523 1.523 0 0 0-.666-.142c-.207 0-.396.033-.566.1-.17.066-.319.175-.446.325a1.697 1.697 0 0 0-.3.576.89.89 0 0 1-.316.404.85.85 0 0 1-.486.141c-.24 0-.43-.073-.57-.22C9.067 8.662 9 8.47 9 8.233c0-.123.015-.247.045-.372.03-.126.075-.252.135-.378.144-.304.35-.566.621-.786.274-.224.595-.395.962-.514.367-.122.77-.183 1.207-.183.588 0 1.108.105 1.563.314.457.207.816.505 1.076.897.26.388.391.852.391 1.394 0 .496-.12.926-.36 1.29-.238.359-.585.688-1.042.985a6.288 6.288 0 0 0-.646.471c-.15.133-.26.266-.331.398a1.34 1.34 0 0 0-.13.472 1.205 1.205 0 0 0-.015.126.783.783 0 0 1-.246.477c-.13.112-.302.168-.516.168Zm-.497 2.874c.151.09.32.134.503.134a.975.975 0 0 0 .865-.499.947.947 0 0 0 .138-.504.947.947 0 0 0-.138-.503 1 1 0 0 0-1.729 0 .973.973 0 0 0-.133.503c0 .185.044.354.133.504.092.155.213.276.36.365Z", clipRule: "evenodd" }) }));
4
+ const ForwardRef = forwardRef(SvgBubbleQuestion);
5
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgBubbleText = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M4 11c0-2.297.683-3.999 1.926-5.138C7.18 4.712 9.155 4 12 4c2.845 0 4.819.711 6.074 1.862C19.317 7.001 20 8.702 20 11c0 2.297-.683 3.999-1.926 5.138C16.82 17.288 14.845 18 12 18h-.459a1.1 1.1 0 0 0-.774.318C9.665 19.41 8.243 20.048 7.16 20.2c-.553.078-.905.013-1.07-.065C6 20.09 6 20.084 6 20V20c0-.22.072-.347.361-.813.285-.458.665-1.104.685-2.104a1.1 1.1 0 0 0-.606-1.005C4.885 15.298 4 13.745 4 11Zm8-9c-3.155 0-5.681.789-7.426 2.388C2.817 5.999 2 8.298 2 11c0 2.938.91 5.227 2.966 6.539a2.79 2.79 0 0 1-.303.592l-.055.088C4.372 18.591 4 19.18 4 20c0 .912.496 1.59 1.23 1.94.657.313 1.453.345 2.205.24 1.428-.2 3.108-.95 4.464-2.18H12c3.155 0 5.681-.789 7.426-2.388C21.183 16.001 22 13.702 22 11c0-2.703-.817-5.001-2.574-6.612C17.68 2.788 15.155 2 12 2ZM8 7.25a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5H8ZM7.25 11a.75.75 0 0 1 .75-.75h8a.75.75 0 0 1 0 1.5H8a.75.75 0 0 1-.75-.75ZM8 13.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5H8Z", clipRule: "evenodd" }) }));
4
+ const ForwardRef = forwardRef(SvgBubbleText);
5
+ export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgBulletList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M4.111 9c1.166 0 2.111-.895 2.111-2s-.945-2-2.11-2C2.944 5 2 5.895 2 7s.945 2 2.111 2ZM9 7a1 1 0 0 1 1-1H21a1 1 0 1 1 0 2h-11A1 1 0 0 1 9 7ZM4.111 19c1.166 0 2.111-.895 2.111-2s-.945-2-2.11-2C2.944 15 2 15.895 2 17s.945 2 2.111 2ZM10 16a1 1 0 1 0 0 2h11.001a1 1 0 1 0 0-2H10Z", clipRule: "evenodd" }) }));
3
+ const SvgBulletList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M5 9a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm4-1.999a1 1 0 0 1 1-1H20a1 1 0 1 1 0 2h-10a1 1 0 0 1-1.001-1ZM5 19a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm5-2.999a1 1 0 1 0 0 2h10.001a1 1 0 1 0 0-2H10Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgBulletList);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgCheckList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 26 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M8.358 4.406a1 1 0 0 0-1.828-.812L4.867 7.335 3.67 6.257A1 1 0 1 0 2.33 7.743l2.222 2a1 1 0 0 0 1.583-.337l2.222-5ZM12 6.001a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H12Zm0 10a1 1 0 0 0 0 2L23 18a1 1 0 0 0 0-2H12Zm-4.15-2.915a1 1 0 0 1 .508 1.32l-2.222 5a1 1 0 0 1-1.583.337l-2.222-2a1 1 0 1 1 1.338-1.486l1.198 1.078 1.663-3.741a1 1 0 0 1 1.32-.508Z", clipRule: "evenodd" }) }));
3
+ const SvgCheckList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M8.932 4.363a1 1 0 1 0-1.864-.726L5.656 7.26l-.973-.91a1 1 0 0 0-1.366 1.46l2.05 1.92a1 1 0 0 0 1.616-.367l1.949-5ZM11 6a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2h-9ZM11 16a1 1 0 0 0 0 2h9a1 1 0 0 0 0-2h-9Zm-2.637-2.932a1 1 0 0 1 .569 1.295l-1.95 5a1 1 0 0 1-1.614.367l-2.051-1.92a1 1 0 0 1 1.366-1.46l.973.91 1.412-3.623a1 1 0 0 1 1.295-.569Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgCheckList);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgColor = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M11.406 5.446c.177-.59 1.011-.59 1.188 0l2.262 7.546H9.144l2.262-7.546Zm-2.862 9.546-1.586 5.292a1 1 0 0 1-1.916-.574L9.49 4.872c.747-2.49 4.273-2.49 5.02 0l4.448 14.838a1 1 0 1 1-1.916.574l-1.586-5.292H8.544Z", clipRule: "evenodd" }) }));
3
+ const SvgColor = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M11.547 6.346c.128-.46.779-.46.906 0l1.844 6.648-4.591-.01 1.841-6.638Zm-2.396 8.638-1.187 4.28a1 1 0 0 1-1.927-.534L9.62 5.81c.67-2.413 4.091-2.413 4.76 0l3.584 12.919a1 1 0 1 1-1.927.534l-1.185-4.269-5.7-.011Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgColor);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgDownload = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M12 2a1 1 0 0 1 1 1v10.586l3.293-3.293a1 1 0 1 1 1.414 1.414L13.414 16a2 2 0 0 1-2.828 0l-4.293-4.293a1 1 0 1 1 1.414-1.414L11 13.586V3a1 1 0 0 1 1-1ZM3 15a1 1 0 0 1 1 1v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2a1 1 0 1 1 2 0v2a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4v-2a1 1 0 0 1 1-1Z", clipRule: "evenodd" }) }));
3
+ const SvgDownload = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M12 3a1 1 0 0 1 1 1v9.9l3.261-3.574a1 1 0 1 1 1.478 1.348l-4.262 4.67a2 2 0 0 1-2.954 0l-4.262-4.67a1 1 0 1 1 1.478-1.348L11 13.9V4a1 1 0 0 1 1-1ZM4 14a1 1 0 0 1 1 1v2a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2a1 1 0 1 1 2 0v2a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4v-2a1 1 0 0 1 1-1Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgDownload);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgItalic = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M9 5a1 1 0 0 1 1-1h10a1 1 0 1 1 0 2h-4.34l-5.143 12H14a1 1 0 1 1 0 2H9.044a.997.997 0 0 1-.09 0H4a1 1 0 1 1 0-2h4.34l5.144-12H10a1 1 0 0 1-1-1Z", clipRule: "evenodd" }) }));
3
+ const SvgItalic = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M14.031 5H18a1 1 0 1 1 0 2h-3.28l-3.333 10H14a1 1 0 1 1 0 2h-3.99a.56.56 0 0 1-.019 0H6a1 1 0 1 1 0-2h3.28l3.333-10H10a1 1 0 1 1 0-2h4.031Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgItalic);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgNumberList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M2.475 10.145a.1.1 0 0 1 .097-.101h1.43V5.848c0-.205.005-.42.016-.645l-.9.782a.624.624 0 0 1-.174.109.542.542 0 0 1-.425-.035.588.588 0 0 1-.164-.142l-.257-.358a.524.524 0 0 1 .075-.694l1.981-1.74A.5.5 0 0 1 4.484 3h.708a.5.5 0 0 1 .5.5v6.543h1.211a.1.1 0 0 1 .097.102v1.076a.1.1 0 0 1-.097.101H2.572a.1.1 0 0 1-.097-.101v-1.076ZM10 6a1 1 0 0 0 0 2h11a1 1 0 1 0 0-2H10Zm0 10a1 1 0 1 0 0 2h11a1 1 0 1 0 0-2H10Zm-4.436-2.367a2.594 2.594 0 0 0-.947-.163c-.325 0-.63.046-.913.138a2.196 2.196 0 0 0-.757.409 2.366 2.366 0 0 0-.551.69c-.082.153-.148.32-.2.503-.074.257.11.507.372.555l.33.061a1.461 1.461 0 0 0 .22.02.474.474 0 0 0 .322-.101.731.731 0 0 0 .2-.333.948.948 0 0 1 .576-.598.914.914 0 0 1 .313-.05c.277 0 .482.08.616.24.136.156.205.383.205.68a2.054 2.054 0 0 1-.254 1.001c-.085.16-.192.324-.323.491-.13.167-.283.343-.459.527l-2.05 2.162a.766.766 0 0 0-.205.307.968.968 0 0 0-.059.317v.011a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-.42a.49.49 0 0 0-.142-.368.518.518 0 0 0-.385-.143H5.145c-.153 0-.318.017-.494.05-.172.031-.348.074-.527.128l1.392-1.492c.188-.201.366-.399.532-.593.17-.198.317-.4.444-.609.127-.21.226-.432.298-.664.075-.232.112-.484.112-.757 0-.317-.053-.606-.16-.869a1.898 1.898 0 0 0-.455-.685c-.198-.19-.44-.339-.723-.445Z", clipRule: "evenodd" }) }));
3
+ const SvgNumberList = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M3.475 9.868c0-.053.043-.097.097-.097h1.43V5.738c0-.198.005-.404.016-.62l-.9.752a.629.629 0 0 1-.174.104.562.562 0 0 1-.425-.033.58.58 0 0 1-.164-.137l-.257-.344a.49.49 0 0 1 .075-.667l1.989-1.68A.48.48 0 0 1 5.472 3h.739a.48.48 0 0 1 .48.48v6.29h1.212c.054 0 .097.045.097.098v1.034a.097.097 0 0 1-.097.098H3.572a.097.097 0 0 1-.097-.098V9.868ZM11 6a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2h-9Zm0 10a1 1 0 1 0 0 2h9a1 1 0 1 0 0-2h-9Zm-4.436-2.848A2.768 2.768 0 0 0 5.617 13c-.325 0-.63.043-.913.128-.283.083-.535.21-.757.38a2.238 2.238 0 0 0-.749 1.101c-.075.242.099.478.348.521l.352.06a1.543 1.543 0 0 0 .22.02.497.497 0 0 0 .322-.095.673.673 0 0 0 .2-.31.917.917 0 0 1 .576-.556.977.977 0 0 1 .313-.047c.277 0 .482.075.616.224.136.145.205.356.205.632 0 .168-.022.328-.064.48-.042.149-.106.3-.19.451a3.096 3.096 0 0 1-.323.456 6.68 6.68 0 0 1-.459.49l-2.05 2.01a.712.712 0 0 0-.205.285.844.844 0 0 0-.059.295v.01c0 .257.208.465.465.465h4.07A.465.465 0 0 0 8 19.535v-.39a.44.44 0 0 0-.142-.343.54.54 0 0 0-.385-.133H6.145c-.153 0-.318.016-.494.048a4.818 4.818 0 0 0-.527.119l1.392-1.388c.188-.187.366-.37.532-.551.17-.184.317-.372.444-.566a2.71 2.71 0 0 0 .298-.617c.075-.216.112-.45.112-.704 0-.294-.053-.564-.16-.808a1.76 1.76 0 0 0-.455-.636 2.105 2.105 0 0 0-.723-.414Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgNumberList);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgStrikethrough = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M9 7c0-.612.285-1.072.805-1.418C10.354 5.216 11.148 5 12 5c.827 0 1.425.206 1.803.395a2.695 2.695 0 0 1 .491.315l.009.008a1 1 0 0 0 1.404-1.424l-.701.701c.701-.701.701-.701.7-.702l-.002-.002-.003-.003-.008-.008-.02-.02a3.424 3.424 0 0 0-.26-.216 4.696 4.696 0 0 0-.716-.438C14.075 3.295 13.174 3 12 3c-1.148 0-2.354.284-3.305.918C7.715 4.572 7 5.612 7 7c0 .8.385 1.505.668 1.93a5.772 5.772 0 0 0 .602.754l.015.015.005.005.002.002v.001L9 9l-.707.707A1 1 0 0 0 9.71 8.295l-.002-.002h.001v.002-.002a1.61 1.61 0 0 1-.105-.116 3.774 3.774 0 0 1-.271-.357C9.115 7.496 9 7.2 9 7Zm-6 5a1 1 0 0 1 1-1h16a1 1 0 1 1 0 2h-3.187c.736.812 1.187 1.835 1.187 3 0 2.959-2.906 5-6 5s-6-2.041-6-5a1 1 0 1 1 2 0c0 1.46 1.571 3 4 3 2.429 0 4-1.54 4-3s-1.571-3-4-3H4a1 1 0 0 1-1-1Z", clipRule: "evenodd" }) }));
3
+ const SvgStrikethrough = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M10 7.5c0-.456.15-.792.408-1.024.268-.24.774-.476 1.68-.476.787 0 1.335.19 1.683.366.27.137.37.222.474.31.053.046.107.092.186.146a1 1 0 1 0 1.138-1.644c.13.09-.352-.322-.894-.597C14.07 4.275 13.215 4 12.089 4c-1.24 0-2.279.324-3.018.988-.75.673-1.07 1.588-1.07 2.512 0 .277.043.545.124.801l.003.012.005.012c.298.867.932 1.322 1.422 1.568a1 1 0 1 0 .898-1.786c-.226-.114-.358-.238-.425-.42A.652.652 0 0 1 10 7.5ZM4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2h-2.818c.525.701.838 1.553.838 2.5 0 2.61-2.382 4.5-5.02 4.5-2.419 0-4.594-1.57-4.966-3.838a1 1 0 0 1 1.973-.324C9.192 16.962 10.368 18 12 18c1.803 0 3.02-1.245 3.02-2.5S13.803 13 12 13H5a1 1 0 0 1-1-1Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgStrikethrough);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgTable = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M19 5h-9v4h10V6a1 1 0 0 0-1-1Zm1 6H10v8h9a1 1 0 0 0 1-1v-7ZM8 9V5H5a1 1 0 0 0-1 1v3h4Zm-4 2h4v8H5a1 1 0 0 1-1-1v-7Zm1-8a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3H5Z", clipRule: "evenodd" }) }));
3
+ const SvgTable = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M18 6h-7v4h9V8a2 2 0 0 0-2-2Zm2 6h-9v6h7a2 2 0 0 0 2-2v-4ZM9 10V6H6a2 2 0 0 0-2 2v2h5Zm-5 2h5v6H6a2 2 0 0 1-2-2v-4Zm2-8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4H6Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgTable);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgUnderline = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M8 4a1 1 0 0 0-2 0v7a6 6 0 0 0 12 0V4a1 1 0 1 0-2 0v7a4 4 0 0 1-8 0V4ZM5 19a1 1 0 0 0 0 2h14a1 1 0 0 0 0-2H5Z", clipRule: "evenodd" }) }));
3
+ const SvgUnderline = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M9 5a1 1 0 1 0-2 0v6a5 5 0 0 0 10 0V5a1 1 0 1 0-2 0v6a3 3 0 0 1-6 0V5ZM6 18a1 1 0 0 0 0 2h12a1 1 0 0 0 0-2H6Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgUnderline);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgUpload = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M16.293 8.707a1 1 0 1 0 1.414-1.414L13.414 3a2 2 0 0 0-2.828 0L6.293 7.293a1 1 0 0 0 1.414 1.414L11 5.414V16a1 1 0 1 0 2 0V5.414l3.293 3.293ZM3 15a1 1 0 0 1 1 1v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2a1 1 0 1 1 2 0v2a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4v-2a1 1 0 0 1 1-1Z", clipRule: "evenodd" }) }));
3
+ const SvgUpload = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M6.261 8.326A1 1 0 1 0 7.74 9.674L11 6.1V16a1 1 0 1 0 2 0V6.1l3.261 3.574a1 1 0 1 0 1.478-1.348l-4.262-4.67a2 2 0 0 0-2.954 0L6.26 8.326ZM4 14a1 1 0 0 1 1 1v2a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-2a1 1 0 1 1 2 0v2a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4v-2a1 1 0 0 1 1-1Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgUpload);
5
5
  export default ForwardRef;
@@ -13,6 +13,8 @@ export { default as Bell } from './Bell';
13
13
  export { default as Bold } from './Bold';
14
14
  export { default as Brain } from './Brain';
15
15
  export { default as Broom } from './Broom';
16
+ export { default as BubbleQuestion } from './BubbleQuestion';
17
+ export { default as BubbleText } from './BubbleText';
16
18
  export { default as BulletList } from './BulletList';
17
19
  export { default as Canvas } from './Canvas';
18
20
  export { default as Check } from './Check';
@@ -13,6 +13,8 @@ export { default as Bell } from './Bell';
13
13
  export { default as Bold } from './Bold';
14
14
  export { default as Brain } from './Brain';
15
15
  export { default as Broom } from './Broom';
16
+ export { default as BubbleQuestion } from './BubbleQuestion';
17
+ export { default as BubbleText } from './BubbleText';
16
18
  export { default as BulletList } from './BulletList';
17
19
  export { default as Canvas } from './Canvas';
18
20
  export { default as Check } from './Check';
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgCheck = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Zm3.78-11.375a1 1 0 1 0-1.56-1.25l-3.303 4.128-1.21-1.21a1 1 0 0 0-1.414 1.414l1.92 1.921a1.1 1.1 0 0 0 1.638-.09l3.93-4.913Z", clipRule: "evenodd" }) }));
4
+ const ForwardRef = forwardRef(SvgCheck);
5
+ export default ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ForwardRef: React.ForwardRefExoticComponent<Omit<React.SVGProps<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
3
+ export default ForwardRef;
@@ -0,0 +1,5 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ const SvgNotes = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M15.627 3a3 3 0 0 1 4.098-1.098l.866.5A3 3 0 0 1 21.69 6.5l-1 1.733-6.015 10.419a2.985 2.985 0 0 1-.944 1l-4.02 2.655a1.15 1.15 0 0 1-1.782-1.028l.289-4.81c.027-.463.16-.912.394-1.317l6.016-10.42 1-1.732Zm3.098.634A1 1 0 0 0 17.36 4l-.69 1.197c.353.479.725.813 1.128 1.046.402.232.878.387 1.47.454l.69-1.197a1 1 0 0 0-.366-1.366l-.866-.5ZM12.837 17.8a5.36 5.36 0 0 1-1.39-.557 5.36 5.36 0 0 1-1.179-.926.998.998 0 0 0-.055.273l-.187 3.113 2.602-1.719a1 1 0 0 0 .21-.184ZM3 3a1 1 0 1 0 0 2h8a1 1 0 1 0 0-2H3ZM2 9a1 1 0 0 1 1-1h5a1 1 0 1 1 0 2H3a1 1 0 0 1-1-1Zm1 4a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2H3Z", clipRule: "evenodd" }) }));
4
+ const ForwardRef = forwardRef(SvgNotes);
5
+ export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgThumbsDown = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M18.996 8c0-1.688-.28-3.02-.578-4h1.224c.422 0 .728.249.816.558.26.918.538 2.195.538 3.442 0 1.247-.277 2.524-.538 3.442-.088.31-.394.558-.816.558h-1.225c.297-.98.58-2.317.58-4Zm-8.34 13.866c1.316.292 2.32-.686 2.616-1.663.492-1.63 1.067-3.262 1.767-4.474.737-1.276 1.403-1.729 1.957-1.729h2.646c1.214 0 2.38-.747 2.74-2.011.284-1.001.614-2.48.614-3.989 0-1.51-.33-2.988-.614-3.989C22.022 2.747 20.856 2 19.642 2h-2.646c-1.9 0-2.788-.149-3.558-.32-.143-.032-.285-.065-.43-.1a17.394 17.394 0 0 0-2.79-.461c-2.344-.204-4.6.973-5.82 2.96-1.057 1.72-2.028 3.73-2.35 6.087C1.734 12.45 3.732 14 5.7 14h2.991c-.379 1.406-.767 2.942-.76 4.24.004.769.142 1.57.593 2.252.47.71 1.197 1.168 2.13 1.374Z", clipRule: "evenodd" }) }));
3
+ const SvgThumbsDown = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M18.996 8.5c0-1.578-.248-2.687-.522-3.5h1.286c.396 0 .655.215.734.458.245.758.502 1.843.502 3.042 0 1.199-.257 2.284-.502 3.042-.079.243-.337.458-.734.458h-1.287c.273-.814.523-1.928.523-3.5Zm-8.34 13.366c1.316.292 2.32-.686 2.616-1.663.492-1.63 1.067-3.263 1.767-4.474.737-1.276 1.403-1.729 1.957-1.729h2.764c1.12 0 2.249-.644 2.637-1.843.286-.885.6-2.185.6-3.657s-.314-2.772-.6-3.658C22.009 3.644 20.879 3 19.76 3h-2.764c-2.075 0-2.946-.177-3.788-.373L13 2.58c-.867-.204-1.822-.43-3.77-.527-1.648-.083-3.373.47-4.549 1.784-1.57 1.753-2.526 3.775-2.733 6.383C1.77 12.462 3.718 14 5.701 14h2.991c-.379 1.406-.767 2.942-.76 4.24.004.769.142 1.57.593 2.252.47.71 1.197 1.167 2.13 1.374Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgThumbsDown);
5
5
  export default ForwardRef;
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { forwardRef } from 'react';
3
- const SvgThumbsUp = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M6 15c0 1.69.285 3.023.582 4H5.354c-.422 0-.728-.249-.816-.558C4.278 17.524 4 16.247 4 15c0-1.247.278-2.524.538-3.442.088-.31.394-.558.816-.558H6.58c-.297.98-.58 2.317-.58 4Zm8.341-13.866c-1.317-.293-2.321.686-2.616 1.663-.492 1.63-1.067 3.263-1.768 4.475C9.22 8.547 8.554 9 8 9H5.354c-1.214 0-2.38.747-2.74 2.011C2.33 12.012 2 13.491 2 15.001c0 1.508.33 2.987.615 3.988C2.974 20.253 4.14 21 5.355 21H8c1.907 0 2.797.15 3.569.324.14.031.28.064.425.098.695.165 1.482.351 2.807.465 2.33.2 4.573-.968 5.792-2.941 1.066-1.727 2.044-3.745 2.363-6.12C23.262 10.546 21.265 9 19.3 9h-2.995c.379-1.404.767-2.938.76-4.237-.004-.77-.143-1.571-.594-2.253-.469-.71-1.196-1.169-2.13-1.376Z", clipRule: "evenodd" }) }));
3
+ const SvgThumbsUp = (props, ref) => (_jsx("svg", { width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", role: "img", ref: ref, ...props, children: _jsx("path", { fill: props.color || '#909090', fillRule: "evenodd", d: "M6 15.5c0 1.578.248 2.686.522 3.5H5.236c-.396 0-.655-.215-.733-.458C4.257 17.784 4 16.699 4 15.5c0-1.2.257-2.284.503-3.042.078-.243.337-.458.733-.458h1.287C6.25 12.814 6 13.927 6 15.5Zm8.34-13.367c-1.316-.291-2.32.686-2.615 1.663-.492 1.63-1.067 3.263-1.768 4.475C9.22 9.546 8.554 10 8 10H5.236c-1.119 0-2.249.644-2.636 1.842-.287.886-.6 2.186-.6 3.658 0 1.471.313 2.772.6 3.657C2.987 20.356 4.117 21 5.236 21H8c2.075 0 2.946.177 3.788.373l.208.048c.868.204 1.823.429 3.77.527 1.649.083 3.374-.47 4.55-1.784 1.569-1.753 2.525-3.775 2.732-6.383.178-2.243-1.77-3.781-3.753-3.781h-2.99c.378-1.407.767-2.942.76-4.24-.004-.77-.143-1.57-.594-2.252-.47-.71-1.196-1.168-2.13-1.375Z", clipRule: "evenodd" }) }));
4
4
  const ForwardRef = forwardRef(SvgThumbsUp);
5
5
  export default ForwardRef;
@@ -1,6 +1,7 @@
1
1
  export { default as Apps } from './Apps';
2
2
  export { default as BarChart } from './BarChart';
3
3
  export { default as Canvas } from './Canvas';
4
+ export { default as Check } from './Check';
4
5
  export { default as Clock } from './Clock';
5
6
  export { default as Collections } from './Collections';
6
7
  export { default as Favorites } from './Favorites';
@@ -10,6 +11,7 @@ export { default as Hubs } from './Hubs';
10
11
  export { default as Inbox } from './Inbox';
11
12
  export { default as Information } from './Information';
12
13
  export { default as Nav } from './Nav';
14
+ export { default as Notes } from './Notes';
13
15
  export { default as Question } from './Question';
14
16
  export { default as Relay } from './Relay';
15
17
  export { default as Search } from './Search';
@@ -1,6 +1,7 @@
1
1
  export { default as Apps } from './Apps';
2
2
  export { default as BarChart } from './BarChart';
3
3
  export { default as Canvas } from './Canvas';
4
+ export { default as Check } from './Check';
4
5
  export { default as Clock } from './Clock';
5
6
  export { default as Collections } from './Collections';
6
7
  export { default as Favorites } from './Favorites';
@@ -10,6 +11,7 @@ export { default as Hubs } from './Hubs';
10
11
  export { default as Inbox } from './Inbox';
11
12
  export { default as Information } from './Information';
12
13
  export { default as Nav } from './Nav';
14
+ export { default as Notes } from './Notes';
13
15
  export { default as Question } from './Question';
14
16
  export { default as Relay } from './Relay';
15
17
  export { default as Search } from './Search';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Mar 2025 19:46:13 GMT
3
+ * Generated on Tue, 01 Apr 2025 00:58:56 GMT
4
4
  */
5
5
 
6
6
  export const BackgroundBackground: string;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Mar 2025 19:46:13 GMT
3
+ * Generated on Tue, 01 Apr 2025 00:58:56 GMT
4
4
  */
5
5
 
6
6
  export const BackgroundBackground = '#ffffff';
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Wed, 19 Mar 2025 19:46:13 GMT
3
+ * Generated on Tue, 01 Apr 2025 00:58:57 GMT
4
4
  */
5
5
 
6
6
  :root {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/blueprint-web-assets",
3
- "version": "4.39.3",
3
+ "version": "4.40.2",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "scripts": {
6
6
  "build-local-all": "yarn nx clone-repo && yarn build-local && yarn lint-local && yarn lint-local-css",
@@ -126,7 +126,7 @@
126
126
  }
127
127
  },
128
128
  "devDependencies": {
129
- "@box/storybook-utils": "^0.9.1",
129
+ "@box/storybook-utils": "^0.9.2",
130
130
  "@types/react": "^18.0.0",
131
131
  "@types/react-dom": "^18.0.0",
132
132
  "chalk": "4.1.2",