mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 22:34:54 +08:00
18 lines
361 B
TypeScript
18 lines
361 B
TypeScript
import { Typography } from '@supabase/ui'
|
|
|
|
function FeatureColumn({ icon, title, text }: any) {
|
|
return (
|
|
<>
|
|
<Typography.Text>
|
|
<p>{icon}</p>
|
|
</Typography.Text>
|
|
<Typography.Title level={4}>{title}</Typography.Title>
|
|
<Typography.Text>
|
|
<p>{text}</p>
|
|
</Typography.Text>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FeatureColumn
|