feat: add Settings Object Edit identifiers form (#4300)

* feat: add Settings Object Edit identifiers form

Closes #3836

* fix: fix wrong imports after renaming directories
This commit is contained in:
Thaïs
2024-03-08 17:55:30 -03:00
committed by GitHub
parent 40a3b7d849
commit 40bea0d95e
11 changed files with 212 additions and 24 deletions

View File

@ -0,0 +1,11 @@
import styled from '@emotion/styled';
const StyledTitle = styled.h3`
color: ${({ theme }) => theme.font.color.extraLight};
font-size: ${({ theme }) => theme.font.size.sm};
font-weight: ${({ theme }) => theme.font.weight.medium};
margin: 0;
margin-bottom: ${({ theme }) => theme.spacing(4)};
`;
export { StyledTitle as SettingsDataModelCardTitle };