wix-style-react
Version:
32 lines (30 loc) • 876 B
JavaScript
import React from 'react';
import FeatureList from '..';
import Image from '../../Image';
export default () => (
<FeatureList
features={[
{
image: (
<Image width={60} height={60} src="connect_domain.svg" transparent />
),
title: 'Connect a Custom Domain',
text: 'Get your business found with a custom domain.',
},
{
image: (
<Image width={60} height={60} src="payment_methods.svg" transparent />
),
title: 'Accept Online Payment',
text: 'Let your customers and clients pay you online at checkout.',
},
{
image: (
<Image width={60} height={60} src="email_account.svg" transparent />
),
title: 'Connect Your Gmail Account',
text: 'Always stay connected by syncing Gmail yo your Wix Inbox.',
},
]}
/>
);