Skip to content

Commit

Permalink
feat: icons placeholder (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyzif authored Aug 29, 2024
1 parent c60ded7 commit 2503af1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/assets/svg/mp_info_lt_placeholder.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/components/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ import FilterIcon from 'src/assets/svg/mp_act_lt_filter.svg?react'
import ActiveIcon from 'src/assets/svg/mp_info_lt_active.svg?react'
import LinkIcon from 'src/assets/svg/mp_info_link.svg?react'
import InfoIcon from 'src/assets/svg/mp_info_lt_info.svg?react'
import Placeholder from 'src/assets/svg/mp_info_lt_placeholder.svg?react'

export {
AddIcon,
Expand Down Expand Up @@ -134,4 +135,5 @@ export {
LinkIcon,
ActiveIcon,
InfoIcon,
Placeholder,
}
5 changes: 5 additions & 0 deletions src/constants/Icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ import {
ActiveIcon,
LinkIcon,
InfoIcon,
Placeholder,
} from 'src/components/icons'

export const Icons: Record<IconNames, IconOptions> = {
Expand Down Expand Up @@ -430,4 +431,8 @@ export const Icons: Record<IconNames, IconOptions> = {
light: InfoIcon,
default: 'light',
},
placeholder: {
light: Placeholder,
default: 'light',
},
} as const
2 changes: 2 additions & 0 deletions src/types/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,5 @@ export type IconNames =
| 'active'
| 'link'
| 'info'
| 'placeholder'

0 comments on commit 2503af1

Please sign in to comment.