diff --git a/striker-ui/components/Text/DataGridCellText.tsx b/striker-ui/components/Text/DataGridCellText.tsx new file mode 100644 index 00000000..8d1725fe --- /dev/null +++ b/striker-ui/components/Text/DataGridCellText.tsx @@ -0,0 +1,16 @@ +import { FC } from 'react'; + +import BodyText, { BodyTextProps } from './BodyText'; + +const DataGridCellText: FC = ({ + ...dataGridCellTextRestProps +}) => ( + +); + +export default DataGridCellText; diff --git a/striker-ui/components/Text/index.tsx b/striker-ui/components/Text/index.tsx index 33d3415c..34a3bb5f 100644 --- a/striker-ui/components/Text/index.tsx +++ b/striker-ui/components/Text/index.tsx @@ -1,6 +1,7 @@ import BodyText, { BodyTextProps } from './BodyText'; +import DataGridCellText from './DataGridCellText'; import HeaderText from './HeaderText'; import Monospace from './Monospace'; export type { BodyTextProps }; -export { BodyText, HeaderText, Monospace }; +export { BodyText, DataGridCellText, HeaderText, Monospace };