RobBrazier/svelte-awesome

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

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const windowMaximize: Record<string, IconData> = {
  'window-maximize': {
    width: 1792,
    height: 1792,
    paths: [
      {
        d: 'M256 1408h1280v-768h-1280v768zM1792 288v1216q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-1216q0-66 47-113t113-47h1472q66 0 113 47t47 113z'
      }
    ]
  }
};
export default windowMaximize;