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