mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-08 23:46:17 +00:00
13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
![]() |
import { Button } from 'antd';
|
||
|
import styled from 'styled-components';
|
||
|
import { ANTD_GRAY } from '../../constants';
|
||
|
|
||
|
export const SeeMore = styled(Button)`
|
||
|
margin-top: -20px;
|
||
|
background-color: ${ANTD_GRAY[4]};
|
||
|
padding: 4px;
|
||
|
border: none;
|
||
|
line-height: 8px;
|
||
|
height: 20px;
|
||
|
`;
|