import { Component } from 'react'; interface Option { label: string; value: string; checked: boolean; } interface Props { options: Array