parent
f214747e3e
commit
c511ab8046
2 changed files with 37 additions and 0 deletions
@ -0,0 +1,35 @@ |
||||
import React from "react"; |
||||
import Button from "../Button"; |
||||
|
||||
const ButtonNextToEachOther = () => { |
||||
return ( |
||||
<div className="flex flex-row"> |
||||
<div className="flex flex-row"> |
||||
<Button |
||||
text={"روز"} |
||||
className="w-16 text-primaryText text-lg border border-primary px-4 py-2 rounded-tr-lg rounded-br-lg" |
||||
/> |
||||
<Button |
||||
text={"هفته"} |
||||
className="w-16 text-primaryText text-lg border border-primary px-4 py-2" |
||||
/> |
||||
<Button |
||||
text={"ماه"} |
||||
className="w-16 text-primaryText text-lg border border-primary px-4 py-2" |
||||
/> |
||||
<Button |
||||
text={"سال"} |
||||
className="w-16 text-primaryText text-lg border border-primary px-4 py-2 rounded-tl-lg rounded-bl-lg" |
||||
/> |
||||
</div> |
||||
<div className="flex flex-row mr-5"> |
||||
<Button |
||||
text={"امروز"} |
||||
className="text-primaryText text-lg border border-primary rounded-sm px-4 py-2" |
||||
/> |
||||
</div> |
||||
</div> |
||||
); |
||||
}; |
||||
|
||||
export default ButtonNextToEachOther; |
Loading…
Reference in new issue