File size: 3,182 Bytes
a03b3ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
<script>
// @ts-nocheck
import { Meta, Story } from "@storybook/addon-svelte-csf";
import {
Error,
Brush,
Camera,
Chart,
Chat,
Check,
Circle,
Clear,
Code,
Color,
Community,
Copy,
Dislike,
Download,
DropdownArrow,
Edit,
Erase,
File,
Info,
Image,
JSON,
Like,
LineChart,
Maximise,
Music,
Pause,
Play,
Plot,
Remove,
Sketch,
Square,
Table,
TextHighlight,
Trash,
Tree,
Undo,
Video,
Warning
} from "../../icons/src";
const icons = [
{ name: "error", value: Error },
{ name: "brush", value: Brush },
{ name: "Camera", value: Camera },
{ name: "Chart", value: Chart },
{ name: "Chat", value: Chat },
{ name: "Check", value: Check },
{ name: "Circle", value: Circle },
{ name: "Clear", value: Clear },
{ name: "Code", value: Code },
{ name: "Color", value: Color },
{ name: "Community", value: Community },
{ name: "Copy", value: Copy },
{ name: "Dislike", value: Dislike },
{ name: "Download", value: Download },
{ name: "DropdownArrow", value: DropdownArrow },
{ name: "Edit", value: Edit },
{ name: "Erase", value: Erase },
{ name: "File", value: File },
{ name: "Info", value: Info },
{ name: "Image", value: Image },
{ name: "JSON", value: JSON },
{ name: "Like", value: Like },
{ name: "LineChart", value: LineChart },
{ name: "Maximise", value: Maximise },
{ name: "Music", value: Music },
{ name: "Pause", value: Pause },
{ name: "Play", value: Play },
{ name: "Plot", value: Plot },
{ name: "Remove", value: Remove },
{ name: "Sketch", value: Sketch },
{ name: "Square", value: Square },
{ name: "Table", value: Table },
{ name: "TextHighlight", value: TextHighlight },
{ name: "Trash", value: Trash },
{ name: "Tree", value: Tree },
{ name: "Undo", value: Undo },
{ name: "Video", value: Video },
{ name: "Warning", value: Warning }
];
</script>
<Meta title="Design System/Icons" />
<Story name="Icons">
<div class="wrapper">
<section>
<h1>Icons</h1>
</section>
<div class="container">
{#each icons as Icon}
<div class="icon-wrapper">
<div class="icon-name">{Icon.name}</div>
<div
style="display: flex; flex-direction: column; align-items: center; width: 50px; height: 50px;"
>
<Icon.value />
</div>
</div>
{/each}
</div>
</div>
</Story>
<style>
.wrapper {
display: flex;
flex-direction: column;
align-items: center;
font-family: var(--font);
}
.icon-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.icon-name {
font: var(--font-sans);
color: var(--block-title-text-color);
font-weight: var(--block-title-text-weight);
font-size: var(--block-title-text-size);
}
section {
background: #fb923c;
height: 50px;
width: 90%;
display: flex;
align-items: center;
border-radius: 15px;
padding: 50px;
margin: 20px;
}
section h1 {
color: white;
font-weight: 700;
font-size: 3em;
}
.container {
display: grid;
gap: 20px;
grid-template-columns: repeat(6, 1fr);
padding: 20px;
}
@media (max-width: 768px) {
.container {
grid-template-columns: repeat(3, 1fr);
}
}
</style>
|