검색 잘되는 사람이 되자
!!
// src/assets/svgs/index.tsx
export { ReactComponent as BellIcon } from './ic-bell.svg'
export { ReactComponent as CalendarIcon } from './ic-calendar.svg'
export { ReactComponent as CalendarRangeIcon } from './ic-calendar-range.svg'
export { ReactComponent as CancelAlertIcon } from './ic-cancel-alert.svg'
import { BellIcon } from 'svgs'
beSaved
리팩토링
// 기존
className = {
active === 'detail-btn' ? "detail-btn active" : "detail-btn"
}
// 리팩토링
className={cx('detail-btn', { [active]: detail-btn })}