@tripie-pyotato/design-system 0.3.3 → 0.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripie-pyotato/design-system",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "트리피에 사용되는 디자인 시스템",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -19,6 +19,7 @@ const NavigateButton = ({
19
19
  disabled,
20
20
  onTapStart,
21
21
  navigateUrl,
22
+ cloudinaryUrl,
22
23
  }: Readonly<NavigationIconProps>) => {
23
24
  const navigate = useRouter();
24
25
 
@@ -37,7 +38,7 @@ const NavigateButton = ({
37
38
  }}
38
39
  className={cx('btn-icon', classNames)}
39
40
  >
40
- <NavigateIcon direction={direction} sizes={sizes} src={src} />
41
+ <NavigateIcon cloudinaryUrl={cloudinaryUrl} direction={direction} sizes={sizes} src={src} />
41
42
  </Motion.Button>
42
43
  );
43
44
  };