@imtf/icons 0.3.1 → 0.3.3

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 (44) hide show
  1. package/lib/cjs/icons/AccountEntityIcon.d.ts +7 -0
  2. package/lib/cjs/icons/AccountEntityIcon.js +37 -0
  3. package/lib/cjs/icons/CollectSignatureIcon.d.ts +7 -0
  4. package/lib/cjs/icons/CollectSignatureIcon.js +39 -0
  5. package/lib/cjs/icons/DocumentIcon.d.ts +7 -0
  6. package/lib/cjs/icons/DocumentIcon.js +37 -0
  7. package/lib/cjs/icons/EditSignatureIcon.d.ts +7 -0
  8. package/lib/cjs/icons/EditSignatureIcon.js +37 -0
  9. package/lib/cjs/icons/index.d.ts +4 -0
  10. package/lib/cjs/icons/index.js +4 -0
  11. package/lib/cjs/index.d.ts +3 -2
  12. package/lib/cjs/index.js +1 -0
  13. package/lib/cjs/providers/index.d.ts +4 -4
  14. package/lib/cjs/types/iconTypes.d.ts +6 -0
  15. package/lib/cjs/types/iconTypes.js +2 -0
  16. package/lib/cjs/types/index.d.ts +1 -0
  17. package/lib/cjs/types/index.js +17 -0
  18. package/lib/esm/icons/AccountEntityIcon.d.ts +7 -0
  19. package/lib/esm/icons/AccountEntityIcon.js +30 -0
  20. package/lib/esm/icons/CollectSignatureIcon.d.ts +7 -0
  21. package/lib/esm/icons/CollectSignatureIcon.js +32 -0
  22. package/lib/esm/icons/DocumentIcon.d.ts +7 -0
  23. package/lib/esm/icons/DocumentIcon.js +30 -0
  24. package/lib/esm/icons/EditSignatureIcon.d.ts +7 -0
  25. package/lib/esm/icons/EditSignatureIcon.js +30 -0
  26. package/lib/esm/icons/index.d.ts +4 -0
  27. package/lib/esm/icons/index.js +4 -0
  28. package/lib/esm/index.d.ts +3 -2
  29. package/lib/esm/index.js +3 -2
  30. package/lib/esm/providers/index.d.ts +4 -4
  31. package/lib/esm/providers/index.js +4 -4
  32. package/lib/esm/types/iconTypes.d.ts +6 -0
  33. package/lib/esm/types/iconTypes.js +1 -0
  34. package/lib/esm/types/index.d.ts +1 -0
  35. package/lib/esm/types/index.js +1 -0
  36. package/package.json +1 -1
  37. package/svg/AccountEntity.svg +3 -0
  38. package/svg/CollectSignature.svg +4 -0
  39. package/svg/Document.svg +3 -0
  40. package/svg/EditSignature.svg +3 -0
  41. package/svg/accountEntity.json +4 -0
  42. package/svg/collectSignature.json +4 -0
  43. package/svg/document.json +4 -0
  44. package/svg/editSignature.json +4 -0
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function AccountEntityIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default AccountEntityIcon;
@@ -0,0 +1,37 @@
1
+ const {
2
+ createElement,
3
+ forwardRef,
4
+ useContext,
5
+ useMemo
6
+ } = require('react');
7
+ const {
8
+ IconContext
9
+ } = require('../providers');
10
+ const get = require('lodash.get');
11
+ const AccountEntityIcon = ({
12
+ color: defaultColor,
13
+ size,
14
+ ...props
15
+ }, ref) => {
16
+ const defaultContextValues = useContext(IconContext);
17
+ const defaultValues = {
18
+ ...defaultContextValues,
19
+ color: defaultColor || defaultContextValues.color,
20
+ size: size || defaultContextValues.size,
21
+ ...props
22
+ };
23
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
24
+ return /*#__PURE__*/createElement("svg", Object.assign({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ viewBox: "0 0 24 24",
27
+ width: defaultValues.size,
28
+ height: defaultValues.size,
29
+ fill: color,
30
+ color: color,
31
+ ref: ref
32
+ }, props), /*#__PURE__*/createElement("path", {
33
+ d: "m19.125 15.063 1.406 1.406L16 21l-3-3 1.406-1.406L16 18.187l3.125-3.125zM17 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m-6-4c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2m0-2c-2.206 0-4 1.794-4 4s1.794 4 4 4c.3 0 .594-.03.875-.094.66-1.09 1.653-1.978 2.844-2.47.174-.45.28-.923.28-1.436 0-2.206-1.796-4-4-4zM4 7c-.552 0-1 .448-1 1v6c0 .552.448 1 1 1s1-.448 1-1V8c0-.552-.448-1-1-1M0 3v16h1v1h3v-1h7.094c-.055-.326-.094-.66-.094-1s.04-.674.094-1H2V5h15v7c.702 0 1.374.122 2 .344V8h1V6h-1V3z"
34
+ }));
35
+ };
36
+ const ForwardRef = forwardRef(AccountEntityIcon);
37
+ module.exports = ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function CollectSignatureIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default CollectSignatureIcon;
@@ -0,0 +1,39 @@
1
+ const {
2
+ createElement,
3
+ forwardRef,
4
+ useContext,
5
+ useMemo
6
+ } = require('react');
7
+ const {
8
+ IconContext
9
+ } = require('../providers');
10
+ const get = require('lodash.get');
11
+ const CollectSignatureIcon = ({
12
+ color: defaultColor,
13
+ size,
14
+ ...props
15
+ }, ref) => {
16
+ const defaultContextValues = useContext(IconContext);
17
+ const defaultValues = {
18
+ ...defaultContextValues,
19
+ color: defaultColor || defaultContextValues.color,
20
+ size: size || defaultContextValues.size,
21
+ ...props
22
+ };
23
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
24
+ return /*#__PURE__*/createElement("svg", Object.assign({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ viewBox: "0 0 207.996 207.996",
27
+ width: defaultValues.size,
28
+ height: defaultValues.size,
29
+ fill: color,
30
+ color: color,
31
+ ref: ref
32
+ }, props), /*#__PURE__*/createElement("path", {
33
+ d: "m179.653 63.761 2.631 2.631c-1.913 5.198-7.541 17.813-21.427 33.452-18.784 21.156-25.584 26.941-25.64 26.988-2.123 1.766-2.413 4.918-.646 7.041.989 1.189 2.412 1.803 3.847 1.803 1.127 0 2.26-.379 3.194-1.156.286-.237 7.225-6.075 26.723-28.037 20.07-22.604 24.336-39.578 24.508-40.289.409-1.693-.093-3.478-1.325-4.709l-6.4-6.401c1.207-2.043 2.32-4.016 3.315-5.903L162.91 23.658c-.56-.56-.94-1.223-1.179-1.925-17.853 9.235-40.254 26.944-60.448 45.887l41.543 41.543c14.781-15.724 27.515-31.413 36.827-45.402"
34
+ }), /*#__PURE__*/createElement("path", {
35
+ d: "M202.996 182.926H42.776c20.938-2.578 59.475-32.851 89.509-62.886 1.217-1.217 2.422-2.437 3.618-3.658L94.059 74.538c-1.232 1.205-2.455 2.41-3.661 3.616-20.84 20.84-38.628 42.312-50.089 60.46-10.789 17.084-14.845 29.182-12.274 36.719l-6.111 6.111c-.44.44-.766.947-1.008 1.482H5c-2.761 0-5 2.238-5 5s2.239 5 5 5h197.996c2.761 0 5-2.238 5-5s-2.239-5-5-5m-168.413 0 .549-.549c.714.239 1.465.426 2.26.549zM191.945 18.494c-2.271-2.271-5.394-3.424-9.28-3.424-3.365 0-7.313.9-11.685 2.517l21.888 21.888c3.66-9.786 3.341-16.718-.923-20.981"
36
+ }));
37
+ };
38
+ const ForwardRef = forwardRef(CollectSignatureIcon);
39
+ module.exports = ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function DocumentIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default DocumentIcon;
@@ -0,0 +1,37 @@
1
+ const {
2
+ createElement,
3
+ forwardRef,
4
+ useContext,
5
+ useMemo
6
+ } = require('react');
7
+ const {
8
+ IconContext
9
+ } = require('../providers');
10
+ const get = require('lodash.get');
11
+ const DocumentIcon = ({
12
+ color: defaultColor,
13
+ size,
14
+ ...props
15
+ }, ref) => {
16
+ const defaultContextValues = useContext(IconContext);
17
+ const defaultValues = {
18
+ ...defaultContextValues,
19
+ color: defaultColor || defaultContextValues.color,
20
+ size: size || defaultContextValues.size,
21
+ ...props
22
+ };
23
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
24
+ return /*#__PURE__*/createElement("svg", Object.assign({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ viewBox: "0 0 24 24",
27
+ width: defaultValues.size,
28
+ height: defaultValues.size,
29
+ fill: color,
30
+ color: color,
31
+ ref: ref
32
+ }, props), /*#__PURE__*/createElement("path", {
33
+ d: "M15.4077308-.00014373c.6132252-.00414613 1.2056503.22089233 1.6690817.63629555l3.9440671 3.61572355c.4597012.41099112.7245328.99702743.7291204 1.61912463l-.0007611 15.9127807c-.0552089 1.2245041-1.0502444 2.185672-2.2303276 2.2174058l-15.01037395-.0005734C3.30100417 23.9693941 2.30593828 23.0068773 2.25 21.75l.00076114-19.53378071C2.30572405.99717019 3.2921587.0391162 4.49241203-.00014373zM15.413 1.4999758l-10.91118364.0014611C4.09581843 1.53494389 3.76811517 1.86381376 3.75 2.25l-.00076114 19.4662193c.02038591.4521491.4033467.8032504.88676114.7837807l14.7591869.0006487c.4522275.018821.8351883-.3322803.8548337-.7506487V5.8765554c-.0014328-.19341928-.0845724-.37739594-.2358331-.51270722l-3.9447455-3.6163308c-.1797871-.16112993-.4116846-.24921848-.656442-.24754157M17.25 15c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm0-5c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm-6-5c.4142136 0 .75.33578644.75.75s-.3357864.75-.75.75h-4.5c-.41421356 0-.75-.33578644-.75-.75S6.33578644 5 6.75 5z"
34
+ }));
35
+ };
36
+ const ForwardRef = forwardRef(DocumentIcon);
37
+ module.exports = ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function EditSignatureIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default EditSignatureIcon;
@@ -0,0 +1,37 @@
1
+ const {
2
+ createElement,
3
+ forwardRef,
4
+ useContext,
5
+ useMemo
6
+ } = require('react');
7
+ const {
8
+ IconContext
9
+ } = require('../providers');
10
+ const get = require('lodash.get');
11
+ const EditSignatureIcon = ({
12
+ color: defaultColor,
13
+ size,
14
+ ...props
15
+ }, ref) => {
16
+ const defaultContextValues = useContext(IconContext);
17
+ const defaultValues = {
18
+ ...defaultContextValues,
19
+ color: defaultColor || defaultContextValues.color,
20
+ size: size || defaultContextValues.size,
21
+ ...props
22
+ };
23
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
24
+ return /*#__PURE__*/createElement("svg", Object.assign({
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ viewBox: "0 0 32 32",
27
+ width: defaultValues.size,
28
+ height: defaultValues.size,
29
+ fill: color,
30
+ color: color,
31
+ ref: ref
32
+ }, props), /*#__PURE__*/createElement("path", {
33
+ d: "M9.3125 4c-.753906 0-1.40625.367188-2 .875-.59375.507813-1.140625 1.191406-1.625 2.0625C4.71875 8.683594 4 11.132813 4 14.1875c0 1.566406.363281 3.179688 1.09375 4.46875.160156.28125.421875.46875.625.71875-.542969.664063-1.4375 1.90625-1.4375 1.90625l1.4375 1.4375s.992188-1.367187 1.625-2.125c.402344.171875.78125.40625 1.25.40625 1.714844 0 3.503906-.75 5.15625-1.6875.53125.40625 1.128906.6875 1.75.6875 2.054688 0 3.617188-1.207031 4.71875-2.28125.320313-.3125.535156-.542969.78125-.8125-.003906.273438-.011719.523438.0625.84375.058594.242188.125.542969.375.8125S22.136719 19 22.5 19c.730469 0 1.152344-.335937 1.59375-.65625.441406-.320312.859375-.703125 1.3125-1.0625C26.316406 16.5625 27.285156 16 28 16v-2c-1.585937 0-2.824219.9375-3.8125 1.71875-.46875.371094-.890625.695313-1.21875.9375v-.125c.011719-.363281.066406-.769531 0-1.21875-.03125-.222656-.105469-.457031-.3125-.75S21.984375 14 21.59375 14c-.5625 0-.769531.242188-.96875.40625-.199219.164063-.347656.332031-.53125.53125-.367187.398438-.804687.878906-1.28125 1.34375-.839844.820313-1.828125 1.441406-2.90625 1.59375.714844-.574219 1.433594-1.144531 1.9375-1.78125C18.507813 15.257813 19 14.40625 19 13.40625c0-.5625-.070312-1.332031-.5-2.0625C18.070313 10.613281 17.144531 10 16 10c-1.230469 0-2.351562.605469-3.03125 1.5625-.679687.957031-.96875 2.183594-.96875 3.625 0 .980469.222656 1.792969.53125 2.5C11.140625 18.417969 9.699219 19 8.59375 19 10.285156 16.464844 12 13.011719 12 8.8125c0-.871094.007813-1.898437-.28125-2.84375-.144531-.472656-.375-.953125-.78125-1.34375S9.929688 4 9.3125 4m0 2c.179688 0 .1875.035156.25.09375s.136719.203125.21875.46875C9.941406 7.089844 10 7.980469 10 8.8125c0 3.542969-1.515625 6.644531-3.03125 8.96875-.035156-.058594-.089844-.0625-.125-.125C6.324219 16.746094 6 15.421875 6 14.1875c0-2.746094.65625-4.875 1.4375-6.28125.390625-.703125.792969-1.21875 1.15625-1.53125S9.265625 6 9.3125 6M16 12c.554688 0 .636719.132813.78125.375.144531.242188.21875.691406.21875 1.03125 0 .25-.210937.832031-.71875 1.46875-.441406.554688-1.113281 1.128906-1.84375 1.6875-.175781-.402344-.4375-.695312-.4375-1.375 0-1.160156.246094-2.007812.59375-2.5C14.941406 12.195313 15.332031 12 16 12M4 26v2h24v-2Z"
34
+ }));
35
+ };
36
+ const ForwardRef = forwardRef(EditSignatureIcon);
37
+ module.exports = ForwardRef;
@@ -1,4 +1,5 @@
1
1
  export { default as AccountIcon } from './AccountIcon';
