@lunit/oui 1.0.0-alpha.9 → 1.0.1-alpha.1

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 (130) hide show
  1. package/dist/components/Alert/Alert.js +1 -1
  2. package/dist/components/Alert/Alert.utils.js +1 -1
  3. package/dist/components/Chip/Chip.js +1 -1
  4. package/dist/components/Chip/Chip.utils.js +1 -1
  5. package/dist/components/DatePicker/DatePicker.js +1 -1
  6. package/dist/components/Dialog/Dialog.js +1 -1
  7. package/dist/components/Dropdown/Dropdown.js +1 -1
  8. package/dist/components/Dropdown/DropdownItem.js +1 -1
  9. package/dist/components/Dropdown/IconDropdown.js +1 -1
  10. package/dist/components/List/List.js +1 -1
  11. package/dist/components/List/ListItem.styled.js +1 -1
  12. package/dist/components/Pagination/Pagination.js +65 -0
  13. package/dist/components/Pagination/Pagination.styled.js +64 -0
  14. package/dist/components/Pagination/Pagination.types.js +2 -0
  15. package/dist/components/Pagination/index.js +2 -0
  16. package/dist/components/ProductLabel/ProductLabel.js +1 -1
  17. package/dist/components/TextField/components/Buttons.js +1 -1
  18. package/dist/components/UploadManager/UploadManager.js +1 -1
  19. package/dist/components/index.js +1 -1
  20. package/dist/foundations/index.js +1 -0
  21. package/dist/foundations/palette.js +4 -0
  22. package/dist/foundations/styles.js +7 -0
  23. package/dist/icons/BellNoti/index.js +14 -0
  24. package/dist/icons/CloseLarge/index.js +14 -0
  25. package/dist/icons/CloseSmall/index.js +14 -0
  26. package/dist/{components/Icons → icons}/DownloadPdf/index.js +4 -4
  27. package/dist/icons/Ellipse/index.js +14 -0
  28. package/dist/icons/FilterNoti/index.js +14 -0
  29. package/dist/icons/HideLarge/index.js +14 -0
  30. package/dist/icons/HideSmall/index.js +14 -0
  31. package/dist/{components/Icons → icons}/InformationLarge/index.js +4 -4
  32. package/dist/{components/Icons → icons}/InformationSmall/index.js +4 -4
  33. package/dist/{components/Icons → icons}/Manufacturer/index.js +4 -4
  34. package/dist/icons/Rectangle/index.js +14 -0
  35. package/dist/{components/Icons → icons}/RefreshLeft/index.js +4 -4
  36. package/dist/{components/Icons → icons}/RefreshRight/index.js +4 -4
  37. package/dist/icons/ShowLarge/index.js +14 -0
  38. package/dist/icons/ShowSmall/index.js +14 -0
  39. package/dist/types/components/Pagination/Pagination.d.ts +3 -0
  40. package/dist/types/components/Pagination/Pagination.styled.d.ts +24 -0
  41. package/dist/types/components/Pagination/Pagination.types.d.ts +35 -0
  42. package/dist/types/components/Pagination/index.d.ts +2 -0
  43. package/dist/types/components/index.d.ts +1 -1
  44. package/dist/types/foundations/index.d.ts +1 -0
  45. package/dist/types/foundations/palette.d.ts +8 -1
  46. package/dist/types/foundations/styles.d.ts +2 -0
  47. package/dist/types/{components/Icons → icons}/BellNoti/index.d.ts +2 -2
  48. package/dist/types/{components/Icons → icons}/CloseLarge/index.d.ts +2 -2
  49. package/dist/types/{components/Icons → icons}/CloseSmall/index.d.ts +2 -2
  50. package/dist/types/{components/Icons → icons}/DownloadPdf/index.d.ts +2 -2
  51. package/dist/types/{components/Icons → icons}/Ellipse/index.d.ts +2 -2
  52. package/dist/types/{components/Icons → icons}/FilterNoti/index.d.ts +2 -2
  53. package/dist/types/{components/Icons → icons}/HideLarge/index.d.ts +2 -2
  54. package/dist/types/{components/Icons → icons}/HideSmall/index.d.ts +2 -2
  55. package/dist/types/{components/Icons → icons}/InformationLarge/index.d.ts +2 -2
  56. package/dist/types/{components/Icons → icons}/InformationSmall/index.d.ts +2 -2
  57. package/dist/types/{components/Icons → icons}/Manufacturer/index.d.ts +2 -2
  58. package/dist/types/{components/Icons → icons}/Rectangle/index.d.ts +2 -2
  59. package/dist/types/{components/Icons → icons}/RefreshLeft/index.d.ts +2 -2
  60. package/dist/types/{components/Icons → icons}/RefreshRight/index.d.ts +2 -2
  61. package/dist/types/{components/Icons → icons}/ShowLarge/index.d.ts +2 -2
  62. package/dist/types/{components/Icons → icons}/ShowSmall/index.d.ts +2 -2
  63. package/package.json +1 -1
  64. package/src/components/Alert/Alert.tsx +1 -1
  65. package/src/components/Alert/Alert.utils.tsx +1 -1
  66. package/src/components/Chip/Chip.tsx +1 -1
  67. package/src/components/Chip/Chip.utils.tsx +1 -1
  68. package/src/components/DatePicker/DatePicker.tsx +1 -1
  69. package/src/components/Dialog/Dialog.tsx +1 -1
  70. package/src/components/Dropdown/Dropdown.tsx +1 -1
  71. package/src/components/Dropdown/DropdownItem.tsx +1 -1
  72. package/src/components/Dropdown/IconDropdown.tsx +1 -1
  73. package/src/components/List/List.tsx +1 -1
  74. package/src/components/List/ListItem.styled.tsx +1 -1
  75. package/src/components/Pagination/Pagination.styled.tsx +71 -0
  76. package/src/components/Pagination/Pagination.tsx +182 -0
  77. package/src/components/Pagination/Pagination.types.ts +39 -0
  78. package/src/components/Pagination/index.ts +2 -0
  79. package/src/components/ProductLabel/ProductLabel.tsx +1 -1
  80. package/src/components/TextField/components/Buttons.tsx +1 -1
  81. package/src/components/UploadManager/UploadManager.tsx +1 -1
  82. package/src/components/index.ts +1 -1
  83. package/src/foundations/index.ts +1 -0
  84. package/src/foundations/palette.ts +12 -1
  85. package/src/foundations/styles.ts +9 -0
  86. package/src/icons/BellNoti/index.tsx +28 -0
  87. package/src/icons/CloseLarge/index.tsx +28 -0
  88. package/src/icons/CloseSmall/index.tsx +28 -0
  89. package/src/icons/DownloadPdf/index.tsx +28 -0
  90. package/src/icons/Ellipse/index.tsx +28 -0
  91. package/src/icons/FilterNoti/index.tsx +28 -0
  92. package/src/icons/HideLarge/index.tsx +28 -0
  93. package/src/icons/HideSmall/index.tsx +28 -0
  94. package/src/icons/InformationLarge/index.tsx +28 -0
  95. package/src/icons/InformationSmall/index.tsx +28 -0
  96. package/src/icons/Manufacturer/index.tsx +28 -0
  97. package/src/icons/Rectangle/index.tsx +28 -0
  98. package/src/icons/RefreshLeft/index.tsx +28 -0
  99. package/src/icons/RefreshRight/index.tsx +28 -0
  100. package/src/icons/ShowLarge/index.tsx +28 -0
  101. package/src/icons/ShowSmall/index.tsx +28 -0
  102. package/dist/components/Icons/BellNoti/index.js +0 -14
  103. package/dist/components/Icons/CloseLarge/index.js +0 -14
  104. package/dist/components/Icons/CloseSmall/index.js +0 -14
  105. package/dist/components/Icons/Ellipse/index.js +0 -14
  106. package/dist/components/Icons/FilterNoti/index.js +0 -14
  107. package/dist/components/Icons/HideLarge/index.js +0 -14
  108. package/dist/components/Icons/HideSmall/index.js +0 -14
  109. package/dist/components/Icons/Rectangle/index.js +0 -14
  110. package/dist/components/Icons/ShowLarge/index.js +0 -14
  111. package/dist/components/Icons/ShowSmall/index.js +0 -14
  112. package/src/components/Icons/BellNoti/index.tsx +0 -22
  113. package/src/components/Icons/CloseLarge/index.tsx +0 -22
  114. package/src/components/Icons/CloseSmall/index.tsx +0 -22
  115. package/src/components/Icons/DownloadPdf/index.tsx +0 -22
  116. package/src/components/Icons/Ellipse/index.tsx +0 -22
  117. package/src/components/Icons/FilterNoti/index.tsx +0 -22
  118. package/src/components/Icons/HideLarge/index.tsx +0 -22
  119. package/src/components/Icons/HideSmall/index.tsx +0 -22
  120. package/src/components/Icons/InformationLarge/index.tsx +0 -22
  121. package/src/components/Icons/InformationSmall/index.tsx +0 -22
  122. package/src/components/Icons/Manufacturer/index.tsx +0 -22
  123. package/src/components/Icons/Rectangle/index.tsx +0 -22
  124. package/src/components/Icons/RefreshLeft/index.tsx +0 -22
  125. package/src/components/Icons/RefreshRight/index.tsx +0 -22
  126. package/src/components/Icons/ShowLarge/index.tsx +0 -22
  127. package/src/components/Icons/ShowSmall/index.tsx +0 -22
  128. /package/dist/{components/Icons → icons}/index.js +0 -0
  129. /package/dist/types/{components/Icons → icons}/index.d.ts +0 -0
  130. /package/src/{components/Icons → icons}/index.ts +0 -0
