import ScatterPlot, { ScatterPlotProps } from '../ScatterPlot'; import FacetedPlot, { FacetedPlotPropsWithRef } from '../FacetedPlot'; import { ScatterPlotData } from '../../types/plots'; export const defaultContainerStyles: ScatterPlotProps['containerStyles'] = { height: 300, width: 750 / 1.75, marginBottom: '0.25rem', border: '1px solid #dedede', boxShadow: '1px 1px 4px #00000066', }; export const defaultSpacingOptions: ScatterPlotProps['spacingOptions'] = { marginRight: 20, marginLeft: 50, marginBottom: 40, marginTop: 50, }; type FacetedScatterPlotProps = Omit< FacetedPlotPropsWithRef, 'component' >; const FacetedScatterPlot = ( facetedScatterPlotProps: FacetedScatterPlotProps ) => { const { componentProps } = facetedScatterPlotProps; return ( ); }; export default FacetedScatterPlot;