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

11 lines
223 B
JavaScript
Raw Normal View History

2023-06-07 10:06:30 -05:00
// eslint-disable-next-line no-unused-vars
import React, { forwardRef } from 'react'
2023-06-04 23:28:43 -05:00
export const Group = forwardRef((props, ref) => (
<g {...props} ref={ref}>
{props.children}
</g>
))
2023-06-07 10:06:30 -05:00
Group.displayName = 'Group'