1
0
Fork 0
freesewing/packages/react-components/src/pattern/group.mjs
2023-06-06 13:24:20 -05:00

7 lines
151 B
JavaScript

import React, { forwardRef } from 'react'
export const Group = forwardRef((props, ref) => (
<g {...props} ref={ref}>
{props.children}
</g>
))