@@ -132,30 +132,28 @@ Cuando se hace clic en un botón para descargar datos, el botón muestra un esta
132132
133133Además del tamaño por defecto, el componente Button provee tres tamaños adicionales para utilizar en diferentes escenarios.
134134
135- :::demo Use el atributo ` size ` para setear tamaños adicionales con ` medium ` , ` small ` , ` mini ` o ` compact ` .
135+ :::demo Use el atributo ` size ` para setear tamaños adicionales con ` medium ` , ` small ` o ` mini ` .
136136
137137``` html
138138<el-row >
139139 <el-button >Default</el-button >
140140 <el-button size =" medium" >Medium</el-button >
141141 <el-button size =" small" >Small</el-button >
142142 <el-button size =" mini" >Mini</el-button >
143- <el-button size =" compact" >Compact</el-button >
144143</el-row >
145144<el-row >
146145 <el-button round >Default</el-button >
147146 <el-button size =" medium" round >Medium</el-button >
148147 <el-button size =" small" round >Small</el-button >
149148 <el-button size =" mini" round >Mini</el-button >
150- <el-button size =" compact" round >Compact</el-button >
151149</el-row >
152150```
153151:::
154152
155153### Atributos
156154| Atributo | Descripción | Tipo | Valores aceptados | Por defecto |
157155| ----------- | --------------------------------------------- | ------- | -------------------------------------------------- | ----------- |
158- | size | tamaño del botón | string | medium / small / mini / compact | — |
156+ | size | tamaño del botón | string | medium / small / mini | — |
159157| type | tipo de botón | string | primary / success / warning / danger / info / text | — |
160158| plain | determinar si es o no un botón plano | boolean | — | false |
161159| round | determinar si es o no un botón redondo | boolean | — | false |
0 commit comments