2
+ export { default as AccountEntityIcon } from './AccountEntityIcon';
2
3
  export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon';
3
4
  export { default as AddIcon } from './AddIcon';
4
5
  export { default as AdminIcon } from './AdminIcon';
@@ -18,6 +19,7 @@ export { default as ChevronDownIcon } from './ChevronDownIcon';
18
19
  export { default as ChevronLeftIcon } from './ChevronLeftIcon';
19
20
  export { default as ChevronRightIcon } from './ChevronRightIcon';
20
21
  export { default as ChevronUpIcon } from './ChevronUpIcon';
22
+ export { default as CollectSignatureIcon } from './CollectSignatureIcon';
21
23
  export { default as CommentIcon } from './CommentIcon';
22
24
  export { default as CompareIcon } from './CompareIcon';
23
25
  export { default as ComposeFilled1Icon } from './ComposeFilled1Icon';
@@ -28,10 +30,12 @@ export { default as DefaultIcon } from './DefaultIcon';
28
30
  export { default as DeleteIcon } from './DeleteIcon';
29
31
  export { default as DocIcon } from './DocIcon';
30
32
  export { default as DocLinkIcon } from './DocLinkIcon';
33
+ export { default as DocumentIcon } from './DocumentIcon';
31
34
  export { default as DossierIcon } from './DossierIcon';
