mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-23 10:26:40 +00:00
* feat: added option to download logs in csv format * fix: suggested changes * feat: added logs download as excel * fix: updated logic for download excel and suggested changes * fix: code level changes --------- Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
import { Button } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
export const Container = styled.div`
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
`;
|
|
|
|
export const DownloadLogButton = styled(Button)`
|
|
display: flex;
|
|
align-items: center;
|
|
`;
|