## Developer guide for `` component ### Folder Structure From Laravel Application - resources - js - core - components - avatars-group - AvatarsGroup.Vue ### Register ```js Vue.component('app-avatars-group', require('./components/avatars-group/AvatarsGroup').default); ``` ### Props 1. avatarsGroupClass - `type` : `String` - `default` : `avatars-group-w-50` 2. avatars - `type` : `Array` - `required` : `true` 3. shadow - `type` : `Boolean` - `Default` : `false` 4. border - `type` : `Boolean` - `Default` : `false` ### Usages 1. avatarsGroupClass - css class for avatars size - any of these two - `avatars-group-w-60` , `avatars-group-w-50` 2. avatars - Array of objects - ``{img : '', alt : '', title: '', subTitle: ''}`` 3. shadow - shadow in the outline of avatars is shadow is true. ### Usages example ``` ```