pal-sig ff2e9ae084
feat: tooltip is added (#501)
* tooltip is added

* fix: tooltip component is updated

* Tooltip component is updated

* settings tooltip is updated

* tooltip size is updated
2021-12-24 11:51:19 +05:30

26 lines
403 B
TypeScript

import { Button, Row } from 'antd';
import styled from 'styled-components';
export const NewDashboardButton = styled(Button)`
&&& {
display: flex;
justify-content: center;
align-items: center;
margin-left: 1rem;
}
`;
export const TableContainer = styled(Row)`
&&& {
margin-top: 1rem;
}
`;
export const ButtonContainer = styled.div`
&&& {
display: flex;
align-items: center;
}
`;