UNPKG

@blockstack/ui

Version:

Blockstack UI components built using React and styled-components with styled-system.

10 lines (9 loc) 282 B
/// <reference types="react" /> import { BoxProps } from '../box'; interface SVGProps { viewBox?: string; fill?: string; } declare type SVG = SVGProps & BoxProps; export declare const Svg: ({ width, height, viewBox, fill, ...rest }: SVG) => JSX.Element; export {};