mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 09:50:33 -04:00
c2c1bda297
* update www styling with new tokens
12 lines
268 B
TypeScript
12 lines
268 B
TypeScript
function FeatureColumn({ icon, title, text }: any) {
|
|
return (
|
|
<>
|
|
{icon && <div className="p mb-2">{icon}</div>}
|
|
<h4 className="text-foreground mb-4 text-base">{title}</h4>
|
|
<p className="p">{text}</p>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FeatureColumn
|