32
35
  export { default as DownloadIcon } from './DownloadIcon';
33
36
  export { default as DragHandleIcon } from './DragHandleIcon';
34
37
  export { default as EditIcon } from './EditIcon';
38
+ export { default as EditSignatureIcon } from './EditSignatureIcon';
35
39
  export { default as EmptyNotificationIcon } from './EmptyNotificationIcon';
36
40
  export { default as EntityIcon } from './EntityIcon';
37
41
  export { default as EraseIcon } from './EraseIcon';
@@ -1,4 +1,5 @@
1
1
  module.exports.AccountIcon = require('./AccountIcon.js');
2
+ module.exports.AccountEntityIcon = require('./AccountEntityIcon.js');
2
3
  module.exports.ActiveOriginArchiveIcon = require('./ActiveOriginArchiveIcon.js');
3
4
  module.exports.AddIcon = require('./AddIcon.js');
4
5
  module.exports.AdminIcon = require('./AdminIcon.js');
@@ -18,6 +19,7 @@ module.exports.ChevronDownIcon = require('./ChevronDownIcon.js');
18
19
  module.exports.ChevronLeftIcon = require('./ChevronLeftIcon.js');
19
20
  module.exports.ChevronRightIcon = require('./ChevronRightIcon.js');
20
21
  module.exports.ChevronUpIcon = require('./ChevronUpIcon.js');
