Iconography
DDS 아이콘 시스템은 Mono와 Illustration 두 가지 카테고리로 구성됩니다.
Installation
Terminal
$ pnpm add @b1nd/dodam-design-system/icons
Usage
tsx
// Mono 아이콘 (단색, 색상 커스터마이징 가능)import { ArrowRight, Bell, Home } from "@b1nd/dodam-design-system/icons/mono";// Illustration 아이콘 (컬러 일러스트)import { Smile, Trophy, Globe } from "@b1nd/dodam-design-system/icons/illustration";
Props
IconProps (Illustration)
| Prop | Type | Default | Description |
|---|---|---|---|
size | number | 24 | 아이콘 크기 (px) |
onClick | () => void | () => {} | 클릭 이벤트 핸들러 |
pointer | boolean | false | 커서를 pointer로 변경 |
IconWithColorProps (Mono)
| Prop | Type | Default | Description |
|---|---|---|---|
size | number | 24 | 아이콘 크기 (px) |
color | string | "#0F0F10" | 아이콘 색상 |
onClick | () => void | () => {} | 클릭 이벤트 핸들러 |
pointer | boolean | false | 커서를 pointer로 변경 |
Examples
기본 사용
tsx
import { ArrowRight } from "@b1nd/dodam-design-system/icons/mono";import { Smile } from "@b1nd/dodam-design-system/icons/illustration";function App() {return (<div><ArrowRight /><Smile size={32} /></div>);}
색상 커스터마이징 (Mono)
tsx
import { Bell } from "@b1nd/dodam-design-system/icons/mono";import { colors } from "@b1nd/dodam-design-system/colors";function Notification() {return (<Bellsize={20}color={colors.brand.primary}pointeronClick={() => alert("clicked!")}/>);}
버튼과 함께 사용
tsx
import { ArrowRight } from "@b1nd/dodam-design-system/icons/mono";function Button({ children }) {return (<button>{children}<ArrowRight size={16} color="currentColor" /></button>);}
Mono Icons
단색 아이콘으로, color prop을 통해 색상을 자유롭게 변경할 수 있습니다.
ArrowDown
ArrowLeft
ArrowRight
ArrowUp
Bell
Bus
Calendar
Chart
Chat
Checkmark
CheckmarkCircleFill
CheckmarkCircleLine
ChevronDown
ChevronLeft
ChevronRight
ChevronUp
Clock
Close
Crown
DoorOpen
ExclamationmarkCircle
Eye
EyeSlash
File
ForkAndKnife
Gear
Home
Link
MagnifyingGlass
Megaphone
Menu
MoonPlus
Note
Pen
People
Person
Photo
Plus
Trash
XmarkCircle
Illustration Icons
컬러 일러스트 아이콘으로, 고정된 색상을 가지고 있습니다.
BarChart
Bullseye
ConvenienceStore
CookedRice
CreditCard
Dgit
FullMoonFace
HandShake
LoudSpeaker
MusicalNote
School
SchoolBus
Smile
Tent
Trophy