* feat: add Settings Object Edit identifiers form Closes #3836 * fix: fix wrong imports after renaming directories
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
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 };
|