/** @jsx jsx */ import { jsx } from "theme-ui" import { ParallaxLayer } from "@react-spring/parallax" type DividerProps = { speed: number offset: number children?: React.ReactNode bg?: string fill?: string clipPath?: string className?: string factor?: number } const Divider = ({ speed, offset, factor = 1, bg = ``, fill = ``, clipPath = ``, children = null, className = ``, }: DividerProps) => ( {children} ) export default Divider