Skip to content

Commit

Permalink
Merge pull request #53 from SOPT-all/feat/#51/cartSection3
Browse files Browse the repository at this point in the history
[feat/#51] 장바구니 section3 퍼블리싱
  • Loading branch information
maylh authored Nov 27, 2024
2 parents 6991ce7 + 472d85d commit ac7e7f8
Show file tree
Hide file tree
Showing 28 changed files with 777 additions and 57 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
3 changes: 3 additions & 0 deletions public/svgs/ic_leftarrow_medium_gray50.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/svgs/ic_rightarrow_medium_gray50.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_31.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_32.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_33.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_34.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions public/svgs/img_cart_35.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_36.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_37.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_cart_38.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/svgs/img_shopx2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/assets/svgs/IcLeftarrowMediumGray50.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgIcLeftarrowMediumGray50 = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={20}
height={20}
fill="none"
{...props}
>
<path
stroke="#9E9E9E"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="m12 4-6 6 6 6"
/>
</svg>
);
export default SvgIcLeftarrowMediumGray50;
20 changes: 20 additions & 0 deletions src/assets/svgs/IcRightarrowMediumGray50.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import * as React from 'react';
import type { SVGProps } from 'react';
const SvgIcRightarrowMediumGray50 = (props: SVGProps<SVGSVGElement>) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width={20}
height={20}
fill="none"
{...props}
>
<path
stroke="#9E9E9E"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth={1.5}
d="m8 4 6 6-6 6"
/>
</svg>
);
export default SvgIcRightarrowMediumGray50;
36 changes: 36 additions & 0 deletions src/assets/svgs/ImgCart31.tsx

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions src/assets/svgs/ImgCart32.tsx

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions src/assets/svgs/ImgCart33.tsx

Large diffs are not rendered by default.

39 changes: 39 additions & 0 deletions src/assets/svgs/ImgCart34.tsx

Large diffs are not rendered by default.

31 changes: 31 additions & 0 deletions src/assets/svgs/ImgCart35.tsx

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions src/assets/svgs/ImgCart36.tsx

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions src/assets/svgs/ImgCart37.tsx

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions src/assets/svgs/ImgCart38.tsx

Large diffs are not rendered by default.

Loading

0 comments on commit ac7e7f8

Please sign in to comment.