Isaev Denis 2d4d503a79
docs: migrate README.md to a website (#1094)
Make a website https://golangci-lint.run
for golangci-lint documentation.
The website is backed by Gatsby static site generator
and deployed into Netlify.
2020-05-16 14:10:03 +03:00

17 lines
283 B
JavaScript

/** @jsx jsx */
import { css, jsx } from "@emotion/core";
export const IconContainer = ({ color, children }) => (
<span
css={css`
svg {
color: ${color};
text-align: center;
vertical-align: -0.125em;
}
`}
>
{children}
</span>
);