/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import styles from "./RadioButtonsTile.module.scss"; interface Option { id: string; label: string; description: string; value: string; name: string; dataTestId: string; disabled?: boolean; } interface Props { options: Array