Sha256: 604ace5c92db0acbbe55953ac49709c2f63ec166533975ddf809dd52dd50a107
Contents?: true
Size: 1.01 KB
Versions: 1434
Compression:
Stored size: 1.01 KB
Contents
import React from 'react' import Table from '../_table' const TableVerticalBorder = (props) => { return ( <Table size="sm" verticalBorder {...props} > <thead> <tr> <th>{'Column 1'}</th> <th>{'Column 2'}</th> <th>{'Column 3'}</th> <th>{'Column 4'}</th> <th>{'Column 5'}</th> </tr> </thead> <tbody> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td>{'Value 5'}</td> </tr> </tbody> </Table> ) } export default TableVerticalBorder
Version data entries
1,434 entries across 1,434 versions & 2 rubygems