import type { ReactNode } from 'react'; import * as React from 'react'; import { extract } from '../lib/extract/extractProps'; import Shape from './Shape'; import RNSVGClipPath from '../fabric/ClipPathNativeComponent'; export interface ClipPathProps { children?: ReactNode; id?: string; } export default class ClipPath extends Shape { static displayName = 'ClipPath'; render() { const { props } = this; return ( {props.children} ); } }