22
+ module.exports.CollectSignatureIcon = require('./CollectSignatureIcon.js');
21
23
  module.exports.CommentIcon = require('./CommentIcon.js');
22
24
  module.exports.CompareIcon = require('./CompareIcon.js');
23
25
  module.exports.ComposeFilled1Icon = require('./ComposeFilled1Icon.js');
@@ -28,10 +30,12 @@ module.exports.DefaultIcon = require('./DefaultIcon.js');
28
30
  module.exports.DeleteIcon = require('./DeleteIcon.js');
29
31
  module.exports.DocIcon = require('./DocIcon.js');
30
32
  module.exports.DocLinkIcon = require('./DocLinkIcon.js');
33
+ module.exports.DocumentIcon = require('./DocumentIcon.js');
31
34
  module.exports.DossierIcon = require('./DossierIcon.js');
32
35
  module.exports.DownloadIcon = require('./DownloadIcon.js');
33
36
  module.exports.DragHandleIcon = require('./DragHandleIcon.js');
34
37
  module.exports.EditIcon = require('./EditIcon.js');
38
+ module.exports.EditSignatureIcon = require('./EditSignatureIcon.js');
35
39
  module.exports.EmptyNotificationIcon = require('./EmptyNotificationIcon.js');
36
40
  module.exports.EntityIcon = require('./EntityIcon.js');
37
41
  module.exports.EraseIcon = require('./EraseIcon.js');
@@ -1,3 +1,4 @@
1
- export * from './providers';
2
- export * from './components';
1
+ export * from "./providers";
2
+ export * from "./components";
3
+ export * from "./types";
3
4
  export * from './icons';
package/lib/cjs/index.js CHANGED
@@ -16,4 +16,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./providers"), exports);
18
18
  __exportStar(require("./components"), exports);
19
+ __exportStar(require("./types"), exports);
19
20
  __exportStar(require("./icons"), exports);
