@fluentui/react-icons
Version:
Fluent System Icons are a collection of familiar, friendly, and modern icons from Microsoft.
7 lines (6 loc) • 302 B
TypeScript
import * as React from 'react';
export interface IconDirectionContextValue {
textDirection?: 'ltr' | 'rtl';
}
export declare const IconDirectionContextProvider: React.Provider<IconDirectionContextValue | undefined>;
export declare const useIconContext: () => IconDirectionContextValue | undefined;