Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] ever used 변수 삭제 #44

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions Lotte-Cinema/src/assets/svg/IcAge1216.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgIcAge1216 = (props: SVGProps<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" {...props}><rect width={16} height={16} fill="#E9B630" rx={3} /><path fill="#fff" d="m3 5.5 1.5-3H6v11H4v-8zM7 6V2.5h6V6l-3 5h3v2.5H7V12l4-7.5H9V6z" /></svg>;
export default SvgIcAge1216;
import type { SVGProps } from 'react';

const SvgIcAge1216 = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" {...props}>
<rect width={16} height={16} fill="#E9B630" rx={3} />
<path fill="#fff" d="m3 5.5 1.5-3H6v11H4v-8zM7 6V2.5h6V6l-3 5h3v2.5H7V12l4-7.5H9V6z" />
</svg>
);
export default SvgIcAge1216;
19 changes: 15 additions & 4 deletions Lotte-Cinema/src/assets/svg/IcAge1916.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgIcAge1916 = (props: SVGProps<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 16" {...props}><rect width={16} height={16} x={0.428} fill="#D41017" rx={2.286} /><path fill="#fff" d="m2.714 5.403 1.714-3.117h1.714v11.428H3.857V5.403z" /><path fill="#fff" fillRule="evenodd" d="M7.285 2.286v6.722h3.81v2.69H9.19v-1.345H7.285v3.361H13V2.286zm1.864 5.03h1.905v-3.36H9.149z" clipRule="evenodd" /></svg>;
export default SvgIcAge1916;
import type { SVGProps } from 'react';

const SvgIcAge1916 = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 16" {...props}>
<rect width={16} height={16} x={0.428} fill="#D41017" rx={2.286} />
<path fill="#fff" d="m2.714 5.403 1.714-3.117h1.714v11.428H3.857V5.403z" />
<path
fill="#fff"
fillRule="evenodd"
d="M7.285 2.286v6.722h3.81v2.69H9.19v-1.345H7.285v3.361H13V2.286zm1.864 5.03h1.905v-3.36H9.149z"
clipRule="evenodd"
/>
</svg>
);
export default SvgIcAge1916;
17 changes: 13 additions & 4 deletions Lotte-Cinema/src/assets/svg/IcAgeAll16.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgIcAgeAll16 = (props: SVGProps<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 16" {...props}><rect width={16} height={16} x={0.714} fill="#229C56" rx={2.286} /><rect width={16} height={16} x={0.714} fill="#229C56" rx={2.286} /><path fill="#fff" d="m2.429 12 1.636-8h1.888l1.601 8H5.989l-.233-1.524H4.218L3.993 12zM5.53 9.02l-.549-3.563h-.018l-.53 3.563zM7.592 12V4h1.51v6.476h2.185V12zM11.305 12V4h1.51v6.476H15V12z" /></svg>;
export default SvgIcAgeAll16;
import type { SVGProps } from 'react';

const SvgIcAgeAll16 = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 16" {...props}>
<rect width={16} height={16} x={0.714} fill="#229C56" rx={2.286} />
<rect width={16} height={16} x={0.714} fill="#229C56" rx={2.286} />
<path
fill="#fff"
d="m2.429 12 1.636-8h1.888l1.601 8H5.989l-.233-1.524H4.218L3.993 12zM5.53 9.02l-.549-3.563h-.018l-.53 3.563zM7.592 12V4h1.51v6.476h2.185V12zM11.305 12V4h1.51v6.476H15V12z"
/>
</svg>
);
export default SvgIcAgeAll16;
12 changes: 8 additions & 4 deletions Lotte-Cinema/src/assets/svg/IcArrowRightWhite10.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgIcArrowRightWhite10 = (props: SVGProps<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 10 10" {...props}><path stroke="#fff" strokeLinecap="round" strokeLinejoin="round" d="m3 1 4 4-4 4" /></svg>;
export default SvgIcArrowRightWhite10;
import type { SVGProps } from 'react';

const SvgIcArrowRightWhite10 = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 10 10" {...props}>
<path stroke="#fff" strokeLinecap="round" strokeLinejoin="round" d="m3 1 4 4-4 4" />
</svg>
);
export default SvgIcArrowRightWhite10;
15 changes: 11 additions & 4 deletions Lotte-Cinema/src/assets/svg/IcCloseGray1414.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import * as React from "react";
import type { SVGProps } from "react";
const SvgIcCloseGray1414 = (props: SVGProps<SVGSVGElement>) => <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" {...props}><path fill="#fff" d="M4.393 11 4 10.607 7.107 7.5 4 4.393 4.393 4 7.5 7.107 10.607 4l.393.393L7.893 7.5 11 10.607l-.393.393L7.5 7.893z" /></svg>;
export default SvgIcCloseGray1414;
import type { SVGProps } from 'react';

const SvgIcCloseGray1414 = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14" {...props}>
<path
fill="#fff"
d="M4.393 11 4 10.607 7.107 7.5 4 4.393 4.393 4 7.5 7.107 10.607 4l.393.393L7.893 7.5 11 10.607l-.393.393L7.5 7.893z"
/>
</svg>
);
export default SvgIcCloseGray1414;
Loading