Basic example
const data = [
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<CSVLink data={data} >Click here to download CSV file</CSVLink>
Set data props as "Array of literal (json) objects" ;
const data = [
{firstname: 'Ahmed', lastname: 'Tomi' , email: 'ah@smthing.co.com'},
{firstname:'Raed', lastname:'Labes' , email:'rl@smthing.co.com'} ,
{firstname:'Yezzi', lastname:'Min l3b', email:'ymin@cocococo.com'}
];
<CSVLink data={data} >Click here to download CSV file</CSVLink>
Custom Headers for "Array of literal (json) objects" :
const headers = [
{ label: 'First Name', key: 'firstname'},
{ label: 'Last Name', key: 'lastname'},
{ label: 'Email Address', key: 'email'},
];
const data = [
{firstname: 'Ahmed', lastname: 'Tomi' , email: 'ah@smthing.co.com'},
{firstname:'Raed', lastname:'Labes' , email:'rl@smthing.co.com'} ,
{firstname:'Yezzi', lastname:'Min l3b', email:'ymin@cocococo.com'}
];
<CSVLink data={data} headers={headers}>Download with custom headers</CSVLink>
Add styling to your link via style props or className props :
const prettyLink = {
backgroundColor: '#8dc63f',
fontSize: 14,
fontWeight: 500,
height: 52,
padding: '0 48px',
borderRadius: 5,
color: '#fff'
};
const data = [
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<span>
Download <CSVLink data={data} style={prettyLink}>CSV ⬇</CSVLink> to download CSV
</span>
Set the separator between cells via separator props:
const data = [
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<span>
Download <CSVLink data={data} separator={";"}>CSV ⬇</CSVLink>
</span>
Set the new line for rows via newLine props:
const data = [
['firstname', 'lastname', 'email'] ,
['Ahmed', 'Tomi' , 'ah@smthing.co.com'] ,
['Raed', 'Labes' , 'rl@smthing.co.com'] ,
['Yezzi','Min l3b', 'ymin@cocococo.com']
];
<span>
Download <CSVLink data={data} newLine={`\r\n`} separator={";"}>CSV ⬇</CSVLink>
</span>
<span>
Download <CSVLink data={data} newLine={`$`} separator={";"}>CSV ⬇</CSVLink>
</span>
the newLine props defaults to \n
Set the default **filename** of the downloaded CSV file :
const randomData = Array.from({length:10}, (v, k) => Array.from({length:4}, (vv, kk) => Math.random().toString(36).substring(7)) );
// -----------------------Double click here👇🏼 to change the name (it is editable) Download me with another name
Add **headers** :
//It is editable content : you can change code and see results on live. const randomData = Array.from({length:10}, (v, k) => Array.from({length:4}, (vv, kk) => Math.random().toString(36).substring(5)) ); const headers =['Rando-🍌', 'Rando-🍑', 'Rando-🌺', 'Rando-🍀'];
Download with Headers
Suppress \uFEFF with prop
```html
const data = [
['name', 'age'],
['Ahmed', 12],
['John', 8]
];
<CSVLink data={data} uFEFF={false}>Download without \uFEFF</CSVLink>
the uFEFF prop defaults to true