Skip to content

Commit 89201a0

Browse files
Merge pull request #108 from SOPT-36-NINEDOT/feat/#36/layoutHeaderFooter
[Feat]: 헤더 구현
2 parents 157c272 + 4aa66a9 commit 89201a0

File tree

27 files changed

+232
-23
lines changed

27 files changed

+232
-23
lines changed

.nvmrc 2

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
20.0.0

public/svg/ic_logo.svg

Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

public/svg/ic_streaker_dot 2.svg

Lines changed: 33 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

public/svg/ic_tomorrow 2.svg

Lines changed: 3 additions & 0 deletions
Loading

public/svg/ic_yesterday 2.svg

Lines changed: 3 additions & 0 deletions
Loading

src/assets/image/.gitkeep

Whitespace-only changes.

src/assets/svg/IcLogo.tsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import type { SVGProps } from 'react';
2+
const SvgIcLogo = (props: SVGProps<SVGSVGElement>) => (
3+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 162 24" {...props}>
4+
<path
5+
fill="#fff"
6+
d="M21.219 1.668v21.165h-2.877L5.58 9.601v13.232H1V1.668h3.41l12.53 13.319V1.668zM57.229 1.668v21.165h-2.877L41.59 9.601v13.232h-4.58V1.668h3.41l12.53 13.319V1.668zM27.373 22.999V7.75H31.7v15.249zM27.373 6.006V1.84H31.7v4.166zM156.344 22.993V18.16h4.826v4.833zM78.76 23.005H62.57V1.84h18.555l-.502 4.198H66.93v4.348h13.11l-.537 4.025H66.93v4.454h12.332zM83.54 23.005 85.837 1.84h8.328c7.606 0 11.672 4.227 11.672 11.726 0 6.544-5.03 9.44-11.03 9.44zm4.813-3.967h6.674c3.909 0 6.697-1.563 6.697-5.906 0-4.835-2.334-7.268-6.698-7.268h-5.104zM133.209 12.159c0 5.796-5.112 10.84-12.397 10.84s-12.398-5.044-12.398-10.84C108.414 5.84 114.028 1 120.812 1s12.397 4.84 12.397 11.159m-20.28 0c0 3.478 3.672 6.869 7.883 6.869 4.21 0 7.816-3.391 7.816-6.87 0-3.796-3.305-6.955-7.816-6.955-4.512 0-7.883 3.159-7.883 6.956M134.875 1.84h20.635l-.502 4.198h-7.656v16.967h-4.302V6.038h-8.175z"
7+
/>
8+
</svg>
9+
);
10+
export default SvgIcLogo;

src/assets/svg/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ export { default as IcCheckboxChecked } from './IcCheckboxChecked';
33
export { default as IcCheckboxDefault } from './IcCheckboxDefault';
44
export { default as IcDropdown } from './IcDropdown';
55
export { default as IcLock } from './IcLock';
6+
export { default as IcLogo } from './IcLogo';
67
export { default as IcMediumTextdelete } from './IcMediumTextdelete';
78
export { default as IcModalDelete } from './IcModalDelete';
89
export { default as IcPencil } from './IcPencil';

0 commit comments

Comments
 (0)