UNPKG

347 BTypeScriptView Raw
1import React, { ReactNode, SVGAttributes } from 'react';
2interface LayerProps {
3 className?: string;
4 children?: ReactNode;
5}
6export type Props = SVGAttributes<SVGGElement> & LayerProps;
7export declare const Layer: React.ForwardRefExoticComponent<React.SVGAttributes<SVGGElement> & LayerProps & React.RefAttributes<SVGGElement>>;
8export {};