Sha256: aee907a139f6b90bf21192e22d127d9580fc660e521ba719e565fa3d2774cee5
Contents?: true
Size: 1.53 KB
Versions: 112
Compression:
Stored size: 1.53 KB
Contents
import React from 'react' import Table from '../_table' import CircleIconButton from '../../pb_circle_icon_button/_circle_icon_button' const TableTwoPlusActions = (props) => { return ( <Table size="sm" {...props} > <thead> <tr> <th>{'Column 1'}</th> <th>{'Column 2'}</th> <th>{'Column 3'}</th> <th>{'Column 4'}</th> <th>{''}</th> </tr> </thead> <tbody> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <CircleIconButton icon="ellipsis-h" variant="secondary" {...props} /> </td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <CircleIconButton icon="ellipsis-h" variant="secondary" {...props} /> </td> </tr> <tr> <td>{'Value 1'}</td> <td>{'Value 2'}</td> <td>{'Value 3'}</td> <td>{'Value 4'}</td> <td> {' '} <CircleIconButton icon="ellipsis-h" variant="secondary" {...props} /> </td> </tr> </tbody> </Table> ) } export default TableTwoPlusActions
Version data entries
112 entries across 112 versions & 1 rubygems