diff --git a/snippets/Loader.md b/snippets/Loader.md
new file mode 100644
index 000000000..aaccdcfa2
--- /dev/null
+++ b/snippets/Loader.md
@@ -0,0 +1,65 @@
+---
+title: Loader
+tags: visual,beginner
+---
+
+Creates a spinning loader component.
+
+- Define appropriate CSS styles and animations for the component's elements.
+- Define the component, which returns a simple SVG, whose size is determined by the `size` prop.
+
+```css
+.loader {
+ animation: rotate 2s linear infinite;
+}
+
+@keyframes rotate {
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+
+.loader circle {
+ animation: dash 1.5s ease-in-out infinite;
+}
+
+@keyframes dash {
+ 0% {
+ stroke-dasharray: 1, 150;
+ stroke-dashoffset: 0;
+ }
+ 50% {
+ stroke-dasharray: 90, 150;
+ stroke-dashoffset: -35;
+ }
+ 100% {
+ stroke-dasharray: 90, 150;
+ stroke-dashoffset: -124;
+ }
+}
+```
+
+```jsx
+function Loader({ size }) {
+ return (
+
+ );
+}
+```
+
+```jsx
+ReactDOM.render(, document.getElementById('root'));
+```