mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 17:27:43 +01:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
import type { JSX } from 'preact';
|
|
|
|
export default {
|
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
width: 24,
|
|
height: 24,
|
|
viewBox: '0 0 24 24',
|
|
fill: 'none',
|
|
stroke: 'currentColor',
|
|
'stroke-width': '2',
|
|
'stroke-linecap': 'round',
|
|
'stroke-linejoin': 'round',
|
|
} satisfies JSX.SVGAttributes;
|