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