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
|
2023-06-06 13:24:20 -05:00
|
|
|
import React, { forwardRef } from 'react'
|
2023-06-01 18:28:22 +02:00
|
|
|
|
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'
|