@box/blueprint-web-assets 4.13.0 → 4.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.
Files changed (38) hide show
  1. package/illustrations/Small/FolderDownload.d.ts +3 -0
  2. package/illustrations/Small/FolderDownload.js +3 -0
  3. package/illustrations/Small/FolderDownloadError.d.ts +3 -0
  4. package/illustrations/Small/FolderDownloadError.js +3 -0
  5. package/illustrations/Small/FolderDownloadFail.d.ts +3 -0
  6. package/illustrations/Small/FolderDownloadFail.js +3 -0
  7. package/illustrations/Small/FolderDownloadSuccess.d.ts +3 -0
  8. package/illustrations/Small/FolderDownloadSuccess.js +3 -0
  9. package/illustrations/Small/FolderMove.d.ts +3 -0
  10. package/illustrations/Small/FolderMove.js +3 -0
  11. package/illustrations/Small/FolderMoveError.d.ts +3 -0
  12. package/illustrations/Small/FolderMoveError.js +3 -0
  13. package/illustrations/Small/FolderMoveFail.d.ts +3 -0
  14. package/illustrations/Small/FolderMoveFail.js +3 -0
  15. package/illustrations/Small/FolderMoveSuccess.d.ts +3 -0
  16. package/illustrations/Small/FolderMoveSuccess.js +3 -0
  17. package/illustrations/Small/FolderRestore.d.ts +3 -0
  18. package/illustrations/Small/FolderRestore.js +3 -0
  19. package/illustrations/Small/FolderRestoreError.d.ts +3 -0
  20. package/illustrations/Small/FolderRestoreError.js +3 -0
  21. package/illustrations/Small/FolderRestoreFail.d.ts +3 -0
  22. package/illustrations/Small/FolderRestoreFail.js +3 -0
  23. package/illustrations/Small/FolderRestoreSuccess.d.ts +3 -0
  24. package/illustrations/Small/FolderRestoreSuccess.js +3 -0
  25. package/illustrations/Small/FolderTrash.d.ts +3 -0
  26. package/illustrations/Small/FolderTrash.js +3 -0
  27. package/illustrations/Small/FolderTrashError.d.ts +3 -0
  28. package/illustrations/Small/FolderTrashError.js +3 -0
  29. package/illustrations/Small/FolderTrashFail.d.ts +3 -0
  30. package/illustrations/Small/FolderTrashFail.js +3 -0
  31. package/illustrations/Small/FolderTrashSuccess.d.ts +3 -0
  32. package/illustrations/Small/FolderTrashSuccess.js +3 -0
  33. package/illustrations/Small/index.d.ts +16 -0
  34. package/illustrations/Small/index.js +16 -0
  35. package/package.json +2 -2
  36. package/tokens/px-tokens.d.ts +1 -1
  37. package/tokens/px-tokens.js +1 -1
  38. package/tokens/tokens-css-vars.scss +1 -1
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderDownload: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderDownload;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderDownload = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M47.978 12.5a5.49 5.49 0 0 1-2.007 4.248A5 5 0 0 0 40.978 12H37a5.5 5.5 0 0 1 10.978.5ZM20.874 45h-7.748a4 4 0 1 0 7.748 0Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M9.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM33 27a1 1 0 0 0-1-1h-1.986a1 1 0 0 0-1 .998l-.01 4.001L27 31a1 1 0 0 0-.78 1.625l4 5a1 1 0 0 0 1.56 0l4-5 .066-.091A1 1 0 0 0 35 31l-2.01-.001L33 27Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M46 17v1a5 5 0 0 1 5 5v18a4 4 0 0 1-4 4H8.5A3.5 3.5 0 0 1 5 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.219.328a2 2 0 0 0 1.664.891H41a5 5 0 0 1 5 5ZM7 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.664.89l.22.329A4 4 0 0 0 19.605 14H41a3 3 0 0 1 3 3v1H16a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 7 41.5V12Zm40 31H12.525c.249-.527.36-1.097.415-1.641.06-.59.06-1.226.06-1.83V23a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v18a2 2 0 0 1-2 2Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderDownload;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderDownloadError: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderDownloadError;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderDownloadError = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M44 39a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1ZM45 48a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M30 26a1 1 0 0 1 1 1v.002L30.99 31 33 31a1 1 0 0 1 .846 1.534l-.065.09-4 5a1 1 0 0 1-1.562 0l-4-5A1 1 0 0 1 25 31l2.005-.001.01-4.001a1 1 0 0 1 1-.998H30Z" })] }));
3
+ export default SvgFolderDownloadError;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderDownloadFail: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderDownloadFail;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderDownloadFail = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M51 44a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm2 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-10.293-2.707a1 1 0 0 0-1.414 1.414L42.586 44l-1.293 1.293a1 1 0 0 0 1.414 1.414L44 45.414l1.293 1.293a1 1 0 0 0 1.414-1.414L45.414 44l1.293-1.293a1 1 0 0 0-1.414-1.414L44 42.586l-1.293-1.293Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M30 26a1 1 0 0 1 1 1v.002L30.99 31 33 31a1 1 0 0 1 .846 1.534l-.065.09-4 5a1 1 0 0 1-1.562 0l-4-5A1 1 0 0 1 25 31l2.005-.001.01-4.001a1 1 0 0 1 1-.998H30Z" })] }));
3
+ export default SvgFolderDownloadFail;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderDownloadSuccess: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderDownloadSuccess;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderDownloadSuccess = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M47.858 42.514a1 1 0 1 0-1.715-1.029l-2.4 4-2.103-1.753a1 1 0 1 0-1.28 1.536l3 2.5a1 1 0 0 0 1.498-.254l3-5Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M30 26a1 1 0 0 1 1 1v.002L30.99 31 33 31a1 1 0 0 1 .846 1.534l-.065.09-4 5a1 1 0 0 1-1.562 0l-4-5A1 1 0 0 1 25 31l2.005-.001.01-4.001a1 1 0 0 1 1-.998H30Z" })] }));
3
+ export default SvgFolderDownloadSuccess;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderMove: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderMove;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderMove = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M47.978 12.5a5.49 5.49 0 0 1-2.007 4.248A5 5 0 0 0 40.978 12H37a5.5 5.5 0 0 1 10.978.5ZM20.874 45h-7.748a4 4 0 1 0 7.748 0Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M9.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM26 31a1 1 0 1 0 0 2h7.586l-2.293 2.293a1 1 0 0 0 1.414 1.414l4-4a.995.995 0 0 0 .276-.522.999.999 0 0 0-.276-.892l-.011-.012-3.989-3.988a1 1 0 0 0-1.414 1.414L33.586 31H26Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M46 17v1a5 5 0 0 1 5 5v18a4 4 0 0 1-4 4H8.5A3.5 3.5 0 0 1 5 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.219.328a2 2 0 0 0 1.664.891H41a5 5 0 0 1 5 5ZM7 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.664.89l.22.329A4 4 0 0 0 19.605 14H41a3 3 0 0 1 3 3v1H16a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 7 41.5V12Zm40 31H12.525c.249-.527.36-1.097.415-1.641.06-.59.06-1.226.06-1.83V23a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v18a2 2 0 0 1-2 2Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderMove;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderMoveError: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderMoveError;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderMoveError = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M44 39a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1ZM45 48a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM23 32a1 1 0 0 1 1-1h7.586l-2.293-2.293a1 1 0 0 1 1.414-1.414l3.989 3.988.011.012a.999.999 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L31.586 33H24a1 1 0 0 1-1-1Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderMoveError;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderMoveFail: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderMoveFail;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderMoveFail = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M51 44a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm2 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-10.293-2.707a1 1 0 0 0-1.414 1.414L42.586 44l-1.293 1.293a1 1 0 0 0 1.414 1.414L44 45.414l1.293 1.293a1 1 0 0 0 1.414-1.414L45.414 44l1.293-1.293a1 1 0 0 0-1.414-1.414L44 42.586l-1.293-1.293ZM23 32a1 1 0 0 1 1-1h7.586l-2.293-2.293a1 1 0 0 1 1.414-1.414l3.989 3.988.011.012a.999.999 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L31.586 33H24a1 1 0 0 1-1-1Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderMoveFail;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderMoveSuccess: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderMoveSuccess;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderMoveSuccess = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M47.858 42.514a1 1 0 1 0-1.715-1.029l-2.4 4-2.103-1.753a1 1 0 1 0-1.28 1.536l3 2.5a1 1 0 0 0 1.498-.254l3-5Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM23 32a1 1 0 0 1 1-1h7.586l-2.293-2.293a1 1 0 0 1 1.414-1.414l3.989 3.988.011.012a.999.999 0 0 1 0 1.414l-4 4a1 1 0 0 1-1.414-1.414L31.586 33H24a1 1 0 0 1-1-1Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderMoveSuccess;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderRestore: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderRestore;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderRestore = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M47.978 12.5a5.49 5.49 0 0 1-2.007 4.248A5 5 0 0 0 40.978 12H37a5.5 5.5 0 0 1 10.978.5ZM20.874 45h-7.748a4 4 0 1 0 7.748 0Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M9.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4ZM28.707 27.293a1 1 0 0 1 0 1.414l-.293.293H33a4 4 0 0 1 0 8h-4a1 1 0 1 1 0-2h4a2 2 0 1 0 0-4h-4.586l.293.293a1 1 0 1 1-1.414 1.414l-1.93-1.93C25.163 30.596 25 30.295 25 30c0-.294.162-.595.364-.778l1.929-1.93a1 1 0 0 1 1.414 0Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M46 17v1a5 5 0 0 1 5 5v18a4 4 0 0 1-4 4H8.5A3.5 3.5 0 0 1 5 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.219.328a2 2 0 0 0 1.664.891H41a5 5 0 0 1 5 5ZM7 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.664.89l.22.329A4 4 0 0 0 19.605 14H41a3 3 0 0 1 3 3v1H16a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 7 41.5V12Zm40 31H12.525c.249-.527.36-1.097.415-1.641.06-.59.06-1.226.06-1.83V23a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v18a2 2 0 0 1-2 2Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderRestore;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderRestoreError: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderRestoreError;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderRestoreError = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M44 39a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1ZM45 48a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M26.707 28.707a1 1 0 1 0-1.414-1.414l-1.93 1.93c-.201.182-.363.483-.363.777 0 .294.162.595.364.778.011.012-.012-.012 0 0l1.929 1.93a1 1 0 0 0 1.414-1.415L26.414 31H31a2 2 0 1 1 0 4h-4a1 1 0 1 0 0 2h4a4 4 0 0 0 0-8h-4.586l.293-.293Z" })] }));
3
+ export default SvgFolderRestoreError;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderRestoreFail: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderRestoreFail;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderRestoreFail = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M51 44a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm2 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-10.293-2.707a1 1 0 0 0-1.414 1.414L42.586 44l-1.293 1.293a1 1 0 0 0 1.414 1.414L44 45.414l1.293 1.293a1 1 0 0 0 1.414-1.414L45.414 44l1.293-1.293a1 1 0 0 0-1.414-1.414L44 42.586l-1.293-1.293Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M26.707 28.707a1 1 0 1 0-1.414-1.414l-1.93 1.93c-.201.182-.363.483-.363.777 0 .294.162.595.364.778.011.012-.012-.012 0 0l1.929 1.93a1 1 0 0 0 1.414-1.415L26.414 31H31a2 2 0 1 1 0 4h-4a1 1 0 1 0 0 2h4a4 4 0 0 0 0-8h-4.586l.293-.293Z" })] }));
3
+ export default SvgFolderRestoreFail;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderRestoreSuccess: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderRestoreSuccess;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderRestoreSuccess = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M47.858 42.514a1 1 0 1 0-1.715-1.029l-2.4 4-2.103-1.753a1 1 0 1 0-1.28 1.536l3 2.5a1 1 0 0 0 1.498-.254l3-5Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M26.707 28.707a1 1 0 1 0-1.414-1.414l-1.93 1.93c-.201.182-.363.483-.363.777 0 .294.162.595.364.778.011.012-.012-.012 0 0l1.929 1.93a1 1 0 0 0 1.414-1.415L26.414 31H31a2 2 0 1 1 0 4h-4a1 1 0 1 0 0 2h4a4 4 0 0 0 0-8h-4.586l.293-.293Z" })] }));
3
+ export default SvgFolderRestoreSuccess;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderTrash: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderTrash;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderTrash = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M47.978 12.5a5.49 5.49 0 0 1-2.007 4.248A5 5 0 0 0 40.978 12H37a5.5 5.5 0 0 1 10.978.5ZM20.874 45h-7.748a4 4 0 1 0 7.748 0Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M9.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M28 26.5a1.5 1.5 0 0 1 1.5-1.5h3a1.5 1.5 0 0 1 1.5 1.5v.5h2.5a.5.5 0 0 1 0 1l-.835 9.181A2 2 0 0 1 33.674 39h-5.348a2 2 0 0 1-1.991-1.819L25.5 28a.5.5 0 0 1 0-1H28v-.5Zm5 0v.5h-4v-.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5Zm-4 4a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Zm3 0a.5.5 0 0 1 1 0v5a.5.5 0 0 1-1 0v-5Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M46 17v1a5 5 0 0 1 5 5v18a4 4 0 0 1-4 4H8.5A3.5 3.5 0 0 1 5 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.219.328a2 2 0 0 0 1.664.891H41a5 5 0 0 1 5 5ZM7 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.664.89l.22.329A4 4 0 0 0 19.605 14H41a3 3 0 0 1 3 3v1H16a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 7 41.5V12Zm40 31H12.525c.249-.527.36-1.097.415-1.641.06-.59.06-1.226.06-1.83V23a3 3 0 0 1 3-3h30a3 3 0 0 1 3 3v18a2 2 0 0 1-2 2Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderTrash;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderTrashError: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderTrashError;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderTrashError = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M44 39a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0v-5a1 1 0 0 1 1-1ZM45 48a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM27.5 25a1.5 1.5 0 0 0-1.5 1.5v.5h-2.5a.5.5 0 0 0 0 1l.835 9.181A2 2 0 0 0 26.326 39h5.348a2 2 0 0 0 1.991-1.819L34.5 28a.5.5 0 0 0 0-1H32v-.5a1.5 1.5 0 0 0-1.5-1.5h-3Zm3.5 2v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.5h4Zm-3.5 3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderTrashError;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderTrashFail: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderTrashFail;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderTrashFail = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M51 44a7 7 0 1 1-14 0 7 7 0 0 1 14 0Zm2 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-10.293-2.707a1 1 0 0 0-1.414 1.414L42.586 44l-1.293 1.293a1 1 0 0 0 1.414 1.414L44 45.414l1.293 1.293a1 1 0 0 0 1.414-1.414L45.414 44l1.293-1.293a1 1 0 0 0-1.414-1.414L44 42.586l-1.293-1.293ZM27.5 25a1.5 1.5 0 0 0-1.5 1.5v.5h-2.5a.5.5 0 0 0 0 1l.835 9.181A2 2 0 0 0 26.326 39h5.348a2 2 0 0 0 1.991-1.819L34.5 28a.5.5 0 0 0 0-1H32v-.5a1.5 1.5 0 0 0-1.5-1.5h-3Zm3.5 2v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.5h4Zm-3.5 3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderTrashFail;
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from 'react';
2
+ declare const SvgFolderTrashSuccess: (props: SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SvgFolderTrashSuccess;
@@ -0,0 +1,3 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ const SvgFolderTrashSuccess = (props) => (_jsxs("svg", { width: "1em", height: "1em", viewBox: "0 0 56 56", role: "img", ...props, children: [_jsx("g", { fill: "var(--surface-illustration-surface-box-neutral)", opacity: 0.1, children: _jsx("path", { d: "M43.971 16.748A5.5 5.5 0 1 0 35 12h3.978a5 5 0 0 1 4.993 4.748ZM11.126 45h7.748a4 4 0 1 1-7.748 0ZM44 53a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z" }) }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M7.5 12a.5.5 0 0 0 0 1h4a.5.5 0 0 0 0-1h-4Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M44 17v1a5 5 0 0 1 5 5v8a1 1 0 1 1-2 0v-8a3 3 0 0 0-3-3H14a3 3 0 0 0-3 3v16.529c0 .604 0 1.24-.06 1.83-.055.544-.166 1.114-.415 1.641H31a1 1 0 1 1 0 2H6.5A3.5 3.5 0 0 1 3 41.5V12a3 3 0 0 1 3-3h6.394a4 4 0 0 1 3.329 1.781l.218.328a2 2 0 0 0 1.665.891H39a5 5 0 0 1 5 5ZM5 12a1 1 0 0 1 1-1h6.394a2 2 0 0 1 1.665.89l.218.329A4 4 0 0 0 17.606 14H39a3 3 0 0 1 3 3v1H14a5 5 0 0 0-5 5v16.5c0 .638-.001 1.178-.05 1.657-.048.477-.138.814-.268 1.056-.191.356-.62.787-2.182.787A1.5 1.5 0 0 1 5 41.5V12Z", clipRule: "evenodd" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", d: "M47.858 42.514a1 1 0 1 0-1.715-1.029l-2.4 4-2.103-1.753a1 1 0 1 0-1.28 1.536l3 2.5a1 1 0 0 0 1.498-.254l3-5Z" }), _jsx("path", { fill: "var(--surface-illustration-surface-box-neutral)", fillRule: "evenodd", d: "M53 44a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM27.5 25a1.5 1.5 0 0 0-1.5 1.5v.5h-2.5a.5.5 0 0 0 0 1l.835 9.181A2 2 0 0 0 26.326 39h5.348a2 2 0 0 0 1.991-1.819L34.5 28a.5.5 0 0 0 0-1H32v-.5a1.5 1.5 0 0 0-1.5-1.5h-3Zm3.5 2v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v.5h4Zm-3.5 3a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Zm3 0a.5.5 0 0 0-.5.5v5a.5.5 0 0 0 1 0v-5a.5.5 0 0 0-.5-.5Z", clipRule: "evenodd" })] }));
3
+ export default SvgFolderTrashSuccess;
@@ -21,6 +21,22 @@ export { default as FileSecurityError } from './FileSecurityError';
21
21
  export { default as FileSecurityWarning } from './FileSecurityWarning';
