It is not intuitive to set the primary variant via theme property. Non-intuitive: ``` <Button theme={"primary"} onClick={() => setEveryone(false)}> ``` Intuitive: ``` <Button primary onClick={() => setEveryone(false)}> ```