1
0
Fork 0
freesewing/packages/react-components/src/pattern/group.mjs

8 lines
144 B
JavaScript
Raw Normal View History

2023-06-04 23:28:43 -05:00
import { forwardRef } from 'react'
2023-06-04 23:28:43 -05:00
export const Group = forwardRef((props, ref) => (
<g {...props} ref={ref}>
{props.children}
</g>
))