leLab / src /components /landing /RobotModelSelector.tsx
jurmy24's picture
implement victors viewer which is wayy better
3a909c0
raw
history blame
1.78 kB
import React from 'react';
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
import { Label } from "@/components/ui/label";
interface RobotModelSelectorProps {
robotModel: string;
onValueChange: (model: string) => void;
}
const RobotModelSelector: React.FC<RobotModelSelectorProps> = ({
robotModel,
onValueChange
}) => {
return <>
<h2 className="text-2xl font-semibold text-center text-white">
Select Robot Model
</h2>
<RadioGroup value={robotModel} onValueChange={onValueChange} className="space-y-2">
<div>
<RadioGroupItem value="SO100" id="so100" className="sr-only" />
<Label htmlFor="so100" className="flex items-center space-x-4 p-4 rounded-lg bg-gray-800 border border-gray-700 cursor-pointer transition-all">
<span className="w-6 h-6 rounded-full border-2 border-gray-500 flex items-center justify-center">
{robotModel === "SO100" && <span className="w-3 h-3 rounded-full bg-orange-500" />}
</span>
<span className="text-lg flex-1">SO100/SO101
</span>
</Label>
</div>
<div>
<RadioGroupItem value="LeKiwi" id="lekiwi" className="sr-only" />
<Label htmlFor="lekiwi" className="flex items-center space-x-4 p-4 rounded-lg bg-gray-800 border border-gray-700 cursor-pointer transition-all">
<span className="w-6 h-6 rounded-full border-2 border-gray-500 flex items-center justify-center">
{robotModel === "LeKiwi" && <span className="w-3 h-3 rounded-full bg-orange-500" />}
</span>
<span className="text-lg flex-1">LeKiwi</span>
</Label>
</div>
</RadioGroup>
</>;
};
export default RobotModelSelector;