Skip to content

Instantly share code, notes, and snippets.

@ShanikaNishadhi
Created April 4, 2020 11:21
Show Gist options
  • Save ShanikaNishadhi/6bddcff0608c1e656c93c5f55242b5c2 to your computer and use it in GitHub Desktop.
Save ShanikaNishadhi/6bddcff0608c1e656c93c5f55242b5c2 to your computer and use it in GitHub Desktop.
import styled from "vue-styled-components";
const buttonProps = {
color: String
};
const CButton = styled("button", buttonProps)`
color: ${props => props.color};
`;
export default CButton;
@cajlonbatista
Copy link

Não precisa ser .vue ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment