@croquiscom/pds 3.4.2 → 3.4.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 3.4.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 53e1083: 신규 ArrowChevronBold 아이콘 4종 추가
8
+
3
9
  ## 3.4.2
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.9393 2.93933L13.0606 5.06065L6.1213 12L13.0606 18.9393L10.9393 21.0606L1.87866 12L10.9393 2.93933Z" fill="#363644"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.9393 2.93933L22.0606 5.06065L15.1213 12L22.0606 18.9393L19.9393 21.0606L10.8787 12L19.9393 2.93933Z" fill="#363644"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M8.87867 12L1.93933 5.06065L4.06065 2.93933L13.1213 12L4.06065 21.0606L1.93933 18.9393L8.87867 12Z" fill="#363644"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17.8787 12L10.9393 5.06065L13.0607 2.93933L22.1213 12L13.0607 21.0606L10.9393 18.9393L17.8787 12Z" fill="#363644"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.9393 2.93933L17.0606 5.06065L10.1213 12L17.0606 18.9393L14.9393 21.0606L5.87866 12L14.9393 2.93933Z" fill="#363644"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.8787 12L6.93933 5.06065L9.06065 2.93933L18.1213 12L9.06065 21.0606L6.93933 18.9393L13.8787 12Z" fill="#363644"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgArrowChevronDoubleLeftBold: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgArrowChevronDoubleLeftBold;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgArrowChevronDoubleRightBold: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgArrowChevronDoubleRightBold;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgArrowChevronLeftBold: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgArrowChevronLeftBold;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '.';
3
+ declare const SvgArrowChevronRightBold: ({ size, color, secondaryColor, ...props }: IconProps) => JSX.Element;
4
+ export default SvgArrowChevronRightBold;
@@ -4,9 +4,13 @@ export interface IconProps extends React.SVGProps<SVGSVGElement> {
4
4
  color?: string;
5
5
  secondaryColor?: string;
6
6
  }
7
+ export { default as IconArrowChevronDoubleLeftBold } from './ArrowChevronDoubleLeftBold';
8
+ export { default as IconArrowChevronDoubleRightBold } from './ArrowChevronDoubleRightBold';
7
9
  export { default as IconArrowChevronDown } from './ArrowChevronDown';
8
10
  export { default as IconArrowChevronLeft } from './ArrowChevronLeft';
11
+ export { default as IconArrowChevronLeftBold } from './ArrowChevronLeftBold';
9
12
  export { default as IconArrowChevronRight } from './ArrowChevronRight';
13
+ export { default as IconArrowChevronRightBold } from './ArrowChevronRightBold';
10
14
  export { default as IconArrowChevronUp } from './ArrowChevronUp';
11
15
  export { default as IconArrowDecrease } from './ArrowDecrease';
12
16
  export { default as IconArrowDirectionDown } from './ArrowDirectionDown';