DocSpace-client/packages/asc-web-components/scrollbar/styled-scrollbar.js

25 lines
588 B
JavaScript
Raw Normal View History

import { Scrollbars } from "react-custom-scrollbars";
import styled from "styled-components";
2021-02-25 21:19:45 +00:00
import Base from "../themes/base";
const StyledScrollbar = styled(Scrollbars)`
.nav-thumb-vertical {
background-color: ${(props) =>
props.color
? props.color
: props.theme.scrollbar.backgroundColorVertical};
}
.nav-thumb-horizontal {
background-color: ${(props) =>
props.color
? props.color
: props.theme.scrollbar.backgroundColorHorizontal};
}
`;
StyledScrollbar.defaultProps = {
theme: Base,
};
export default StyledScrollbar;