UNPKG

@thenewboston/ui

Version:

UI Library for the thenewboston community

17 lines (16 loc) 408 B
import { FC } from 'react'; export interface QrProps { /** Optional. Extra classNames you can pass. */ className?: string; /** Optional. margin for QR component. */ margin?: number; /** Required. The content for QR code. */ text: string; /** Optional. width size. */ width?: number; } /** * Qr component. */ declare const Qr: FC<QrProps>; export default Qr;