UNPKG

nice-ui

Version:

React design system, components, and utilities

13 lines (12 loc) 279 B
import * as React from 'react'; export interface Props { src: string; alt?: string; width?: number; height?: number; caption?: string; retinaFactor?: number; noPadding?: boolean; } declare const Screenshot: React.FC<Props>; export default Screenshot;