@@ -1,3 +1,4 @@
1
1
  export { default as palette } from './palette';
2
2
  export { default as typography } from './typography';
3
3
  export { default as spacing } from './spacing';
4
+ export { subScrollbarWidth } from './styles';
@@ -164,7 +164,14 @@ type AnalysisStatusKey =
164
164
  export type AnalysisStatus = PaletteOptionItem<AnalysisStatusKey>;
165
165
 
166
166
  export interface LunitPalette {
167
- brand: unknown;
167
+ brand: {
168
+ primary: React.CSSProperties['color'];
169
+ secondary: React.CSSProperties['color'];
170
+ };
171
+ scope1: React.CSSProperties['color'];
172
+ scope2: React.CSSProperties['color'];
173
+ scope3: React.CSSProperties['color'];
174
+ scope4: React.CSSProperties['color'];
168
175
  lunitTeal: LunitTeal;
169
176
  neutralGrey: NeutralColor;
170
177
  yellow: Yellow;
@@ -398,6 +405,10 @@ const palette: PaletteOptions = {
398
405
  InvalidHover: '#A7A7A7',
399
406
  InvalidSelected: '#6E6E74',
400
407
  },
408
+ scope1: '#7292FD',
409
+ scope2: '#587EFC',
410
+ scope3: '#B0C0F4',
411
+ scope4: '#3A5DD9',
401
412
  info: { main: '#748FFC' },
402
413
  success: { main: '#00C9EA' },
403
414
  error: { main: '#FA4D56' },
@@ -0,0 +1,9 @@
1
+ import { SMALL_SCROLLBAR_WIDTH } from '../systems';
2
+
3
+ export function subScrollbarWidth(value: string): string;
4
+ export function subScrollbarWidth(value: number): number;
5
+ export function subScrollbarWidth(value: string | number): string | number {
6
+ return typeof value === 'number'
7
+ ? value - SMALL_SCROLLBAR_WIDTH
8
+ : `calc(${value} - ${SMALL_SCROLLBAR_WIDTH}px)`;
9
+ }
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcBellNotiOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const BellNoti = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ BellNoti.displayName = 'BellNoti';
26
+ BellNoti.variants = variants;
27
+
28
+ export default BellNoti;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcCloseLargeOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const CloseLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ CloseLarge.displayName = 'CloseLarge';
26
+ CloseLarge.variants = variants;
27
+
28
+ export default CloseLarge;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcCloseSmallOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const CloseSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ CloseSmall.displayName = 'CloseSmall';
26
+ CloseSmall.variants = variants;
27
+
28
+ export default CloseSmall;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcDownloadPdfOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const DownloadPdf = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ DownloadPdf.displayName = 'DownloadPdf';
26
+ DownloadPdf.variants = variants;
27
+
28
+ export default DownloadPdf;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcEllipseOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const Ellipse = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ Ellipse.displayName = 'Ellipse';
26
+ Ellipse.variants = variants;
27
+
28
+ export default Ellipse;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcFilterNotiOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const FilterNoti = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ FilterNoti.displayName = 'FilterNoti';
26
+ FilterNoti.variants = variants;
27
+
28
+ export default FilterNoti;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcHideLargeOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const HideLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ HideLarge.displayName = 'HideLarge';
26
+ HideLarge.variants = variants;
27
+
28
+ export default HideLarge;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcHideSmallOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const HideSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ HideSmall.displayName = 'HideSmall';
26
+ HideSmall.variants = variants;
27
+
28
+ export default HideSmall;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcInformationLargeOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const InformationLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ InformationLarge.displayName = 'InformationLarge';
26
+ InformationLarge.variants = variants;
27
+
28
+ export default InformationLarge;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcInformationSmallOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const InformationSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ InformationSmall.displayName = 'InformationSmall';
26
+ InformationSmall.variants = variants;
27
+
28
+ export default InformationSmall;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcManufacturerOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const Manufacturer = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ Manufacturer.displayName = 'Manufacturer';
26
+ Manufacturer.variants = variants;
27
+
28
+ export default Manufacturer;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcRectangleOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const Rectangle = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ Rectangle.displayName = 'Rectangle';
26
+ Rectangle.variants = variants;
27
+
28
+ export default Rectangle;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcRefreshLeftOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const RefreshLeft = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ RefreshLeft.displayName = 'RefreshLeft';
26
+ RefreshLeft.variants = variants;
27
+
28
+ export default RefreshLeft;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcRefreshRightOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const RefreshRight = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ RefreshRight.displayName = 'RefreshRight';
26
+ RefreshRight.variants = variants;
27
+
28
+ export default RefreshRight;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcShowLargeOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const ShowLarge = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ ShowLarge.displayName = 'ShowLarge';
26
+ ShowLarge.variants = variants;
27
+
28
+ export default ShowLarge;
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon';
3
+
4
+ import { IcShowSmallOutlined20Px as outlined } from '../../assets';
5
+
6
+ const variants = ['outlined'] as const;
7
+ type Variant = (typeof variants)[number];
8
+ type IconProps = SvgIconProps & {
9
+ variant?: Variant;
10
+ };
11
+ const ShowSmall = ({ variant = 'outlined', ...rest }: IconProps) => {
12
+ if (variant === 'outlined') {
13
+ return (
14
+ <SvgIcon
15
+ {...rest}
16
+ component={outlined}
17
+ inheritViewBox
18
+ />
19
+ );
20
+ }
21
+
22
+ return null;
23
+ };
24
+
25
+ ShowSmall.displayName = 'ShowSmall';
26
+ ShowSmall.variants = variants;
27
+
28
+ export default ShowSmall;
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcBellNotiOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const BellNoti = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- BellNoti.displayName = 'BellNoti';
12
- BellNoti.variants = variants;
13
- export default BellNoti;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcCloseLargeOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const CloseLarge = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- CloseLarge.displayName = 'CloseLarge';
12
- CloseLarge.variants = variants;
13
- export default CloseLarge;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcCloseSmallOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const CloseSmall = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- CloseSmall.displayName = 'CloseSmall';
12
- CloseSmall.variants = variants;
13
- export default CloseSmall;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcEllipseOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const Ellipse = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- Ellipse.displayName = 'Ellipse';
12
- Ellipse.variants = variants;
13
- export default Ellipse;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcFilterNotiOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const FilterNoti = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- FilterNoti.displayName = 'FilterNoti';
12
- FilterNoti.variants = variants;
13
- export default FilterNoti;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcHideLargeOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const HideLarge = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- HideLarge.displayName = 'HideLarge';
12
- HideLarge.variants = variants;
13
- export default HideLarge;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcHideSmallOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const HideSmall = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- HideSmall.displayName = 'HideSmall';
12
- HideSmall.variants = variants;
13
- export default HideSmall;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcRectangleOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const Rectangle = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- Rectangle.displayName = 'Rectangle';
12
- Rectangle.variants = variants;
13
- export default Rectangle;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcShowLargeOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const ShowLarge = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- ShowLarge.displayName = 'ShowLarge';
12
- ShowLarge.variants = variants;
13
- export default ShowLarge;
14
- //# sourceMappingURL=index.js.map
@@ -1,14 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import SvgIcon from "@mui/material/SvgIcon";
3
- import { IcShowSmallOutlined20Px as outlined } from '../../../assets';
4
- const variants = ['outlined',];
5
- const ShowSmall = ({ variant = 'outlined', ...rest }) => {
6
- if (variant === 'outlined') {
7
- return _jsx(SvgIcon, { ...rest, component: outlined, inheritViewBox: true });
8
- }
9
- return null;
10
- };
11
- ShowSmall.displayName = 'ShowSmall';
12
- ShowSmall.variants = variants;
13
- export default ShowSmall;
14
- //# sourceMappingURL=index.js.map