@theme-ui/components
Version:
Primitive layout, typographic, and other components for use with Theme UI.
8 lines (7 loc) • 303 B
TypeScript
import { SVGAttributes } from 'react';
import { BoxOwnProps } from './Box';
import type { Assign, ForwardRef } from './types';
export interface SVGProps extends Assign<SVGAttributes<SVGElement>, BoxOwnProps> {
size?: number | string;
}
export declare const SVG: ForwardRef<SVGSVGElement, SVGProps>;