Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai>
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import React from 'react'
|
|
|
|
import { Badge } from '@janhq/uikit'
|
|
|
|
const RecommendedLabel: React.FC = () => (
|
|
<Badge className="space-x-1 rounded-md" themes="success">
|
|
<span>Recommended</span>
|
|
</Badge>
|
|
)
|
|
|
|
export default React.memo(RecommendedLabel)
|