File size: 146 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import styled from 'styled-components';
import buttonStyles from './buttonStyles';
const A = styled.a`
${buttonStyles};
`;
export default A;
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import styled from 'styled-components';
import buttonStyles from './buttonStyles';
const A = styled.a`
${buttonStyles};
`;
export default A;
|