UNPKG

@formant/ava-react

Version:

React components of AVA.

7 lines (6 loc) 335 B
import React from 'react'; import type { PropsWithChildren } from 'react'; import type { SizeType } from '../../types'; type SvgProps = PropsWithChildren<React.SVGProps<SVGSVGElement>>; export declare const useSvgWrapper: (size?: SizeType) => readonly [({ children, ...otherProps }: SvgProps) => React.JSX.Element, number]; export {};