Skip to content

Instantly share code, notes, and snippets.

@d-ivashchuk
Created November 19, 2018 10:26
Show Gist options
  • Save d-ivashchuk/f66615ea7f6e350815c02e171f00f1eb to your computer and use it in GitHub Desktop.
Save d-ivashchuk/f66615ea7f6e350815c02e171f00f1eb to your computer and use it in GitHub Desktop.
import styled from "styled-components";
const StyledCircle = styled.svg`
fill: red;
`;
const circle = (
<StyledCircle height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="red" />
</StyledCircle>
);
function App() {
return <div className="App">{circle}</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment