import React from "react"; import { Segmented } from "antd"; const ClassesSegmented: React.FC = () => ( options={["الأحد", "اللإثنين", "الثلاثاء", "الأربعاء", "الخميس"]} onChange={(value) => {}} className="Segmented" block defaultChecked /> ); export default ClassesSegmented;