|
| 1 | +import Button from "@ui/components/Button"; |
| 2 | +import ButtonGroup from "@ui/components/ButtonGroup"; |
| 3 | +import React from "react"; |
| 4 | + |
| 5 | +export default function Page() { |
| 6 | + return ( |
| 7 | + <div className="flex flex-col items-center p-16 space-y-6"> |
| 8 | + <h1 className="mx-auto">Buttons</h1> |
| 9 | + |
| 10 | + <h2 className="mx-auto">Colors:</h2> |
| 11 | + |
| 12 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 13 | + <Button color="primary">Primary</Button> |
| 14 | + <Button color="secondary">Secondary</Button> |
| 15 | + <Button color="success">Success</Button> |
| 16 | + <Button color="info">Info</Button> |
| 17 | + <Button color="warning">Warning</Button> |
| 18 | + <Button color="error">Error</Button> |
| 19 | + <Button color="dark">Dark</Button> |
| 20 | + </div> |
| 21 | + |
| 22 | + <h2 className="mx-auto">Flat:</h2> |
| 23 | + |
| 24 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 25 | + <Button flat color="primary"> |
| 26 | + Primary |
| 27 | + </Button> |
| 28 | + <Button flat color="secondary"> |
| 29 | + Secondary |
| 30 | + </Button> |
| 31 | + <Button flat color="success"> |
| 32 | + Success |
| 33 | + </Button> |
| 34 | + <Button flat color="info"> |
| 35 | + Info |
| 36 | + </Button> |
| 37 | + <Button flat color="warning"> |
| 38 | + Warning |
| 39 | + </Button> |
| 40 | + <Button flat color="error"> |
| 41 | + Error |
| 42 | + </Button> |
| 43 | + <Button flat color="dark"> |
| 44 | + Dark |
| 45 | + </Button> |
| 46 | + </div> |
| 47 | + |
| 48 | + <h2 className="mx-auto">Bordered:</h2> |
| 49 | + |
| 50 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 51 | + <Button bordered color="primary"> |
| 52 | + Primary |
| 53 | + </Button> |
| 54 | + <Button bordered color="secondary"> |
| 55 | + Secondary |
| 56 | + </Button> |
| 57 | + <Button bordered color="success"> |
| 58 | + Success |
| 59 | + </Button> |
| 60 | + <Button bordered color="info"> |
| 61 | + Info |
| 62 | + </Button> |
| 63 | + <Button bordered color="warning"> |
| 64 | + Warning |
| 65 | + </Button> |
| 66 | + <Button bordered color="error"> |
| 67 | + Error |
| 68 | + </Button> |
| 69 | + <Button bordered color="dark"> |
| 70 | + Dark |
| 71 | + </Button> |
| 72 | + </div> |
| 73 | + |
| 74 | + <h2 className="mx-auto">Square:</h2> |
| 75 | + |
| 76 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 77 | + <Button square color="primary"> |
| 78 | + Primary |
| 79 | + </Button> |
| 80 | + <Button square color="secondary"> |
| 81 | + Secondary |
| 82 | + </Button> |
| 83 | + <Button square color="success"> |
| 84 | + Success |
| 85 | + </Button> |
| 86 | + <Button square color="info"> |
| 87 | + Info |
| 88 | + </Button> |
| 89 | + <Button square color="warning"> |
| 90 | + Warning |
| 91 | + </Button> |
| 92 | + <Button square color="error"> |
| 93 | + Error |
| 94 | + </Button> |
| 95 | + <Button square color="dark"> |
| 96 | + Dark |
| 97 | + </Button> |
| 98 | + </div> |
| 99 | + |
| 100 | + <h2 className="mx-auto">Pill:</h2> |
| 101 | + |
| 102 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 103 | + <Button pill color="primary"> |
| 104 | + Primary |
| 105 | + </Button> |
| 106 | + <Button pill color="secondary"> |
| 107 | + Secondary |
| 108 | + </Button> |
| 109 | + <Button pill color="success"> |
| 110 | + Success |
| 111 | + </Button> |
| 112 | + <Button pill color="info"> |
| 113 | + Info |
| 114 | + </Button> |
| 115 | + <Button pill color="warning"> |
| 116 | + Warning |
| 117 | + </Button> |
| 118 | + <Button pill color="error"> |
| 119 | + Error |
| 120 | + </Button> |
| 121 | + <Button pill color="dark"> |
| 122 | + Dark |
| 123 | + </Button> |
| 124 | + </div> |
| 125 | + |
| 126 | + <h2 className="mx-auto">Sizes:</h2> |
| 127 | + |
| 128 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 129 | + <Button size="xs">xs</Button> |
| 130 | + <Button size="sm">sm</Button> |
| 131 | + <Button>md</Button> |
| 132 | + <Button size="lg">lg</Button> |
| 133 | + <Button size="xl">xl</Button> |
| 134 | + </div> |
| 135 | + |
| 136 | + <h2 className="mx-auto">Block:</h2> |
| 137 | + |
| 138 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 139 | + <Button block>xs</Button> |
| 140 | + </div> |
| 141 | + |
| 142 | + <h2 className="mx-auto">Loading:</h2> |
| 143 | + |
| 144 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 145 | + <Button loading /> |
| 146 | + </div> |
| 147 | + |
| 148 | + <h2 className="mx-auto">Disabled:</h2> |
| 149 | + |
| 150 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 151 | + <Button color="primary" disabled> |
| 152 | + Disabled Primary Button |
| 153 | + </Button> |
| 154 | + </div> |
| 155 | + |
| 156 | + <h2 className="mx-auto">Button Group:</h2> |
| 157 | + |
| 158 | + <div className="flex items-center justify-center w-full space-x-4"> |
| 159 | + <ButtonGroup> |
| 160 | + <Button>First button</Button> |
| 161 | + <Button>Second button</Button> |
| 162 | + <Button>Third button</Button> |
| 163 | + </ButtonGroup> |
| 164 | + </div> |
| 165 | + </div> |
| 166 | + ); |
| 167 | +} |
0 commit comments