Skip to content

Commit

Permalink
Re-add missing styled component
Browse files Browse the repository at this point in the history
  • Loading branch information
louptheron committed May 28, 2024
1 parent e3a0f27 commit 528894d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package fr.gouv.cnsp.monitorfish.infrastructure.database.entities

import com.fasterxml.jackson.databind.ObjectMapper
import com.neovisionaries.i18n.CountryCode
import fr.gouv.cnsp.monitorfish.domain.entities.facade.Facade
import fr.gouv.cnsp.monitorfish.domain.entities.facade.Seafront
import fr.gouv.cnsp.monitorfish.domain.entities.mission.mission_actions.*
import fr.gouv.cnsp.monitorfish.infrastructure.database.entities.converters.CountryCodeConverter
Expand Down
10 changes: 10 additions & 0 deletions frontend/src/components/CountryFlag/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,13 @@ const Img = styled.img<{
height: ${p => p.$height}px;
width: ${p => p.$width}px;
`

const Unknown = styled.span<{
$height: number
$width: number
}>`
background-color: black;
display: inline-block;
height: ${p => p.$height}px;
width: ${p => p.$width}px;
`

0 comments on commit 528894d

Please sign in to comment.