Extend preset plugin doesn't seem to be working.
export const button = {
display: `inline-block`,
fontSize: `1.2em`
};
export const primary = {
extend: 'button',
color: `white`
};
And usage:
import styled from 'styled-jss';
const Button = styled('button')(button);
export const PrimaryButton = styled('button')(primary);
Extend preset plugin doesn't seem to be working.
And usage: