This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
|
import styled from "styled-components";
|
|
|
|
export const UsageGraph = styled.div.attrs({
|
|
className: "w-full my-3 grid grid-flow-row grid-rows-2",
|
|
})`
|
|
height: 146px;
|
|
background: url(/images/usage-graph-bg.svg) no-repeat;
|
|
background-size: cover;
|
|
`;
|