@norges-domstoler/dds-components 13.1.1 → 13.2.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 (35) hide show
  1. package/dist/cjs/icons/tsx/hourglassBottom.d.ts +3 -0
  2. package/dist/cjs/icons/tsx/hourglassDisabled.d.ts +3 -0
  3. package/dist/cjs/icons/tsx/hourglassEmpty.d.ts +3 -0
  4. package/dist/cjs/icons/tsx/hourglassFull.d.ts +3 -0
  5. package/dist/cjs/icons/tsx/hourglassTop.d.ts +3 -0
  6. package/dist/cjs/icons/tsx/index.d.ts +10 -0
  7. package/dist/cjs/icons/tsx/starHalfFilled.d.ts +3 -0
  8. package/dist/cjs/icons/tsx/thumbdown.d.ts +3 -0
  9. package/dist/cjs/icons/tsx/thumbdownFilled.d.ts +3 -0
  10. package/dist/cjs/icons/tsx/thumbup.d.ts +3 -0
  11. package/dist/cjs/icons/tsx/thumbupFilled.d.ts +3 -0
  12. package/dist/cjs/index.js +90 -0
  13. package/dist/icons/tsx/hourglassBottom.d.ts +3 -0
  14. package/dist/icons/tsx/hourglassBottom.js +12 -0
  15. package/dist/icons/tsx/hourglassDisabled.d.ts +3 -0
  16. package/dist/icons/tsx/hourglassDisabled.js +12 -0
  17. package/dist/icons/tsx/hourglassEmpty.d.ts +3 -0
  18. package/dist/icons/tsx/hourglassEmpty.js +12 -0
  19. package/dist/icons/tsx/hourglassFull.d.ts +3 -0
  20. package/dist/icons/tsx/hourglassFull.js +12 -0
  21. package/dist/icons/tsx/hourglassTop.d.ts +3 -0
  22. package/dist/icons/tsx/hourglassTop.js +12 -0
  23. package/dist/icons/tsx/index.d.ts +10 -0
  24. package/dist/icons/tsx/starHalfFilled.d.ts +3 -0
  25. package/dist/icons/tsx/starHalfFilled.js +12 -0
  26. package/dist/icons/tsx/thumbdown.d.ts +3 -0
  27. package/dist/icons/tsx/thumbdown.js +12 -0
  28. package/dist/icons/tsx/thumbdownFilled.d.ts +3 -0
  29. package/dist/icons/tsx/thumbdownFilled.js +12 -0
  30. package/dist/icons/tsx/thumbup.d.ts +3 -0
  31. package/dist/icons/tsx/thumbup.js +12 -0
  32. package/dist/icons/tsx/thumbupFilled.d.ts +3 -0
  33. package/dist/icons/tsx/thumbupFilled.js +12 -0
  34. package/dist/index.js +10 -0
  35. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassBottom(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassDisabled(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassEmpty(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassFull(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassTop(props: SvgProps): JSX.Element;
@@ -65,6 +65,11 @@ export * from './gavel';
65
65
  export * from './help';
66
66
  export * from './helpFilled';
67
67
  export * from './home';
68
+ export * from './hourglassBottom';
69
+ export * from './hourglassDisabled';
70
+ export * from './hourglassEmpty';
71
+ export * from './hourglassFull';
72
+ export * from './hourglassTop';
68
73
  export * from './image';
69
74
  export * from './info';
70
75
  export * from './instagram';
@@ -113,7 +118,12 @@ export * from './settings';
113
118
  export * from './sms';
114
119
  export * from './star';
115
120
  export * from './starFilled';
121
+ export * from './starHalfFilled';
116
122
  export * from './sync';
123
+ export * from './thumbdown';
124
+ export * from './thumbdownFilled';
125
+ export * from './thumbup';
126
+ export * from './thumbupFilled';
117
127
  export * from './time';
118
128
  export * from './tingrett';
119
129
  export * from './tip';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function StarHalfFilled(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function Thumbdown(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function ThumbdownFilled(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function Thumbup(props: SvgProps): JSX.Element;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function ThumbupFilled(props: SvgProps): JSX.Element;
package/dist/cjs/index.js CHANGED
@@ -1507,6 +1507,46 @@ function HomeIcon(props) {
1507
1507
  }));
1508
1508
  }
1509
1509
 
1510
+ function HourglassBottom(props) {
1511
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1512
+ children: jsxRuntime.jsx("path", {
1513
+ d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z"
1514
+ })
1515
+ }));
1516
+ }
1517
+
1518
+ function HourglassDisabled(props) {
1519
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1520
+ children: jsxRuntime.jsx("path", {
1521
+ d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z"
1522
+ })
1523
+ }));
1524
+ }
1525
+
1526
+ function HourglassEmpty(props) {
1527
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1528
+ children: jsxRuntime.jsx("path", {
1529
+ d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z"
1530
+ })
1531
+ }));
1532
+ }
1533
+
1534
+ function HourglassFull(props) {
1535
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1536
+ children: jsxRuntime.jsx("path", {
1537
+ d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z"
1538
+ })
1539
+ }));
1540
+ }
1541
+
1542
+ function HourglassTop(props) {
1543
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1544
+ children: jsxRuntime.jsx("path", {
1545
+ d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z"
1546
+ })
1547
+ }));
1548
+ }
1549
+
1510
1550
  function ImageIcon(props) {
1511
1551
  return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1512
1552
  children: jsxRuntime.jsx("path", {
@@ -1909,6 +1949,14 @@ function StarFilledIcon(props) {
1909
1949
  }));
1910
1950
  }
