rsnext/examples/with-linaria/pages/index.js

38 lines
625 B
JavaScript
Raw Normal View History

import Head from 'next/head'
import { styled } from 'linaria/react'
import { css } from 'linaria'
const Box = styled.div`
margin-top: 40px;
margin-left: 40px;
height: 200px;
width: 200px;
background-color: tomato;
animation: spin 2s linear infinite;
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
`
const anotherClass = css`
color: blue;
`
export default function Home() {
return (
<>
<Head>
<title>With Linaria</title>
</Head>
<Box className={anotherClass}>Zero runtime CSS in JS</Box>
</>
)
}