@@ -11,13 +11,13 @@ This component is made to be used inside of the [NcActions](#NcActions) componen
1111 <NcActions>
1212 <NcActionButton @click="showMessage('Delete')">
1313 <template #icon>
14- <Delete :size="20" />
14+ <DeleteOutline :size="20" />
1515 </template>
1616 Delete
1717 </NcActionButton>
1818 <NcActionButton :close-after-click="true" @click="showMessage('Delete and close menu')">
1919 <template #icon>
20- <Delete :size="20" />
20+ <DeleteOutline :size="20" />
2121 </template>
2222 Delete and close
2323 </NcActionButton>
@@ -29,19 +29,19 @@ This component is made to be used inside of the [NcActions](#NcActions) componen
2929 </NcActionButton>
3030 <NcActionButton :disabled="true" @click="showMessage('Disabled')">
3131 <template #icon>
32- <Delete :size="20" />
32+ <DeleteOutline :size="20" />
3333 </template>
3434 Disabled button
3535 </NcActionButton>
3636 </NcActions>
3737 </template>
3838 <script>
39- import Delete from 'vue-material-design-icons/Delete .vue'
39+ import DeleteOutline from 'vue-material-design-icons/DeleteOutline .vue'
4040 import Plus from 'vue-material-design-icons/Plus.vue'
4141
4242 export default {
4343 components: {
44- Delete ,
44+ DeleteOutline ,
4545 Plus,
4646 },
4747 methods: {
@@ -68,27 +68,27 @@ For the same purpose, but in a more compact way, `description` prop can be used.
6868 </NcActionButton>
6969 <NcActionButton name="Long button" @click="showMessage('Delete')">
7070 <template #icon>
71- <Delete :size="20" />
71+ <DeleteOutline :size="20" />
7272 </template>
7373 This button is associated with a very long text.\nAnd with new lines too.
7474 </NcActionButton>
7575 <NcActionButton description="Subline description for the button" @click="showMessage('Edit')">
7676 <template #icon>
77- <Pencil :size="20" />
77+ <PencilOutline :size="20" />
7878 </template>
7979 Edit
8080 </NcActionButton>
8181 </NcActions>
8282 </template>
8383 <script>
84- import Delete from 'vue-material-design-icons/Delete .vue'
85- import Pencil from 'vue-material-design-icons/Pencil .vue'
84+ import DeleteOutline from 'vue-material-design-icons/DeleteOutline .vue'
85+ import PencilOutline from 'vue-material-design-icons/PencilOutline .vue'
8686 import Plus from 'vue-material-design-icons/Plus.vue'
8787
8888 export default {
8989 components: {
90- Delete ,
91- Pencil ,
90+ DeleteOutline ,
91+ PencilOutline ,
9292 Plus,
9393 },
9494 methods: {
@@ -138,26 +138,26 @@ You can also use a custom icon, for example from the vue-material-design-icons l
138138 <NcActions>
139139 <NcActionButton>
140140 <template #icon>
141- <HandBackLeft :size="20" />
141+ <HandBackLeftOutline :size="20" />
142142 </template>
143143 Raise left hand
144144 </NcActionButton>
145145 <NcActionButton>
146146 <template #icon>
147- <HandBackRight :size="20" />
147+ <HandBackRightOutline :size="20" />
148148 </template>
149149 Raise right hand
150150 </NcActionButton>
151151 </NcActions>
152152</template>
153153<script>
154- import HandBackLeft from 'vue-material-design-icons/HandBackLeft .vue'
155- import HandBackRight from 'vue-material-design-icons/HandBackRight .vue'
154+ import HandBackLeftOutline from 'vue-material-design-icons/HandBackLeftOutline .vue'
155+ import HandBackRightOutline from 'vue-material-design-icons/HandBackRightOutline .vue'
156156
157157export default {
158158 components: {
159- HandBackLeft ,
160- HandBackRight ,
159+ HandBackLeftOutline ,
160+ HandBackRightOutline ,
161161 },
162162}
163163</script>
@@ -203,7 +203,7 @@ This also allows tri-state behavior (`true`, `false`, `null`) in which case `ari
203203 <NcActions>
204204 <NcActionButton :model-value.sync="handRaised" type="checkbox">
205205 <template #icon>
206- <HandBackLeft :size="20" />
206+ <HandBackLeftOutline :size="20" />
207207 </template>
208208 Raise hand
209209 </NcActionButton>
@@ -216,12 +216,12 @@ This also allows tri-state behavior (`true`, `false`, `null`) in which case `ari
216216 </NcActions>
217217</template>
218218<script>
219- import HandBackLeft from 'vue-material-design-icons/HandBackLeft .vue'
219+ import HandBackLeftOutline from 'vue-material-design-icons/HandBackLeftOutline .vue'
220220import Fullscreen from 'vue-material-design-icons/Fullscreen.vue'
221221
222222export default {
223223 components: {
224- HandBackLeft ,
224+ HandBackLeftOutline ,
225225 Fullscreen,
226226 },
227227 data() {
@@ -254,7 +254,7 @@ Note: unlike native radio buttons, `NcActionButton` are not grouped by name, so
254254 </NcActionButton>
255255 <NcActionButton :model-value.sync="payment" type="radio" value="card">
256256 <template #icon>
257- <CreditCard :size="20" />
257+ <CreditCardOutline :size="20" />
258258 </template>
259259 Pay by card
260260 </NcActionButton>
@@ -286,15 +286,15 @@ Note: unlike native radio buttons, `NcActionButton` are not grouped by name, so
286286</template>
287287<script>
288288import Cash from 'vue-material-design-icons/Cash.vue'
289- import CreditCard from 'vue-material-design-icons/CreditCard .vue'
289+ import CreditCardOutline from 'vue-material-design-icons/CreditCardOutline .vue'
290290import FormatAlignLeft from 'vue-material-design-icons/FormatAlignLeft.vue'
291291import FormatAlignCenter from 'vue-material-design-icons/FormatAlignCenter.vue'
292292import FormatAlignRight from 'vue-material-design-icons/FormatAlignRight.vue'
293293
294294export default {
295295 components: {
296296 Cash,
297- CreditCard ,
297+ CreditCardOutline ,
298298 FormatAlignLeft,
299299 FormatAlignCenter,
300300 FormatAlignRight,
0 commit comments