Input type
Label type
<label>
    Name
    <input data-input-style="underline" data-label-style="stacked" mbsc-input type="text" data-start-icon="user4" placeholder="Input with label" />
</label>
<label class="mbsc-err">
    Email
    <input data-input-style="underline" data-label-style="stacked" mbsc-input type="text" data-start-icon="material-email" placeholder="With error styling" data-error="true" />
</label>
<label>
    <input data-input-style="underline" data-label-style="stacked" mbsc-input type="text" data-start-icon="lock2" placeholder="Without label" />
</label>
<label>
    About me
    <textarea mbsc-textarea data-input-style="underline" data-label-style="stacked" data-start-icon="bubble" placeholder="Textarea with left icon"></textarea>
</label>
<label>
    <select mbsc-dropdown data-input-style="underline" data-label-style="stacked" data-start-icon="plus" data-end-icon="close">
        <option>Select with icons</option>
        <option value="Opel">Opel</option>
        <option value="Renault">Renault</option>
        <option value="Citroen">Citroen</option>
        <option value="Lotus">Lotus</option>
    </select>
</label>
<label>
    File upload
    <input data-input-style="underline" data-label-style="stacked" mbsc-input type="file" placeholder="Select file..." />
</label>