import styled from '@emotion/styled'; import { NameField } from '@/settings/workspace/components/NameField'; import { WorkspaceLogoUploader } from '@/settings/workspace/components/WorkspaceLogoUploader'; import { IconSettings } from '@/ui/icon'; import { SubMenuTopBarContainer } from '@/ui/layout/components/SubMenuTopBarContainer'; import { MainSectionTitle } from '@/ui/title/components/MainSectionTitle'; import { SubSectionTitle } from '@/ui/title/components/SubSectionTitle'; const StyledContainer = styled.div` display: flex; flex-direction: column; padding: ${({ theme }) => theme.spacing(8)}; width: 350px; > * + * { margin-top: ${({ theme }) => theme.spacing(8)}; } `; const StyledSectionContainer = styled.div` > * + * { margin-top: ${({ theme }) => theme.spacing(4)}; } `; export function SettingsWorksapce() { return ( } title="Settings">
General
); }