import { styled } from '@mui/material';
export const ContentDescription = styled('div')({
  width: '100%',
});

export const ContentDescriptionHeader = styled('div')({
  fontWeight: 600,
  fontSize: '14px',
  lineHeight: '24px',
  letterSpacing: '0.09px',
  color: '#000000',
});

export const ContentDescriptionText = styled('div')({
  fontWeight: 400,
  fontSize: '12px',
  lineHeight: '24px',
  /* identical to box height, or 200% */
  letterSpacing: '0.09px',
  color: '#414141',
});