1911
1951
 
1952
+ function StarHalfFilled(props) {
1953
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1954
+ children: jsxRuntime.jsx("path", {
1955
+ d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"
1956
+ })
1957
+ }));
1958
+ }
1959
+
1912
1960
  function SyncIcon(props) {
1913
1961
  return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1914
1962
  children: jsxRuntime.jsx("path", {
@@ -1917,6 +1965,38 @@ function SyncIcon(props) {
1917
1965
  }));
1918
1966
  }
1919
1967
 
1968
+ function Thumbdown(props) {
1969
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1970
+ children: jsxRuntime.jsx("path", {
1971
+ d: "m10.89 18.28.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z"
1972
+ })
1973
+ }));
1974
+ }
1975
+
1976
+ function ThumbdownFilled(props) {
1977
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1978
+ children: jsxRuntime.jsx("path", {
1979
+ d: "M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z"
1980
+ })
1981
+ }));
1982
+ }
1983
+
1984
+ function Thumbup(props) {
1985
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1986
+ children: jsxRuntime.jsx("path", {
1987
+ d: "m13.11 5.72-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z"
1988
+ })
1989
+ }));
1990
+ }
1991
+
1992
+ function ThumbupFilled(props) {
1993
+ return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1994
+ children: jsxRuntime.jsx("path", {
1995
+ d: "M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z"
1996
+ })
1997
+ }));
1998
+ }
1999
+
1920
2000
  function TimeIcon(props) {
1921
2001
  return jsxRuntime.jsx(SvgWrapper, Object.assign({}, props, {
1922
2002
  children: jsxRuntime.jsx("path", {
@@ -11509,6 +11589,11 @@ exports.Heading = Heading;
11509
11589
  exports.HelpFilledIcon = HelpFilledIcon;
11510
11590
  exports.HelpIcon = HelpIcon;
11511
11591
  exports.HomeIcon = HomeIcon;
11592
+ exports.HourglassBottom = HourglassBottom;
11593
+ exports.HourglassDisabled = HourglassDisabled;
11594
+ exports.HourglassEmpty = HourglassEmpty;
11595
+ exports.HourglassFull = HourglassFull;
11596
+ exports.HourglassTop = HourglassTop;
11512
11597
  exports.Icon = Icon;
11513
11598
  exports.ImageIcon = ImageIcon;
11514
11599
  exports.InfoIcon = InfoIcon;
@@ -11589,6 +11674,7 @@ exports.SmsIcon = SmsIcon;
11589
11674
  exports.Spinner = Spinner;
11590
11675
  exports.SplitButton = SplitButton;
11591
11676
  exports.StarFilledIcon = StarFilledIcon;
11677
+ exports.StarHalfFilled = StarHalfFilled;
11592
11678
  exports.StarIcon = StarIcon;
11593
11679
  exports.StyledTextArea = StyledTextArea;
11594
11680
  exports.SyncIcon = SyncIcon;
@@ -11601,6 +11687,10 @@ exports.Tabs = Tabs;
11601
11687
  exports.Tag = Tag;
11602
11688
  exports.TextArea = TextArea;
11603
11689
  exports.TextInput = TextInput;
11690
+ exports.Thumbdown = Thumbdown;
11691
+ exports.ThumbdownFilled = ThumbdownFilled;
11692
+ exports.Thumbup = Thumbup;
11693
+ exports.ThumbupFilled = ThumbupFilled;
11604
11694
  exports.TimeIcon = TimeIcon;
11605
11695
  exports.TingrettIcon = TingrettIcon;
11606
11696
  exports.TipIcon = TipIcon;
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassBottom(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function HourglassBottom(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "m18 22-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { HourglassBottom };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassDisabled(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function HourglassDisabled(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { HourglassDisabled };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassEmpty(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function HourglassEmpty(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5-4-4V4h8v3.5l-4 4z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { HourglassEmpty };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassFull(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function HourglassFull(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { HourglassFull };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function HourglassTop(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function HourglassTop(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "m6 2 .01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { HourglassTop };
@@ -65,6 +65,11 @@ export * from './gavel';
65
65
  export * from './help';
66
66
  export * from './helpFilled';
67
67
  export * from './home';
68
+ export * from './hourglassBottom';
69
+ export * from './hourglassDisabled';
70
+ export * from './hourglassEmpty';
71
+ export * from './hourglassFull';
72
+ export * from './hourglassTop';
68
73
  export * from './image';
69
74
  export * from './info';
70
75
  export * from './instagram';
@@ -113,7 +118,12 @@ export * from './settings';
113
118
  export * from './sms';
114
119
  export * from './star';
115
120
  export * from './starFilled';
121
+ export * from './starHalfFilled';
116
122
  export * from './sync';
123
+ export * from './thumbdown';
124
+ export * from './thumbdownFilled';
125
+ export * from './thumbup';
126
+ export * from './thumbupFilled';
117
127
  export * from './time';
118
128
  export * from './tingrett';
119
129
  export * from './tip';
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function StarHalfFilled(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function StarHalfFilled(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "m22 9.24-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { StarHalfFilled };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function Thumbdown(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function Thumbdown(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "m10.89 18.28.57-2.89c.12-.59-.04-1.2-.42-1.66-.38-.46-.94-.73-1.54-.73H4v-1.08L6.57 6h8.09c.18 0 .34.16.34.34v7.84l-4.11 4.1M10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22zm10-7h2V4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { Thumbdown };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function ThumbdownFilled(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function ThumbdownFilled(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M22 4h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2V4zM2.17 11.12c-.11.25-.17.52-.17.8V13c0 1.1.9 2 2 2h5.5l-.92 4.65c-.05.22-.02.46.08.66.23.45.52.86.88 1.22L10 22l6.41-6.41c.38-.38.59-.89.59-1.42V6.34C17 5.05 15.95 4 14.66 4h-8.1c-.71 0-1.36.37-1.72.97l-2.67 6.15z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { ThumbdownFilled };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function Thumbup(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function Thumbup(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "m13.11 5.72-.57 2.89c-.12.59.04 1.2.42 1.66.38.46.94.73 1.54.73H20v1.08L17.43 18H9.34c-.18 0-.34-.16-.34-.34V9.82l4.11-4.1M14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.83C7 18.95 8.05 20 9.34 20h8.1c.71 0 1.36-.37 1.72-.97l2.67-6.15c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2zM4 9H2v11h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { Thumbup };
@@ -0,0 +1,3 @@
1
+ /// <reference types="react" />
2
+ import { SvgProps } from '../utils/propTypes';
3
+ export declare function ThumbupFilled(props: SvgProps): JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { jsx } from 'react/jsx-runtime';
2
+ import { SvgWrapper } from '../utils/SvgWrapper.js';
3
+
4
+ function ThumbupFilled(props) {
5
+ return jsx(SvgWrapper, Object.assign({}, props, {
6
+ children: jsx("path", {
7
+ d: "M2 20h2c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1H2v11zm19.83-7.12c.11-.25.17-.52.17-.8V11c0-1.1-.9-2-2-2h-5.5l.92-4.65c.05-.22.02-.46-.08-.66-.23-.45-.52-.86-.88-1.22L14 2 7.59 8.41C7.21 8.79 7 9.3 7 9.83v7.84C7 18.95 8.05 20 9.34 20h8.11c.7 0 1.36-.37 1.72-.97l2.66-6.15z"
8
+ })
9
+ }));
10
+ }
11
+
12
+ export { ThumbupFilled };
package/dist/index.js CHANGED
@@ -128,6 +128,11 @@ export { GavelIcon } from './icons/tsx/gavel.js';
128
128
  export { HelpIcon } from './icons/tsx/help.js';
129
129
  export { HelpFilledIcon } from './icons/tsx/helpFilled.js';
130
130
  export { HomeIcon } from './icons/tsx/home.js';
131
+ export { HourglassBottom } from './icons/tsx/hourglassBottom.js';
132
+ export { HourglassDisabled } from './icons/tsx/hourglassDisabled.js';
133
+ export { HourglassEmpty } from './icons/tsx/hourglassEmpty.js';
134
+ export { HourglassFull } from './icons/tsx/hourglassFull.js';
135
+ export { HourglassTop } from './icons/tsx/hourglassTop.js';
131
136
  export { ImageIcon } from './icons/tsx/image.js';
132
137
  export { InfoIcon } from './icons/tsx/info.js';
133
138
  export { InstagramIcon } from './icons/tsx/instagram.js';
@@ -176,7 +181,12 @@ export { SettingsIcon } from './icons/tsx/settings.js';
176
181
  export { SmsIcon } from './icons/tsx/sms.js';
177
182
  export { StarIcon } from './icons/tsx/star.js';
178
183
  export { StarFilledIcon } from './icons/tsx/starFilled.js';
184
+ export { StarHalfFilled } from './icons/tsx/starHalfFilled.js';
179
185
  export { SyncIcon } from './icons/tsx/sync.js';
186
+ export { Thumbdown } from './icons/tsx/thumbdown.js';
187
+ export { ThumbdownFilled } from './icons/tsx/thumbdownFilled.js';
188
+ export { Thumbup } from './icons/tsx/thumbup.js';
189
+ export { ThumbupFilled } from './icons/tsx/thumbupFilled.js';
180
190
  export { TimeIcon } from './icons/tsx/time.js';
181
191
  export { TingrettIcon } from './icons/tsx/tingrett.js';
182
192
  export { TipIcon } from './icons/tsx/tip.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@norges-domstoler/dds-components",
3
- "version": "13.1.1",
3
+ "version": "13.2.0",
4
4
  "description": "React components used in Elsa - domstolenes designsystem",
5
5
  "author": "Elsa team",
6
6
  "license": "MIT",