@@ -1,4 +1,4 @@
1
- export { default as IconProvider } from './IconProvider/IconProvider.js';
2
- export * from './IconProvider/IconProvider.js';
3
- export { default as IconContext } from './IconProvider/Context.js';
4
- export * from './IconProvider/Context.js';
1
+ export { default as IconProvider } from "./IconProvider/IconProvider.js";
2
+ export * from "./IconProvider/IconProvider.js";
3
+ export { default as IconContext } from "./IconProvider/Context.js";
4
+ export * from "./IconProvider/Context.js";
@@ -0,0 +1,6 @@
1
+ import { SVGProps } from "react";
2
+ export interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ export declare type IconType = React.FC<SVGProps<SVGSVGElement> & IconProps>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from "./iconTypes";
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./iconTypes"), exports);
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function AccountEntityIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default AccountEntityIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef, useContext, useMemo } from 'react';
2
+ import { IconContext } from '../providers';
3
+ import get from 'lodash.get';
4
+ const AccountEntityIcon = ({
5
+ color: defaultColor,
6
+ size,
7
+ ...props
8
+ }, ref) => {
9
+ const defaultContextValues = useContext(IconContext);
10
+ const defaultValues = {
11
+ ...defaultContextValues,
12
+ color: defaultColor || defaultContextValues.color,
13
+ size: size || defaultContextValues.size,
14
+ ...props
15
+ };
16
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
+ return /*#__PURE__*/createElement("svg", Object.assign({
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ viewBox: "0 0 24 24",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ color: color,
24
+ ref: ref
25
+ }, props), /*#__PURE__*/createElement("path", {
26
+ d: "m19.125 15.063 1.406 1.406L16 21l-3-3 1.406-1.406L16 18.187l3.125-3.125zM17 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m-6-4c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2m0-2c-2.206 0-4 1.794-4 4s1.794 4 4 4c.3 0 .594-.03.875-.094.66-1.09 1.653-1.978 2.844-2.47.174-.45.28-.923.28-1.436 0-2.206-1.796-4-4-4zM4 7c-.552 0-1 .448-1 1v6c0 .552.448 1 1 1s1-.448 1-1V8c0-.552-.448-1-1-1M0 3v16h1v1h3v-1h7.094c-.055-.326-.094-.66-.094-1s.04-.674.094-1H2V5h15v7c.702 0 1.374.122 2 .344V8h1V6h-1V3z"
27
+ }));
28
+ };
29
+ const ForwardRef = /*#__PURE__*/forwardRef(AccountEntityIcon);
30
+ export default ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function CollectSignatureIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default CollectSignatureIcon;
@@ -0,0 +1,32 @@
1
+ import { createElement, forwardRef, useContext, useMemo } from 'react';
2
+ import { IconContext } from '../providers';
3
+ import get from 'lodash.get';
4
+ const CollectSignatureIcon = ({
5
+ color: defaultColor,
6
+ size,
7
+ ...props
8
+ }, ref) => {
9
+ const defaultContextValues = useContext(IconContext);
10
+ const defaultValues = {
11
+ ...defaultContextValues,
12
+ color: defaultColor || defaultContextValues.color,
13
+ size: size || defaultContextValues.size,
14
+ ...props
15
+ };
16
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
+ return /*#__PURE__*/createElement("svg", Object.assign({
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ viewBox: "0 0 207.996 207.996",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ color: color,
24
+ ref: ref
25
+ }, props), /*#__PURE__*/createElement("path", {
26
+ d: "m179.653 63.761 2.631 2.631c-1.913 5.198-7.541 17.813-21.427 33.452-18.784 21.156-25.584 26.941-25.64 26.988-2.123 1.766-2.413 4.918-.646 7.041.989 1.189 2.412 1.803 3.847 1.803 1.127 0 2.26-.379 3.194-1.156.286-.237 7.225-6.075 26.723-28.037 20.07-22.604 24.336-39.578 24.508-40.289.409-1.693-.093-3.478-1.325-4.709l-6.4-6.401c1.207-2.043 2.32-4.016 3.315-5.903L162.91 23.658c-.56-.56-.94-1.223-1.179-1.925-17.853 9.235-40.254 26.944-60.448 45.887l41.543 41.543c14.781-15.724 27.515-31.413 36.827-45.402"
27
+ }), /*#__PURE__*/createElement("path", {
28
+ d: "M202.996 182.926H42.776c20.938-2.578 59.475-32.851 89.509-62.886 1.217-1.217 2.422-2.437 3.618-3.658L94.059 74.538c-1.232 1.205-2.455 2.41-3.661 3.616-20.84 20.84-38.628 42.312-50.089 60.46-10.789 17.084-14.845 29.182-12.274 36.719l-6.111 6.111c-.44.44-.766.947-1.008 1.482H5c-2.761 0-5 2.238-5 5s2.239 5 5 5h197.996c2.761 0 5-2.238 5-5s-2.239-5-5-5m-168.413 0 .549-.549c.714.239 1.465.426 2.26.549zM191.945 18.494c-2.271-2.271-5.394-3.424-9.28-3.424-3.365 0-7.313.9-11.685 2.517l21.888 21.888c3.66-9.786 3.341-16.718-.923-20.981"
29
+ }));
30
+ };
31
+ const ForwardRef = /*#__PURE__*/forwardRef(CollectSignatureIcon);
32
+ export default ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function DocumentIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default DocumentIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef, useContext, useMemo } from 'react';
2
+ import { IconContext } from '../providers';
3
+ import get from 'lodash.get';
4
+ const DocumentIcon = ({
5
+ color: defaultColor,
6
+ size,
7
+ ...props
8
+ }, ref) => {
9
+ const defaultContextValues = useContext(IconContext);
10
+ const defaultValues = {
11
+ ...defaultContextValues,
12
+ color: defaultColor || defaultContextValues.color,
13
+ size: size || defaultContextValues.size,
14
+ ...props
15
+ };
16
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
+ return /*#__PURE__*/createElement("svg", Object.assign({
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ viewBox: "0 0 24 24",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ color: color,
24
+ ref: ref
25
+ }, props), /*#__PURE__*/createElement("path", {
26
+ d: "M15.4077308-.00014373c.6132252-.00414613 1.2056503.22089233 1.6690817.63629555l3.9440671 3.61572355c.4597012.41099112.7245328.99702743.7291204 1.61912463l-.0007611 15.9127807c-.0552089 1.2245041-1.0502444 2.185672-2.2303276 2.2174058l-15.01037395-.0005734C3.30100417 23.9693941 2.30593828 23.0068773 2.25 21.75l.00076114-19.53378071C2.30572405.99717019 3.2921587.0391162 4.49241203-.00014373zM15.413 1.4999758l-10.91118364.0014611C4.09581843 1.53494389 3.76811517 1.86381376 3.75 2.25l-.00076114 19.4662193c.02038591.4521491.4033467.8032504.88676114.7837807l14.7591869.0006487c.4522275.018821.8351883-.3322803.8548337-.7506487V5.8765554c-.0014328-.19341928-.0845724-.37739594-.2358331-.51270722l-3.9447455-3.6163308c-.1797871-.16112993-.4116846-.24921848-.656442-.24754157M17.25 15c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm0-5c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm-6-5c.4142136 0 .75.33578644.75.75s-.3357864.75-.75.75h-4.5c-.41421356 0-.75-.33578644-.75-.75S6.33578644 5 6.75 5z"
27
+ }));
28
+ };
29
+ const ForwardRef = /*#__PURE__*/forwardRef(DocumentIcon);
30
+ export default ForwardRef;
@@ -0,0 +1,7 @@
1
+ import * as React from 'react';
2
+ interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ declare function EditSignatureIcon(props: React.SVGProps<SVGSVGElement> & IconProps): JSX.Element;
7
+ export default EditSignatureIcon;
@@ -0,0 +1,30 @@
1
+ import { createElement, forwardRef, useContext, useMemo } from 'react';
2
+ import { IconContext } from '../providers';
3
+ import get from 'lodash.get';
4
+ const EditSignatureIcon = ({
5
+ color: defaultColor,
6
+ size,
7
+ ...props
8
+ }, ref) => {
9
+ const defaultContextValues = useContext(IconContext);
10
+ const defaultValues = {
11
+ ...defaultContextValues,
12
+ color: defaultColor || defaultContextValues.color,
13
+ size: size || defaultContextValues.size,
14
+ ...props
15
+ };
16
+ const color = useMemo(() => get(defaultValues.palette, defaultValues.color, defaultValues.color), [defaultValues.color, defaultValues.palette]);
17
+ return /*#__PURE__*/createElement("svg", Object.assign({
18
+ xmlns: "http://www.w3.org/2000/svg",
19
+ viewBox: "0 0 32 32",
20
+ width: defaultValues.size,
21
+ height: defaultValues.size,
22
+ fill: color,
23
+ color: color,
24
+ ref: ref
25
+ }, props), /*#__PURE__*/createElement("path", {
26
+ d: "M9.3125 4c-.753906 0-1.40625.367188-2 .875-.59375.507813-1.140625 1.191406-1.625 2.0625C4.71875 8.683594 4 11.132813 4 14.1875c0 1.566406.363281 3.179688 1.09375 4.46875.160156.28125.421875.46875.625.71875-.542969.664063-1.4375 1.90625-1.4375 1.90625l1.4375 1.4375s.992188-1.367187 1.625-2.125c.402344.171875.78125.40625 1.25.40625 1.714844 0 3.503906-.75 5.15625-1.6875.53125.40625 1.128906.6875 1.75.6875 2.054688 0 3.617188-1.207031 4.71875-2.28125.320313-.3125.535156-.542969.78125-.8125-.003906.273438-.011719.523438.0625.84375.058594.242188.125.542969.375.8125S22.136719 19 22.5 19c.730469 0 1.152344-.335937 1.59375-.65625.441406-.320312.859375-.703125 1.3125-1.0625C26.316406 16.5625 27.285156 16 28 16v-2c-1.585937 0-2.824219.9375-3.8125 1.71875-.46875.371094-.890625.695313-1.21875.9375v-.125c.011719-.363281.066406-.769531 0-1.21875-.03125-.222656-.105469-.457031-.3125-.75S21.984375 14 21.59375 14c-.5625 0-.769531.242188-.96875.40625-.199219.164063-.347656.332031-.53125.53125-.367187.398438-.804687.878906-1.28125 1.34375-.839844.820313-1.828125 1.441406-2.90625 1.59375.714844-.574219 1.433594-1.144531 1.9375-1.78125C18.507813 15.257813 19 14.40625 19 13.40625c0-.5625-.070312-1.332031-.5-2.0625C18.070313 10.613281 17.144531 10 16 10c-1.230469 0-2.351562.605469-3.03125 1.5625-.679687.957031-.96875 2.183594-.96875 3.625 0 .980469.222656 1.792969.53125 2.5C11.140625 18.417969 9.699219 19 8.59375 19 10.285156 16.464844 12 13.011719 12 8.8125c0-.871094.007813-1.898437-.28125-2.84375-.144531-.472656-.375-.953125-.78125-1.34375S9.929688 4 9.3125 4m0 2c.179688 0 .1875.035156.25.09375s.136719.203125.21875.46875C9.941406 7.089844 10 7.980469 10 8.8125c0 3.542969-1.515625 6.644531-3.03125 8.96875-.035156-.058594-.089844-.0625-.125-.125C6.324219 16.746094 6 15.421875 6 14.1875c0-2.746094.65625-4.875 1.4375-6.28125.390625-.703125.792969-1.21875 1.15625-1.53125S9.265625 6 9.3125 6M16 12c.554688 0 .636719.132813.78125.375.144531.242188.21875.691406.21875 1.03125 0 .25-.210937.832031-.71875 1.46875-.441406.554688-1.113281 1.128906-1.84375 1.6875-.175781-.402344-.4375-.695312-.4375-1.375 0-1.160156.246094-2.007812.59375-2.5C14.941406 12.195313 15.332031 12 16 12M4 26v2h24v-2Z"
27
+ }));
28
+ };
29
+ const ForwardRef = /*#__PURE__*/forwardRef(EditSignatureIcon);
30
+ export default ForwardRef;
@@ -1,4 +1,5 @@
1
1
  export { default as AccountIcon } from './AccountIcon';