22
22
  export { default as FileWarning } from './FileWarning';
23
23
  export { default as FinanceContract } from './FinanceContract';
24
+ export { default as FolderDownload } from './FolderDownload';
25
+ export { default as FolderDownloadError } from './FolderDownloadError';
26
+ export { default as FolderDownloadFail } from './FolderDownloadFail';
27
+ export { default as FolderDownloadSuccess } from './FolderDownloadSuccess';
28
+ export { default as FolderMove } from './FolderMove';
29
+ export { default as FolderMoveError } from './FolderMoveError';
30
+ export { default as FolderMoveFail } from './FolderMoveFail';
31
+ export { default as FolderMoveSuccess } from './FolderMoveSuccess';
32
+ export { default as FolderRestore } from './FolderRestore';
33
+ export { default as FolderRestoreError } from './FolderRestoreError';
34
+ export { default as FolderRestoreFail } from './FolderRestoreFail';
35
+ export { default as FolderRestoreSuccess } from './FolderRestoreSuccess';
36
+ export { default as FolderTrash } from './FolderTrash';
37
+ export { default as FolderTrashError } from './FolderTrashError';
38
+ export { default as FolderTrashFail } from './FolderTrashFail';
39
+ export { default as FolderTrashSuccess } from './FolderTrashSuccess';
24
40
  export { default as Gavel } from './Gavel';
