Project import generated by Copybara.

GitOrigin-RevId: 63746295f1a5ab5a619056791995793d65529e62
diff --git a/node_modules/material-design-lite/src/chip/snippets/basic.html b/node_modules/material-design-lite/src/chip/snippets/basic.html
new file mode 100644
index 0000000..f996f82
--- /dev/null
+++ b/node_modules/material-design-lite/src/chip/snippets/basic.html
@@ -0,0 +1,4 @@
+<!-- Basic Chip -->
+<span class="mdl-chip">
+    <span class="mdl-chip__text">Basic Chip</span>
+</span>
\ No newline at end of file
diff --git a/node_modules/material-design-lite/src/chip/snippets/button.html b/node_modules/material-design-lite/src/chip/snippets/button.html
new file mode 100644
index 0000000..231fdf6
--- /dev/null
+++ b/node_modules/material-design-lite/src/chip/snippets/button.html
@@ -0,0 +1,4 @@
+<!-- Button Chip -->
+<button type="button" class="mdl-chip">
+    <span class="mdl-chip__text">Button Chip</span>
+</button>
\ No newline at end of file
diff --git a/node_modules/material-design-lite/src/chip/snippets/contact.html b/node_modules/material-design-lite/src/chip/snippets/contact.html
new file mode 100644
index 0000000..2d205cf
--- /dev/null
+++ b/node_modules/material-design-lite/src/chip/snippets/contact.html
@@ -0,0 +1,5 @@
+<!-- Contact Chip -->
+<span class="mdl-chip mdl-chip--contact">
+    <span class="mdl-chip__contact mdl-color--teal mdl-color-text--white">A</span>
+    <span class="mdl-chip__text">Contact Chip</span>
+</span>
diff --git a/node_modules/material-design-lite/src/chip/snippets/deletable-contact.html b/node_modules/material-design-lite/src/chip/snippets/deletable-contact.html
new file mode 100644
index 0000000..3f45da3
--- /dev/null
+++ b/node_modules/material-design-lite/src/chip/snippets/deletable-contact.html
@@ -0,0 +1,6 @@
+<!-- Deletable Contact Chip -->
+<span class="mdl-chip mdl-chip--contact mdl-chip--deletable">
+    <img class="mdl-chip__contact" src="/templates/dashboard/images/user.jpg"></img>
+    <span class="mdl-chip__text">Deletable Contact Chip</span>
+    <a href="#" class="mdl-chip__action"><i class="material-icons">cancel</i></a>
+</span>
\ No newline at end of file
diff --git a/node_modules/material-design-lite/src/chip/snippets/deletable.html b/node_modules/material-design-lite/src/chip/snippets/deletable.html
new file mode 100644
index 0000000..6200e39
--- /dev/null
+++ b/node_modules/material-design-lite/src/chip/snippets/deletable.html
@@ -0,0 +1,5 @@
+<!-- Deletable Chip -->
+<span class="mdl-chip mdl-chip--deletable">
+    <span class="mdl-chip__text">Deletable Chip</span>
+    <button type="button" class="mdl-chip__action"><i class="material-icons">cancel</i></button>
+</span>
\ No newline at end of file