2
+ export { default as AccountEntityIcon } from './AccountEntityIcon';
2
3
  export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon';
3
4
  export { default as AddIcon } from './AddIcon';
4
5
  export { default as AdminIcon } from './AdminIcon';
@@ -18,6 +19,7 @@ export { default as ChevronDownIcon } from './ChevronDownIcon';
18
19
  export { default as ChevronLeftIcon } from './ChevronLeftIcon';
19
20
  export { default as ChevronRightIcon } from './ChevronRightIcon';
20
21
  export { default as ChevronUpIcon } from './ChevronUpIcon';
22
+ export { default as CollectSignatureIcon } from './CollectSignatureIcon';
21
23
  export { default as CommentIcon } from './CommentIcon';
22
24
  export { default as CompareIcon } from './CompareIcon';
23
25
  export { default as ComposeFilled1Icon } from './ComposeFilled1Icon';
@@ -28,10 +30,12 @@ export { default as DefaultIcon } from './DefaultIcon';
28
30
  export { default as DeleteIcon } from './DeleteIcon';
29
31
  export { default as DocIcon } from './DocIcon';
30
32
  export { default as DocLinkIcon } from './DocLinkIcon';
33
+ export { default as DocumentIcon } from './DocumentIcon';
31
34
  export { default as DossierIcon } from './DossierIcon';
32
35
  export { default as DownloadIcon } from './DownloadIcon';
33
36
  export { default as DragHandleIcon } from './DragHandleIcon';
34
37
  export { default as EditIcon } from './EditIcon';
38
+ export { default as EditSignatureIcon } from './EditSignatureIcon';
35
39
  export { default as EmptyNotificationIcon } from './EmptyNotificationIcon';
36
40
  export { default as EntityIcon } from './EntityIcon';
37
41
  export { default as EraseIcon } from './EraseIcon';
@@ -1,4 +1,5 @@
1
1
  export { default as AccountIcon } from './AccountIcon.js';
2
+ export { default as AccountEntityIcon } from './AccountEntityIcon.js';
2
3
  export { default as ActiveOriginArchiveIcon } from './ActiveOriginArchiveIcon.js';