25
41
  export { default as Globe } from './Globe';
26
42
  export { default as Handshake } from './Handshake';
@@ -21,6 +21,22 @@ export { default as FileSecurityError } from './FileSecurityError';
21
21
  export { default as FileSecurityWarning } from './FileSecurityWarning';
22
22
  export { default as FileWarning } from './FileWarning';
23
23
  export { default as FinanceContract } from './FinanceContract';
24
+ export { default as FolderDownload } from './FolderDownload';
25
+ export { default as FolderDownloadError } from './FolderDownloadError';
26
+ export { default as FolderDownloadFail } from './FolderDownloadFail';
27
+ export { default as FolderDownloadSuccess } from './FolderDownloadSuccess';
28
+ export { default as FolderMove } from './FolderMove';
29
+ export { default as FolderMoveError } from './FolderMoveError';
30
+ export { default as FolderMoveFail } from './FolderMoveFail';
31
+ export { default as FolderMoveSuccess } from './FolderMoveSuccess';
32
+ export { default as FolderRestore } from './FolderRestore';
33
+ export { default as FolderRestoreError } from './FolderRestoreError';
34
+ export { default as FolderRestoreFail } from './FolderRestoreFail';
35
+ export { default as FolderRestoreSuccess } from './FolderRestoreSuccess';
36
+ export { default as FolderTrash } from './FolderTrash';
37
+ export { default as FolderTrashError } from './FolderTrashError';
38
+ export { default as FolderTrashFail } from './FolderTrashFail';
39
+ export { default as FolderTrashSuccess } from './FolderTrashSuccess';
24
40
  export { default as Gavel } from './Gavel';
25
41
  export { default as Globe } from './Globe';
26
42
  export { default as Handshake } from './Handshake';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@box/blueprint-web-assets",
3
- "version": "4.13.0",
3
+ "version": "4.14.0",
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",
@@ -100,5 +100,5 @@
100
100
  "devDependencies": {
101
101
  "chalk": "4.1.2"
102
102
  },
103
- "gitHead": "c6d3c5d48fc230d53b1a2a4c260b528580c2ccd8"
103
+ "gitHead": "94b514f3d5c822005692ac910b25889897f866a0"
104
104
  }
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Do not edit directly
3
- * Generated on Tue, 04 Jun 2024 16:04:44 GMT
3
+ * Generated on Wed, 12 Jun 2024 14:10:19 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 Tue, 04 Jun 2024 16:04:44 GMT
3
+ * Generated on Wed, 12 Jun 2024 14:10:19 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 Tue, 04 Jun 2024 16:04:44 GMT
3
+ * Generated on Wed, 12 Jun 2024 14:10:19 GMT
4
4
  */
5
5
 
6
6
  :root {