aboutsummaryrefslogtreecommitdiffstats
path: root/src/react/TileFooter.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/react/TileFooter.js')
-rw-r--r--src/react/TileFooter.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/react/TileFooter.js b/src/react/TileFooter.js
deleted file mode 100644
index 3a56908..0000000
--- a/src/react/TileFooter.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import React, {Children} from 'react';
-import TileFooterCell from './TileFooterCell.js';
-
-const TileFooter = ({children, align}) => (
- <div className={`sdc-tile-footer ${align === 'center' ? 'centered' : ''}`}>
- {Children.toArray(children).filter(e => e.type === TileFooterCell)}
- </div>
-);
-
-export default TileFooter;