IconButtonWrapper.ts 261 B

1234567891011121314
  1. import styled from 'styled-components';
  2. const IconButtonWrapper = styled.span.attrs(() => ({
  3. role: 'button',
  4. tabIndex: '0',
  5. }))`
  6. height: 16px !important;
  7. display: inline-block;
  8. &:hover {
  9. cursor: pointer;
  10. }
  11. `;
  12. export default IconButtonWrapper;