mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 14:14:57 +00:00
14 lines
450 B
TypeScript
14 lines
450 B
TypeScript
import type { ReactNode } from 'react'
|
|
|
|
export function FeatureItem({ icon, title, description }: { icon: ReactNode; title: string; description: string }) {
|
|
return (
|
|
<div className="flex gap-3">
|
|
<div className="text-accent mt-0.5">{icon}</div>
|
|
<div className="space-y-1">
|
|
<h4 className="font-semibold text-sm">{title}</h4>
|
|
<p className="text-sm text-muted-foreground">{description}</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|