mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 15:27:43 +01:00
15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
import Component from '../Component.jsx';
|
|
|
|
export default class Actions extends Component {
|
|
view(vnode) {
|
|
this.attrs.addClassNames('mdc-card__actions', {
|
|
'mdc-card__actions--full-bleed': this.attrs.has('full-bleed')
|
|
});
|
|
return (
|
|
<div {...this.attrs.all()}>
|
|
{vnode.children}
|
|
</div>
|
|
);
|
|
}
|
|
}
|