From 2c0b4763942d4d172bb08c89f46d813de9354361 Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Tue, 19 Jul 2022 16:12:39 -0400 Subject: [PATCH] fix(striker-ui): move DataGridCellText --- striker-ui/components/Text/DataGridCellText.tsx | 16 ++++++++++++++++ striker-ui/components/Text/index.tsx | 3 ++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 striker-ui/components/Text/DataGridCellText.tsx 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 };