Skip to content

Instantly share code, notes, and snippets.

View darleykrefta's full-sized avatar
🎯
Focusing

Darley Krefta darleykrefta

🎯
Focusing
View GitHub Profile
@adrianmcli
adrianmcli / Spinner.js
Created December 3, 2017 01:26
Dead simple loading spinner with just CSS in styled-components.
import styled, { keyframes } from "styled-components";
const rotate360 = keyframes`
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}