3
4
  export { default as AddIcon } from './AddIcon.js';
4
5
  export { default as AdminIcon } from './AdminIcon.js';
@@ -18,6 +19,7 @@ export { default as ChevronDownIcon } from './ChevronDownIcon.js';
18
19
  export { default as ChevronLeftIcon } from './ChevronLeftIcon.js';
19
20
  export { default as ChevronRightIcon } from './ChevronRightIcon.js';
20
21
  export { default as ChevronUpIcon } from './ChevronUpIcon.js';
22
+ export { default as CollectSignatureIcon } from './CollectSignatureIcon.js';
21
23
  export { default as CommentIcon } from './CommentIcon.js';
22
24
  export { default as CompareIcon } from './CompareIcon.js';
23
25
  export { default as ComposeFilled1Icon } from './ComposeFilled1Icon.js';
@@ -28,10 +30,12 @@ export { default as DefaultIcon } from './DefaultIcon.js';
28
30
  export { default as DeleteIcon } from './DeleteIcon.js';
29
31
  export { default as DocIcon } from './DocIcon.js';
30
32
  export { default as DocLinkIcon } from './DocLinkIcon.js';
33
+ export { default as DocumentIcon } from './DocumentIcon.js';
31
34
  export { default as DossierIcon } from './DossierIcon.js';
32
35
  export { default as DownloadIcon } from './DownloadIcon.js';
33
36
  export { default as DragHandleIcon } from './DragHandleIcon.js';
34
37
  export { default as EditIcon } from './EditIcon.js';
38
+ export { default as EditSignatureIcon } from './EditSignatureIcon.js';
35
39
  export { default as EmptyNotificationIcon } from './EmptyNotificationIcon.js';
36
40
  export { default as EntityIcon } from './EntityIcon.js';
37
41
  export { default as EraseIcon } from './EraseIcon.js';
@@ -1,3 +1,4 @@
1
- export * from './providers';
2
- export * from './components';
1
+ export * from "./providers";
2
+ export * from "./components";
3
+ export * from "./types";
3
4
  export * from './icons';
package/lib/esm/index.js CHANGED
@@ -1,3 +1,4 @@
1
- export * from './providers';
2
- export * from './components';
1
+ export * from "./providers";
2
+ export * from "./components";
3
+ export * from "./types";
3
4
  export * from './icons';
@@ -1,4 +1,4 @@
1
- export { default as IconProvider } from './IconProvider/IconProvider.js';
2
- export * from './IconProvider/IconProvider.js';
3
- export { default as IconContext } from './IconProvider/Context.js';
4
- export * from './IconProvider/Context.js';
1
+ export { default as IconProvider } from "./IconProvider/IconProvider.js";
2
+ export * from "./IconProvider/IconProvider.js";
3
+ export { default as IconContext } from "./IconProvider/Context.js";
4
+ export * from "./IconProvider/Context.js";
@@ -1,4 +1,4 @@
1
- export { default as IconProvider } from './IconProvider/IconProvider.js';
2
- export * from './IconProvider/IconProvider.js';
3
- export { default as IconContext } from './IconProvider/Context.js';
4
- export * from './IconProvider/Context.js';
1
+ export { default as IconProvider } from "./IconProvider/IconProvider.js";
2
+ export * from "./IconProvider/IconProvider.js";
3
+ export { default as IconContext } from "./IconProvider/Context.js";
4
+ export * from "./IconProvider/Context.js";
@@ -0,0 +1,6 @@
1
+ import { SVGProps } from "react";
2
+ export interface IconProps {
3
+ color?: string;
4
+ size?: string | number;
5
+ }
6
+ export declare type IconType = React.FC<SVGProps<SVGSVGElement> & IconProps>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./iconTypes";
@@ -0,0 +1 @@
1
+ export * from "./iconTypes";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@imtf/icons",
3
3
  "private": false,
4
- "version": "0.3.1",
4
+ "version": "0.3.3",
5
5
  "description": "Library of icons (React components, font and svg)",
6
6
  "type": "commonjs",
