1
0
Fork 0
freesewing/packages/react/components/Pattern/group.mjs

12 lines
299 B
JavaScript
Raw Normal View History

2023-09-29 18:20:28 +02:00
// __SDEFILE__ - This file is a dependency for the stand-alone environment
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'