UNPKG

@jbrowse/plugin-wiggle

Version:

JBrowse 2 wiggle adapters, tracks, etc.

8 lines (7 loc) 271 B
import { jsx as _jsx } from "react/jsx-runtime"; import { getFillProps } from '@jbrowse/core/util'; const RectBg = (props) => { const { color = 'rgb(255,255,255,0.8)' } = props; return _jsx("rect", { ...props, ...getFillProps(color) }); }; export default RectBg;