feat: 공통 컴포넌트 추가 생성

This commit is contained in:
2026-04-13 15:27:25 +09:00
parent 01c3590682
commit 52f8c30b2e
14 changed files with 500 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { SVGProps } from 'react';
export function OverlayArrowIcon(props: SVGProps<SVGSVGElement>) {
return (
<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
<path d="M4.5 7L0 0H9L4.5 7Z" />
</svg>
);
}