UNPKG

retabler

Version:

React Component library via Tabler

13 lines (12 loc) 446 B
import React from "react"; export interface ImageCheckLabelProps { className?: string; children: React.ReactNode; } declare const ImageCheck: { (): void; Label: ({ className, children }: ImageCheckLabelProps) => JSX.Element; Input: ({ ...props }: React.InputHTMLAttributes<HTMLElement>) => JSX.Element; Figure: ({ ...props }: React.ImgHTMLAttributes<HTMLElement>) => JSX.Element; }; export default ImageCheck;