@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 +6 -0
- package/assets/icons/ArrowChevronDoubleLeftBold.svg +4 -0
- package/assets/icons/ArrowChevronDoubleRightBold.svg +4 -0
- package/assets/icons/ArrowChevronLeftBold.svg +3 -0
- package/assets/icons/ArrowChevronRightBold.svg +3 -0
- package/dist/components/icons/generated/ArrowChevronDoubleLeftBold.d.ts +4 -0
- package/dist/components/icons/generated/ArrowChevronDoubleRightBold.d.ts +4 -0
- package/dist/components/icons/generated/ArrowChevronLeftBold.d.ts +4 -0
- package/dist/components/icons/generated/ArrowChevronRightBold.d.ts +4 -0
- package/dist/components/icons/generated/index.d.ts +4 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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>
|
|
@@ -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';
|