import { forwardRef } from 'react' import { useTheme } from '@nivo/theming' import { Defs } from './defs' const SvgWrapper = forwardRef( ( { width, height, margin, defs, children, role, ariaLabel, ariaLabelledBy, ariaDescribedBy, isFocusable, }, ref ) => { const theme = useTheme() return ( {children} ) } ) export default SvgWrapper