aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/TileFooterCell.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/react/TileFooterCell.js')
-rw-r--r--src/react/TileFooterCell.js7
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;