You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
394 B

import {Button, Tooltip} from "antd";
import {UploadOutlined} from "@ant-design/icons";
export const ImportDataButton = ({onClick}) => {
return <div className='absolute top-[20px] left-[20px]'>
<Tooltip title='Импорт данных' placement='right'>
<Button
type="primary"
icon={<UploadOutlined />}
onClick={onClick}
/>
</Tooltip>
</div>
}