RobBrazier/svelte-awesome

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

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const arrowCircleOLeft: Record<string, IconData> = {
  'arrow-circle-o-left': {
    width: 1536,
    height: 1792,
    paths: [
      {
        d: 'M1152 800v192q0 13-9.5 22.5t-22.5 9.5h-352v192q0 14-9 23t-23 9q-12 0-24-10l-319-319q-9-9-9-23t9-23l320-320q9-9 23-9 13 0 22.5 9.5t9.5 22.5v192h352q13 0 22.5 9.5t9.5 22.5zM1312 896q0-148-73-273t-198-198-273-73-273 73-198 198-73 273 73 273 198 198 273 73 273-73 198-198 73-273zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'
      }
    ]
  }
};
export default arrowCircleOLeft;