UNPKG

solid-fa

Version:

Tiny FontAwesome component for SolidJS

9 lines 342 B
import { JSX } from 'solid-js'; interface FaLayersProps { size?: 'xs' | 'sm' | 'lg' | '1x' | '2x' | '3x' | '4x' | '5x' | '6x' | '7x' | '8x' | '9x' | '10x'; pull?: 'left' | 'right'; children?: JSX.Element; } export default function FaLayers(props: FaLayersProps): JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map