fui-fancyui
Version:
FancyUI Libary
20 lines (19 loc) • 573 B
JavaScript
import { styled as r } from "styled-components";
const n = r.span`
height: 100%;
width: 100%;
background-image:
linear-gradient(45deg, #808080 25%, transparent 25%), linear-gradient(-45deg, #808080 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #808080 75%), linear-gradient(-45deg, transparent 75%, #808080 75%);
background-size: 14px 14px;
background-position:
0 0,
0 7px,
7px -7px,
-7px 0px;
opacity: ${({ $opacity: e }) => e || 0.05};
${({ $externalStyle: e }) => e}
`;
export {
n as StyledCheckerBoardPattern
};