const imgSubtract = "https://www.figma.com/api/mcp/asset/ba85cf5e-0b87-4554-9946-4bff400123ba"; const imgSubtract1 = "https://www.figma.com/api/mcp/asset/0c91e15e-50f0-4d11-8647-1345bf36c41f"; const imgSubtract2 = "https://www.figma.com/api/mcp/asset/99b9e665-ac4b-49e4-a19b-f24e1fcca2fd"; const imgSubtract3 = "https://www.figma.com/api/mcp/asset/6193ff5d-c119-4273-a19b-fbeddf3c4ce4"; const imgEllipse141 = "https://www.figma.com/api/mcp/asset/fdce6f36-4a38-41c1-a7e8-4cbe2b24abe6"; const imgSubtract4 = "https://www.figma.com/api/mcp/asset/f0984605-1683-4fa4-a7b2-3526aac1ff85"; const imgSubtract5 = "https://www.figma.com/api/mcp/asset/a90793ea-749e-4229-843c-a588154bc222"; const imgEllipse142 = "https://www.figma.com/api/mcp/asset/d76fe4af-b9cd-40de-a95d-d8dce0381989"; const imgSubtract6 = "https://www.figma.com/api/mcp/asset/bf9f060b-73d3-4948-b384-634137080bde"; const imgSubtract7 = "https://www.figma.com/api/mcp/asset/bba7242b-af5b-40d9-99d7-52789636bef7"; type RadioProps = { className?: string; darkTheme?: boolean; enable?: boolean; status?: boolean; }; function Radio({ className, darkTheme = true, enable = true, status = false }: RadioProps) { const isDarkThemeAndNotStatusAndTrue = darkTheme && !status && enable; const isNotDarkThemeAndNotStatusAndTrue = !darkTheme && !status && enable; const isNotDarkThemeAndStatusAndTrue = !darkTheme && status && enable; return (
); } type Radio1Props = { className?: string; children?: React.ReactNode | null; darkTheme?: boolean; enable?: boolean; showIcon?: boolean; showOption?: boolean; status?: boolean; }; export default function Radio1({ className, children = null, darkTheme = true, enable = true, showIcon = true, showOption = true, status = false }: Radio1Props) { const isDarkThemeAndNotStatusAndEnable = darkTheme && !status && enable; const isDarkThemeAndNotStatusAndNotEnable = darkTheme && !status && !enable; const isDarkThemeAndStatusAndEnable = darkTheme && status && enable; const isDarkThemeAndStatusAndNotEnable = darkTheme && status && !enable; const isNotDarkThemeAndNotStatusAndEnable = !darkTheme && !status && enable; const isNotDarkThemeAndNotStatusAndNotEnable = !darkTheme && !status && !enable; const isNotDarkThemeAndStatusAndEnable = !darkTheme && status && enable; const isNotDarkThemeAndStatusAndNotEnable = !darkTheme && status && !enable; return (
{isDarkThemeAndNotStatusAndEnable && showIcon && (
{children || (
)}
)} {isDarkThemeAndNotStatusAndEnable && showOption && (

Option

)} {isDarkThemeAndNotStatusAndNotEnable && showIcon && (
{children || (
)}
)} {isDarkThemeAndNotStatusAndNotEnable && showOption && (

Option

)} {isDarkThemeAndStatusAndNotEnable && showIcon && (
{children || (
)}
)} {isDarkThemeAndStatusAndNotEnable && showOption && (

Option

)} {isDarkThemeAndStatusAndEnable && showIcon && (
{children || }
)} {isDarkThemeAndStatusAndEnable && showOption && (

Option

)} {isNotDarkThemeAndNotStatusAndEnable && showIcon && (
{children || }
)} {isNotDarkThemeAndNotStatusAndEnable && showOption && (

Option

)} {isNotDarkThemeAndStatusAndEnable && showIcon && (
{children || }
)} {isNotDarkThemeAndStatusAndEnable && showOption && (

Option

)} {isNotDarkThemeAndNotStatusAndNotEnable && showIcon && (
{children || (
)}
)} {isNotDarkThemeAndNotStatusAndNotEnable && showOption && (

Option

)} {isNotDarkThemeAndStatusAndNotEnable && showIcon && (
{children || (
)}
)} {isNotDarkThemeAndStatusAndNotEnable && showOption && (

Option

)}
); }SUPER CRITICAL: The generated React+Tailwind code MUST be converted to match the target project's technology stack and styling system. 1. Analyze the target codebase to identify: technology stack, styling approach, component patterns, and design tokens 2. Convert React syntax to the target framework/library 3. Transform all Tailwind classes to the target styling system while preserving exact visual design 4. Follow the project's existing patterns and conventions DO NOT install any Tailwind as a dependency unless the user instructs you to do so. Node ids have been added to the code as data attributes, e.g. `data-node-id="1:2"`.These styles are contained in the design: Green: #33AB4F, Roboto/14 body: Font(family: "Roboto", style: Regular, size: 14, weight: 400, lineHeight: 1.5, letterSpacing: 0).Images and SVGs will be stored as constants, e.g. const image = 'https://www.figma.com/api/mcp/asset/550e8400-e29b-41d4-a716-446655440000'. These constants will be used in the code as the source for the image, ex: . Image assets are stored on a remote server for 7 days and can be fetched using the provided URLs until they expire.