PromucFlow_constructor/app/client/src/components/editorComponents/Divider.tsx
albinAppsmith 5cfe12bcea
feat: Entity explorer UI redesign (#9811)
Co-authored-by: arunvjn <arun@appsmith.com>
2022-01-29 12:56:19 +05:30

11 lines
218 B
TypeScript

import { Divider } from "@blueprintjs/core";
import styled from "styled-components";
export const StyledDivider = styled(Divider)<{ color?: string }>`
&& {
margin: 5px 0 0;
}
`;
export default StyledDivider;