MessageToggleIcon.styled.ts 245 B

12345678910
  1. import styled from 'styled-components';
  2. export const Svg = styled.svg`
  3. & > path {
  4. fill: ${({ theme }) => theme.icons.messageToggleIcon.normal};
  5. &:hover {
  6. fill: ${({ theme }) => theme.icons.messageToggleIcon.hover};
  7. }
  8. }
  9. `;