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

const TileInfoLine = ({type, className, children, dataTestId}) => (
	<div className={`sdc-tile-info-line ${type || ''} ${className || ''}`} data-test-id={dataTestId}>{children}</div>
);

export default TileInfoLine;