normalize transition durations

This commit is contained in:
Julián Benegas
2020-10-21 19:22:27 -03:00
parent c22789176d
commit 5ef510c364
12 changed files with 24 additions and 18 deletions

View File

@@ -9,7 +9,11 @@ interface Props {
const Toggle: FC<Props> = ({ className, checked, onChange }) => {
return (
<Switch checked={checked} onChange={onChange}>
<Switch
checked={checked}
onChange={onChange}
className="focus:outline-none"
>
<span
role="checkbox"
aria-checked="false"