Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import { ReactElement } from "react";
export default function ExplicitSign(): ReactElement {
return (
<div>
<small>E</small>
<style jsx>{`
small {
font-size: 10px;
font-weight: bold;
color: #463f3f;
font-family: "Lato", sans-serif;
}
div {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 2px;
background-color: #d2d2d2;
width: 17px;
height: 17px;
margin-right: 4px;
}
`}</style>
</div>
);
}
|