aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/TileFooterCell.js
blob: 37e641618a97ff9d5db6b4f170a65286f2a36bcc (plain)
1
2
3
4
5
6
7
import React from 'react';

const TileFooterCell = ({className, children, dataTestId}) => (
	<span className={`sdc-tile-footer-cell ${className || ''}`} data-test-id={dataTestId}>{children}</span>
);

export default TileFooterCell;