12 lines
247 B
TypeScript
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;
|
|
}
|
|
`;
|