diff --git a/app/ui/info-badge.tsx b/app/ui/info-badge.tsx index a00b36f..362c684 100644 --- a/app/ui/info-badge.tsx +++ b/app/ui/info-badge.tsx @@ -1,12 +1,18 @@ type TProps = { text: string withAsterisk?: boolean + withDoubleAsterisk?: boolean } -export default function InfoBadge({ text, withAsterisk = true }: TProps) { +export default function InfoBadge({ + text, + withAsterisk = true, + withDoubleAsterisk = false, +}: TProps) { return ( - {withAsterisk && ' * '} + {withDoubleAsterisk && ' ** '} + {!withDoubleAsterisk && withAsterisk && ' * '} {text} )