lark-cms
Version:
Multi terminal CMS component library
13 lines (12 loc) • 438 B
TypeScript
import React from "react";
interface YhwCheckboxProps {
label: string;
value: string | number;
customStyle?: object | null;
shape?: "square" | "circle";
selectIcon?: string;
selected: boolean;
onSelect: (value: string | number) => void;
}
declare const YhwCheckboxRN: ({ label, value, customStyle, shape, selectIcon, selected, onSelect, }: YhwCheckboxProps) => React.JSX.Element;
export default YhwCheckboxRN;