// @flow import * as React from "react"; import Grid from "../Grid"; import type { MouseEvents, PointerEvents, FocusEvents } from "../../"; type Props = {| ...MouseEvents, ...PointerEvents, ...FocusEvents, +className?: string, +value: string | number, +imageURL: string, +col?: {| +width?: number, +sm?: number, +md?: number, +lg?: number, |}, |}; function FormImageCheckItem({ className, col: { width = 6, sm = 4, md = 0, lg = 0 } = {}, imageURL, value, onClick, onMouseEnter, onMouseLeave, onPointerEnter, onPointerLeave, onFocus, onBlur, }: Props): React.Node { return ( ); } FormImageCheckItem.displayName = "Form.ImageCheckItem"; export default FormImageCheckItem;