redaction.tsx 230 B

1234567
  1. import styled from '@emotion/styled';
  2. export const Redaction = styled('span')<{withoutBackground?: boolean}>`
  3. cursor: default;
  4. vertical-align: middle;
  5. ${p => !p.withoutBackground && `background: rgba(255, 0, 0, 0.05);`}
  6. `;