RobBrazier/svelte-awesome

View on GitHub
src/lib/icons/unsorted.ts

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const unsorted: Record<string, IconData> = {
  unsorted: {
    width: 1024,
    height: 1792,
    paths: [
      {
        d: 'M1024 1088q0 26-19 45l-448 448q-19 19-45 19t-45-19l-448-448q-19-19-19-45t19-45 45-19h896q26 0 45 19t19 45zM1024 704q0 26-19 45t-45 19h-896q-26 0-45-19t-19-45 19-45l448-448q19-19 45-19t45 19l448 448q19 19 19 45z'
      }
    ]
  }
};
export default unsorted;