Anki/ts/lib/components/Spacer.svelte
2024-08-19 15:17:47 +03:00

12 lines
262 B
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<div></div>
<style lang="scss">
div {
width: var(--width, auto);
height: var(--height, auto);
}
</style>