Skip to content

Instantly share code, notes, and snippets.

@kennethlynne
Created December 17, 2019 14:21
Show Gist options
  • Save kennethlynne/f324fe7a121d2509b5cfbd273c29b375 to your computer and use it in GitHub Desktop.
Save kennethlynne/f324fe7a121d2509b5cfbd273c29b375 to your computer and use it in GitHub Desktop.
import styled from 'styled-components/native';
const StyledButton = styled.button`
background: transparent;
border-radius: 3px;
border: 2px solid palevioletred;
color: palevioletred;
margin: 0 1em;
padding: 0.25em 1em;
`;
// vanlig CSS ↑
export const Button = (props: ButtonProps) => <StyledButton onPress={props.onPress} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment