UNPKG

stylelint-processor-styled-components

Version:
17 lines (13 loc) 298 B
import styled from 'styled-components' const Button1 = styled.button` color: red; /* stylelint-disable-line */ `; /* stylelint-disable */ const Button2 = styled.button` color: red; `; /* stylelint-enable */ const Button3 = styled.button` /* stylelint-disable-next-line */ color: red; `;