UNPKG

solid-fa

Version:

Tiny FontAwesome component for SolidJS

14 lines 524 B
import { JSX } from 'solid-js'; interface FaLayersTextProps { size?: 'xs' | 'sm' | 'lg' | '1x' | '2x' | '3x' | '4x' | '5x' | '6x' | '7x' | '8x' | '9x' | '10x'; color?: string; scale?: number | string; translateX?: number | string; translateY?: number | string; rotate?: number | string; flip?: 'horizontal' | 'vertical' | 'both'; children?: JSX.Element; } export default function FaLayersText(props: FaLayersTextProps): JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map