10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
// eslint-disable-next-line no-unused-vars
|
|
import React, { forwardRef } from 'react'
|
|
|
|
export const Group = forwardRef((props, ref) => (
|
|
<g {...props} ref={ref}>
|
|
{props.children}
|
|
</g>
|
|
))
|
|
|
|
Group.displayName = 'Group'
|