7
7
  "types": "./lib/esm/index.d.ts",
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="m19.125 15.063 1.406 1.406L16 21l-3-3 1.406-1.406L16 18.187l3.125-3.125zM17 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5m-6-4c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2m0-2c-2.206 0-4 1.794-4 4s1.794 4 4 4c.3 0 .594-.03.875-.094.66-1.09 1.653-1.978 2.844-2.47.174-.45.28-.923.28-1.436 0-2.206-1.796-4-4-4zM4 7c-.552 0-1 .448-1 1v6c0 .552.448 1 1 1s1-.448 1-1V8c0-.552-.448-1-1-1M0 3v16h1v1h3v-1h7.094c-.055-.326-.094-.66-.094-1s.04-.674.094-1H2V5h15v7c.702 0 1.374.122 2 .344V8h1V6h-1V3z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 207.996 207.996">
2
+ <path d="m179.653 63.761 2.631 2.631c-1.913 5.198-7.541 17.813-21.427 33.452-18.784 21.156-25.584 26.941-25.64 26.988-2.123 1.766-2.413 4.918-.646 7.041.989 1.189 2.412 1.803 3.847 1.803 1.127 0 2.26-.379 3.194-1.156.286-.237 7.225-6.075 26.723-28.037 20.07-22.604 24.336-39.578 24.508-40.289.409-1.693-.093-3.478-1.325-4.709l-6.4-6.401c1.207-2.043 2.32-4.016 3.315-5.903L162.91 23.658c-.56-.56-.94-1.223-1.179-1.925-17.853 9.235-40.254 26.944-60.448 45.887l41.543 41.543c14.781-15.724 27.515-31.413 36.827-45.402"/>
3
+ <path d="M202.996 182.926H42.776c20.938-2.578 59.475-32.851 89.509-62.886 1.217-1.217 2.422-2.437 3.618-3.658L94.059 74.538c-1.232 1.205-2.455 2.41-3.661 3.616-20.84 20.84-38.628 42.312-50.089 60.46-10.789 17.084-14.845 29.182-12.274 36.719l-6.111 6.111c-.44.44-.766.947-1.008 1.482H5c-2.761 0-5 2.238-5 5s2.239 5 5 5h197.996c2.761 0 5-2.238 5-5s-2.239-5-5-5m-168.413 0 .549-.549c.714.239 1.465.426 2.26.549zM191.945 18.494c-2.271-2.271-5.394-3.424-9.28-3.424-3.365 0-7.313.9-11.685 2.517l21.888 21.888c3.66-9.786 3.341-16.718-.923-20.981"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
2
+ <path d="M15.4077308-.00014373c.6132252-.00414613 1.2056503.22089233 1.6690817.63629555l3.9440671 3.61572355c.4597012.41099112.7245328.99702743.7291204 1.61912463l-.0007611 15.9127807c-.0552089 1.2245041-1.0502444 2.185672-2.2303276 2.2174058l-15.01037395-.0005734C3.30100417 23.9693941 2.30593828 23.0068773 2.25 21.75l.00076114-19.53378071C2.30572405.99717019 3.2921587.0391162 4.49241203-.00014373zM15.413 1.4999758l-10.91118364.0014611C4.09581843 1.53494389 3.76811517 1.86381376 3.75 2.25l-.00076114 19.4662193c.02038591.4521491.4033467.8032504.88676114.7837807l14.7591869.0006487c.4522275.018821.8351883-.3322803.8548337-.7506487V5.8765554c-.0014328-.19341928-.0845724-.37739594-.2358331-.51270722l-3.9447455-3.6163308c-.1797871-.16112993-.4116846-.24921848-.656442-.24754157M17.25 15c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm0-5c.4142136 0 .75.3357864.75.75s-.3357864.75-.75.75H6.75c-.41421356 0-.75-.3357864-.75-.75s.33578644-.75.75-.75zm-6-5c.4142136 0 .75.33578644.75.75s-.3357864.75-.75.75h-4.5c-.41421356 0-.75-.33578644-.75-.75S6.33578644 5 6.75 5z"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
2
+ <path d="M9.3125 4c-.753906 0-1.40625.367188-2 .875-.59375.507813-1.140625 1.191406-1.625 2.0625C4.71875 8.683594 4 11.132813 4 14.1875c0 1.566406.363281 3.179688 1.09375 4.46875.160156.28125.421875.46875.625.71875-.542969.664063-1.4375 1.90625-1.4375 1.90625l1.4375 1.4375s.992188-1.367187 1.625-2.125c.402344.171875.78125.40625 1.25.40625 1.714844 0 3.503906-.75 5.15625-1.6875.53125.40625 1.128906.6875 1.75.6875 2.054688 0 3.617188-1.207031 4.71875-2.28125.320313-.3125.535156-.542969.78125-.8125-.003906.273438-.011719.523438.0625.84375.058594.242188.125.542969.375.8125S22.136719 19 22.5 19c.730469 0 1.152344-.335937 1.59375-.65625.441406-.320312.859375-.703125 1.3125-1.0625C26.316406 16.5625 27.285156 16 28 16v-2c-1.585937 0-2.824219.9375-3.8125 1.71875-.46875.371094-.890625.695313-1.21875.9375v-.125c.011719-.363281.066406-.769531 0-1.21875-.03125-.222656-.105469-.457031-.3125-.75S21.984375 14 21.59375 14c-.5625 0-.769531.242188-.96875.40625-.199219.164063-.347656.332031-.53125.53125-.367187.398438-.804687.878906-1.28125 1.34375-.839844.820313-1.828125 1.441406-2.90625 1.59375.714844-.574219 1.433594-1.144531 1.9375-1.78125C18.507813 15.257813 19 14.40625 19 13.40625c0-.5625-.070312-1.332031-.5-2.0625C18.070313 10.613281 17.144531 10 16 10c-1.230469 0-2.351562.605469-3.03125 1.5625-.679687.957031-.96875 2.183594-.96875 3.625 0 .980469.222656 1.792969.53125 2.5C11.140625 18.417969 9.699219 19 8.59375 19 10.285156 16.464844 12 13.011719 12 8.8125c0-.871094.007813-1.898437-.28125-2.84375-.144531-.472656-.375-.953125-.78125-1.34375S9.929688 4 9.3125 4m0 2c.179688 0 .1875.035156.25.09375s.136719.203125.21875.46875C9.941406 7.089844 10 7.980469 10 8.8125c0 3.542969-1.515625 6.644531-3.03125 8.96875-.035156-.058594-.089844-.0625-.125-.125C6.324219 16.746094 6 15.421875 6 14.1875c0-2.746094.65625-4.875 1.4375-6.28125.390625-.703125.792969-1.21875 1.15625-1.53125S9.265625 6 9.3125 6M16 12c.554688 0 .636719.132813.78125.375.144531.242188.21875.691406.21875 1.03125 0 .25-.210937.832031-.71875 1.46875-.441406.554688-1.113281 1.128906-1.84375 1.6875-.175781-.402344-.4375-.695312-.4375-1.375 0-1.160156.246094-2.007812.59375-2.5C14.941406 12.195313 15.332031 12 16 12M4 26v2h24v-2Z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": "Used for collect signature button in PDFTron's viewer"
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": ""
4
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "aliases": [],
3
+ "description": "Used for edit signature button in PDFTron's viewer"
4
+ }