ClustersWidget.styled.ts 320 B

123456789101112131415
  1. import styled from 'styled-components';
  2. interface TableCellProps {
  3. maxWidth?: string;
  4. }
  5. export const SwitchWrapper = styled.div`
  6. padding: 16px;
  7. `;
  8. export const TableCell = styled.td.attrs({ role: 'cells' })<TableCellProps>`
  9. padding: 16px;
  10. word-break: break-word;
  11. max-width: ${(props) => props.maxWidth};
  12. `;