diff options
Diffstat (limited to 'src/react/TileFooterCell.js')
-rw-r--r-- | src/react/TileFooterCell.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/react/TileFooterCell.js b/src/react/TileFooterCell.js new file mode 100644 index 0000000..37e6416 --- /dev/null +++ b/src/react/TileFooterCell.js @@ -0,0 +1,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; |