sbt-idp/cope2n-fe/src/components/editable-cell/index.tsx
2023-11-30 18:19:06 +07:00

12 lines
247 B
TypeScript

import { Typography } from 'antd';
import styled from 'styled-components';
export const EditableCell = styled(Typography.Text)`
margin-top: 0 !important;
margin-bottom: 0 !important;
& > .ant-typography-copy {
margin-left: 8px;
}
`;