mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-20 00:46:46 +00:00
19 lines
361 B
TypeScript
19 lines
361 B
TypeScript
|
|
import styled from "styled-components";
|
||
|
|
|
||
|
|
export const ThemeSwitcherWrapper = styled.div`
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
margin-top: 24px;
|
||
|
|
margin-bottom: 16px;
|
||
|
|
`;
|
||
|
|
|
||
|
|
export const Logo = styled.img<LogoProps>`
|
||
|
|
width: 100px;
|
||
|
|
margin: 5%;
|
||
|
|
display: ${({ collapsed }) => (!collapsed ? "block" : "none")};
|
||
|
|
`;
|
||
|
|
|
||
|
|
interface LogoProps {
|
||
|
|
collapsed: boolean;
|
||
|
|
}
|