From ccb835b2b49d12a6ed8ccc39775ed28b49e2314f Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Fri, 20 May 2016 20:25:55 +0500 Subject: [PATCH 001/231] Definitions for jquery.tooltipster 3.3.0 --- jquery.tooltipster/jquery.tooltipster.d.ts | 41 ++++++++++++++++------ 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/jquery.tooltipster/jquery.tooltipster.d.ts b/jquery.tooltipster/jquery.tooltipster.d.ts index a4df0a36e3..13260f15fe 100644 --- a/jquery.tooltipster/jquery.tooltipster.d.ts +++ b/jquery.tooltipster/jquery.tooltipster.d.ts @@ -1,6 +1,6 @@ -// Type definitions for jQuery Tooltipster 3.0.5 +// Type definitions for jQuery Tooltipster 3.3.0 // Project: https://github.com/iamceege/tooltipster -// Definitions by: Patrick Magee +// Definitions by: Patrick Magee , Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -21,14 +21,13 @@ interface JQueryTooltipsterOptions { */ arrowColor?: any; /** - * If autoClose is set to false, the tooltip will never close unless you call the 'close' method yourself. Default: true + * If autoClose is set to false, the tooltip will never close unless you call the 'hide' method yourself. Default: true */ autoClose?: boolean; /** * If set, this will override the content of the tooltip. Default: null - * @type string, jQuery object */ - content?: any; + content?: string | JQuery; /** * If the content of the tooltip is provided as a string, it is displayed as plain text by default. If this content should actually be interpreted as HTML, set this option to true. Default: false */ @@ -38,15 +37,19 @@ interface JQueryTooltipsterOptions { */ contentCloning?: boolean; /** + * Tooltipster logs notices into the console when you're doing something you ideally shouldn't be doing. Set to false to disable logging. Default: true + */ + debug?: boolean; + /** * Delay how long it takes (in milliseconds) for the tooltip to start animating in. Default: 200 */ delay?: number; /** - * Set a fixed width for the tooltip. The tooltip will always be a consistent width - no matter your content size. Default: 0 (auto width) + * Set a minimum width for the tooltip. Default: 0 (auto width) */ - fixedWidth?: number; + minWidth?: number; /** - * Set a max width for the tooltip. If the tooltip ends up being smaller than the set max width, the tooltip's width will be set automatically. Default: 0 (no max width) + * Set a maximum width for the tooltip. Default: null (no max width) */ maxWidth?: number; /** @@ -66,10 +69,13 @@ interface JQueryTooltipsterOptions { */ functionAfter?: (origin) => void; /** - * If using the iconDesktop or iconTouch options, this sets the content for your icon. Default: '(?)' - * @type string, jQuery object + * If true, the tooltip will close if its origin is clicked. This option only applies when 'trigger' is 'hover' and 'autoClose' is false. Default: false */ - icon?: any; + hideOnClick?: boolean; + /** + * If using the iconDesktop or iconTouch options, this sets the content for your icon. Default: '(?)' + */ + icon?: string | JQuery; /** * If you provide a jQuery object to the 'icon' option, this sets if it is a clone of this object that should actually be used. Default: true */ @@ -95,6 +101,10 @@ interface JQueryTooltipsterOptions { */ interactiveTolerance?: number; /** + * Allows you to put multiple tooltips on a single element. Read further instructions down this page. Default: false + */ + multiple?: boolean; + /** * Offsets the tooltip (in pixels) farther left/right from the origin. Default: 0 */ offsetX?: number; @@ -116,6 +126,15 @@ interface JQueryTooltipsterOptions { */ positionTracker?: boolean; /** + * Called after the tooltip has been repositioned by the position tracker (if enabled). Default: A function that will close the tooltip if the trigger is 'hover' and autoClose is false. + */ + positionTrackerCallback?: (origin) => void; + /** + * Specify if a TITLE attribute should be restored on the HTML element after a call to the 'destroy' method. This attribute may be omitted, or be restored with the value that existed before Tooltipster was initialized, or be restored with the stringified value of the current content. Note: in case of multiple tooltips on a single element, only the last destroyed tooltip may trigger a restoration. Default: 'current' + * 'none', 'previous' or 'current' + */ + restoration?: string; + /** * Set the speed of the animation. Default: 350 */ speed?: number; From da38d0569abda73fd1b8b6d768781059433adbf2 Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Fri, 20 May 2016 20:26:56 +0500 Subject: [PATCH 002/231] Updated tests to test type union in content --- jquery.tooltipster/jquery.tooltipster-tests.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/jquery.tooltipster/jquery.tooltipster-tests.ts b/jquery.tooltipster/jquery.tooltipster-tests.ts index 8a8f29acae..df5ec17e51 100644 --- a/jquery.tooltipster/jquery.tooltipster-tests.ts +++ b/jquery.tooltipster/jquery.tooltipster-tests.ts @@ -2,7 +2,7 @@ // Type definition tests for jQuery Tooltipster 3.0.5 // Project: https://github.com/iamceege/tooltipster -// Definitions by: Patrick Magee +// Definitions by: Patrick Magee , Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Tests taken from the getting started section of the Tooltipster website @@ -13,6 +13,10 @@ $(document).ready(function () { $('#my-tooltip').tooltipster({ content: $(' This text is in bold case !') }); + + $('#my-tooltip').tooltipster({ + content: 'string test' + }); }); @@ -191,4 +195,4 @@ $(document).ready(function () { }); }); -$('#my-special-tooltip').tooltipster('content', 'My new content'); \ No newline at end of file +$('#my-special-tooltip').tooltipster('content', 'My new content'); From 15e410b756322c505802ab2b006cda295d808ccb Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Fri, 20 May 2016 20:27:34 +0500 Subject: [PATCH 003/231] Version --- jquery.tooltipster/jquery.tooltipster-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery.tooltipster/jquery.tooltipster-tests.ts b/jquery.tooltipster/jquery.tooltipster-tests.ts index df5ec17e51..21a5446c12 100644 --- a/jquery.tooltipster/jquery.tooltipster-tests.ts +++ b/jquery.tooltipster/jquery.tooltipster-tests.ts @@ -1,6 +1,6 @@ /// -// Type definition tests for jQuery Tooltipster 3.0.5 +// Type definition tests for jQuery Tooltipster 3.3.0 // Project: https://github.com/iamceege/tooltipster // Definitions by: Patrick Magee , Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped From 6751a3d2591ade7eea6494c5ff8ee75ce1f0a099 Mon Sep 17 00:00:00 2001 From: Hinell Date: Fri, 13 Jan 2017 23:58:36 +0300 Subject: [PATCH 004/231] [mongodb] Cursor generic type --- mongodb/index.d.ts | 61 +++++++++++++++++++++++----------------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index bdf89c32f6..e22b837d79 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -692,9 +692,9 @@ export interface Collection { options(): Promise; options(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#parallelCollectionScan - parallelCollectionScan(callback: MongoCallback): void; - parallelCollectionScan(options?: ParallelCollectionScanOptions): Promise; - parallelCollectionScan(options: ParallelCollectionScanOptions, callback: MongoCallback): void; + parallelCollectionScan(callback: MongoCallback[]>): void; + parallelCollectionScan(options?: ParallelCollectionScanOptions): Promise[]>; + parallelCollectionScan(options: ParallelCollectionScanOptions, callback: MongoCallback[]>): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#reIndex reIndex(): Promise; reIndex(callback: MongoCallback): void; @@ -1119,24 +1119,25 @@ export interface WriteOpResult { export type CursorResult = any | void | boolean; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html -export interface Cursor extends Readable { +export interface Cursor extends Readable { sortValue: string; timeout: boolean; readPreference: ReadPreference; - //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html - addCursorFlag(flag: string, value: boolean): Cursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#addCursorFlag + addCursorFlag(flag: string, value: boolean): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#addQueryModifier - addQueryModifier(name: string, value: boolean): Cursor; + addQueryModifier(name: string, value: boolean): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#batchSize - batchSize(value: number): Cursor; + batchSize(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#clone - clone(): Cursor; + // https://github.com/christkv/mongodb-core/blob/2.0/lib/cursor.js#L333 + clone(): Cursor; // still returns the same type // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#close close(): Promise; close(callback: MongoCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#comment - comment(value: string): Cursor; + comment(value: string): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#count count(applySkipLimit: boolean, callback: MongoCallback): void; count(applySkipLimit: boolean, options?: CursorCommentOptions): Promise; @@ -1145,59 +1146,59 @@ export interface Cursor extends Readable { explain(): Promise; explain(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#filter - filter(filter: Object): Cursor; + filter(filter: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#forEach forEach(iterator: IteratorCallback, callback: EndCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#hasNext hasNext(): Promise; hasNext(callback: MongoCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#hint - hint(hint: Object): Cursor; + hint(hint: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#isClosed isClosed(): boolean; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#limit - limit(value: number): Cursor; + limit(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#map - map(transform: Function): Cursor; + map(transform: Function): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#max - max(max: number): Cursor; + max(max: number): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxAwaitTimeMS - maxAwaitTimeMS(value: number): Cursor; + maxAwaitTimeMS(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxScan - maxScan(maxScan: Object): Cursor; + maxScan(maxScan: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxTimeMS - maxTimeMS(value: number): Cursor; + maxTimeMS(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#min - min(min: number): Cursor; + min(min: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#next next(): Promise; next(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#pipe pipe(destination: Writable, options?: Object): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#project - project(value: Object): Cursor; + project(value: Object): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#read read(size: number): string | Buffer | void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#next - returnKey(returnKey: Object): Cursor; + returnKey(returnKey: Object): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#rewind rewind(): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#setCursorOption - setCursorOption(field: string, value: Object): Cursor; + setCursorOption(field: string, value: Object): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#setEncoding setEncoding(encoding: string): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#setReadPreference - setReadPreference(readPreference: string | ReadPreference): Cursor; + setReadPreference(readPreference: string | ReadPreference): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#showRecordId - showRecordId(showRecordId: Object): Cursor; + showRecordId(showRecordId: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#skip - skip(value: number): Cursor; + skip(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#snapshot - snapshot(snapshot: Object): Cursor; + snapshot(snapshot: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#sort - sort(keyOrList: string | Object[] | Object | Object, direction?: number): Cursor; + sort(keyOrList: string | Object[] | Object, direction?: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#stream - stream(options?: { transform?: Function }): Cursor; + stream(options?: { transform?: Function }): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#toArray toArray(): Promise; toArray(callback: MongoCallback): void; @@ -1228,7 +1229,7 @@ export interface EndCallback { //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#~resultCallback export type AggregationCursorResult = any | void; - +// TODO: change to generic version //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html export interface AggregationCursor extends Readable { // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize @@ -1332,7 +1333,7 @@ export class GridFSBucket { // http://mongodb.github.io/node-mongodb-native/2.1/api/GridFSBucket.html#drop drop(callback?: GridFSBucketErrorCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/GridFSBucket.html#find - find(filter?: Object, options?: GridFSBucketFindOptions): Cursor; + find(filter?: Object, options?: GridFSBucketFindOptions): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/GridFSBucket.html#openDownloadStream openDownloadStream(id: ObjectID, options?: { start: number, end: number }): GridFSBucketReadStream; // http://mongodb.github.io/node-mongodb-native/2.1/api/GridFSBucket.html#openDownloadStreamByName From e671c82e069a1911127a391a9987ed99dcf73282 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 00:45:53 +0300 Subject: [PATCH 005/231] [mongodb] Collection.find() generic type --- mongodb/index.d.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index e22b837d79..6233145741 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -616,9 +616,10 @@ export interface Collection { dropIndexes(): Promise; dropIndexes(callback?: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#find - find(query?: Object): Cursor; + find(query?: Object): Cursor; + find(query?: Object): Cursor; /** @deprecated */ - find(query: Object, fields?: Object, skip?: number, limit?: number, timeout?: number): Cursor; + find(query: Object, fields?: Object, skip?: number, limit?: number, timeout?: number): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#findOne /** @deprecated use find().limit(1).next(function(err, doc){}) */ findOne(filter: Object, callback: MongoCallback): void; @@ -1200,7 +1201,7 @@ export interface Cursor extends Readable { // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#stream stream(options?: { transform?: Function }): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#toArray - toArray(): Promise; + toArray(): Promise; toArray(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#unpipe unpipe(destination?: Writable): void; From f0a7695c9afe3f3aabe2af23aab430d635316777 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 01:27:27 +0300 Subject: [PATCH 006/231] [mongodb] Collection.aggregate() generic type --- mongodb/index.d.ts | 90 +++++++++++++++++++++++----------------------- 1 file changed, 46 insertions(+), 44 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index 6233145741..5b5c8de876 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -576,8 +576,10 @@ export interface Collection { // Get current index hint for collection. hint: any; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#aggregate - aggregate(pipeline: Object[], callback: MongoCallback): AggregationCursor; - aggregate(pipeline: Object[], options?: CollectionAggregationOptions, callback?: MongoCallback): AggregationCursor; + aggregate(pipeline: Object[], callback: MongoCallback): AggregationCursor; + aggregate(pipeline: Object[], options?: CollectionAggregationOptions, callback?: MongoCallback): AggregationCursor; + aggregate(pipeline: Object[], callback: MongoCallback): AggregationCursor; + aggregate(pipeline: Object[], options?: CollectionAggregationOptions, callback?: MongoCallback): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#bulkWrite bulkWrite(operations: Object[], callback: MongoCallback): void; bulkWrite(operations: Object[], options?: CollectionBluckWriteOptions): Promise; @@ -1232,61 +1234,61 @@ export interface EndCallback { export type AggregationCursorResult = any | void; // TODO: change to generic version //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html -export interface AggregationCursor extends Readable { - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize - batchSize(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#clone - clone(): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#close +export interface AggregationCursor extends Readable { + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize + batchSize(value: number): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#clone + clone(): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#close close(): Promise; close(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#each + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#each each(callback: MongoCallback): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#explain + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#explain explain(): Promise; explain(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#geoNear - geoNear(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#group - group(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#isClosed + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#geoNear + geoNear(document: Object): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#group + group(document: Object): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#isClosed isClosed(): boolean; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#limit - limit(value: number): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#match - match(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#maxTimeMS - maxTimeMS(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#next + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#limit + limit(value: number): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#match + match(document: Object): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#maxTimeMS + maxTimeMS(value: number): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#next next(): Promise; next(callback: MongoCallback): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#out - out(destination: string): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#pipe + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#out + out(destination: string): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#pipe pipe(destination: Writable, options?: Object): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#project - project(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#read + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#project + project(document: Object): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#read read(size: number): string | Buffer | void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#redact - redact(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#rewind - rewind(): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#setEncoding + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#redact + redact(document: Object): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#rewind + rewind(): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#setEncoding setEncoding(encoding: string): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#skip - skip(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#sort - sort(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#toArray - toArray(): Promise; - toArray(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unpipe + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#skip + skip(value: number): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#sort + sort(document: Object): AggregationCursor; + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#toArray + toArray(): Promise; + toArray(callback: MongoCallback): void; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unpipe unpipe(destination?: Writable): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unshift + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unshift unshift(stream: Buffer | string): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unwind - unwind(field: string): AggregationCursor; + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unwind + unwind(field: string): AggregationCursor; } //http://mongodb.github.io/node-mongodb-native/2.1/api/CommandCursor.html From 22faaeb4bf4492987e64d5e835900546ddc5b75a Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 01:39:14 +0300 Subject: [PATCH 007/231] [mongodb] Generics test, Cursor.methods() test --- mongodb/mongodb-tests.ts | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/mongodb/mongodb-tests.ts b/mongodb/mongodb-tests.ts index cea5175e69..8236ea6f4e 100644 --- a/mongodb/mongodb-tests.ts +++ b/mongodb/mongodb-tests.ts @@ -25,4 +25,44 @@ MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err: mongodb.Mong console.log(stats.count + " documents"); }); }); + + { + let cursor: mongodb.Cursor; + cursor = collection.find(); + cursor = cursor.addCursorFlag('',true); + cursor = cursor.addQueryModifier('',true); + cursor = cursor.batchSize(1); + cursor = cursor.comment(''); + cursor = cursor.filter(1); + cursor = cursor.hint({}); + cursor = cursor.limit(1); + cursor = cursor.map(function (result) {}); + cursor = cursor.max(1); + cursor = cursor.min(1); + cursor = cursor.maxAwaitTimeMS(1); + cursor = cursor.maxScan({}); + cursor = cursor.maxTimeMS(1); + cursor = cursor.project({}); + cursor = cursor.returnKey({}); + cursor = cursor.setCursorOption('',{}); + cursor = cursor.setReadPreference(''); + cursor = cursor.showRecordId({}); + cursor = cursor.skip(1); + cursor = cursor.snapshot({}); + cursor = cursor.sort({}); + cursor = cursor.stream(); + } + + // Collection .findM() & .agggregate() generic tests + { + let bag : {cost: number, color: string}; + type bag = typeof bag; + let cursor: mongodb.Cursor = collection.find({color: 'black'}) + cursor.toArray(function (err,r) { bag = r[0]}); + } + { + let payment: {total: number}; + type payment = typeof payment; + let cursor: mongodb.AggregationCursor = collection.aggregate([{}]) + } }) From a411c9ee5d4569e8d0dbb30c99f8b3f802224ef0 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 01:51:34 +0300 Subject: [PATCH 008/231] [mongodb] Cursor.forEach generic type --- mongodb/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index 5b5c8de876..d97c65b342 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -1151,7 +1151,7 @@ export interface Cursor extends Readable { //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#filter filter(filter: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#forEach - forEach(iterator: IteratorCallback, callback: EndCallback): void; + forEach(iterator: IteratorCallback, callback: EndCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#hasNext hasNext(): Promise; hasNext(callback: MongoCallback): void; @@ -1221,8 +1221,8 @@ export interface CursorCommentOptions { } //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#~iteratorCallback -export interface IteratorCallback { - (doc: any): void; +export interface IteratorCallback { + (doc: T): void; } //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#~endCallback From 1f65c0665d871735fd87dc4fe4ade0b93a613059 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 02:13:58 +0300 Subject: [PATCH 009/231] [mongodb] Cusros.toArray() generic override --- mongodb/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index d97c65b342..10c84b210c 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -1204,7 +1204,7 @@ export interface Cursor extends Readable { stream(options?: { transform?: Function }): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#toArray toArray(): Promise; - toArray(callback: MongoCallback): void; + toArray(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#unpipe unpipe(destination?: Writable): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#unshift From 39f79329e572da014e455c99aef26071a369b532 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 14 Jan 2017 02:27:49 +0300 Subject: [PATCH 010/231] [mongodb] Doc listing fix --- mongodb/index.d.ts | 50 +++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index 10c84b210c..42380c39c2 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -1235,59 +1235,59 @@ export type AggregationCursorResult = any | void; // TODO: change to generic version //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html export interface AggregationCursor extends Readable { - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize batchSize(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#clone + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#clone clone(): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#close + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#close close(): Promise; close(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#each + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#each each(callback: MongoCallback): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#explain + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#explain explain(): Promise; explain(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#geoNear + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#geoNear geoNear(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#group + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#group group(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#isClosed + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#isClosed isClosed(): boolean; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#limit + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#limit limit(value: number): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#match + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#match match(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#maxTimeMS + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#maxTimeMS maxTimeMS(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#next + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#next next(): Promise; next(callback: MongoCallback): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#out + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#out out(destination: string): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#pipe + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#pipe pipe(destination: Writable, options?: Object): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#project + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#project project(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#read + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#read read(size: number): string | Buffer | void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#redact + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#redact redact(document: Object): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#rewind + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#rewind rewind(): AggregationCursor; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#setEncoding + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#setEncoding setEncoding(encoding: string): void; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#skip + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#skip skip(value: number): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#sort + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#sort sort(document: Object): AggregationCursor; - // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#toArray + // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#toArray toArray(): Promise; toArray(callback: MongoCallback): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unpipe + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unpipe unpipe(destination?: Writable): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unshift + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unshift unshift(stream: Buffer | string): void; - //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unwind + //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unwind unwind(field: string): AggregationCursor; } From a443b9c286c175f7ea5a9f19f889f11e6a00e3fb Mon Sep 17 00:00:00 2001 From: Hinell Date: Sun, 15 Jan 2017 02:16:43 +0300 Subject: [PATCH 011/231] [mongodb] Tetsts updated --- mongodb/mongodb-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mongodb/mongodb-tests.ts b/mongodb/mongodb-tests.ts index 8236ea6f4e..cba7f9a212 100644 --- a/mongodb/mongodb-tests.ts +++ b/mongodb/mongodb-tests.ts @@ -52,13 +52,13 @@ MongoClient.connect('mongodb://127.0.0.1:27017/test', function(err: mongodb.Mong cursor = cursor.sort({}); cursor = cursor.stream(); } - // Collection .findM() & .agggregate() generic tests { let bag : {cost: number, color: string}; type bag = typeof bag; let cursor: mongodb.Cursor = collection.find({color: 'black'}) - cursor.toArray(function (err,r) { bag = r[0]}); + cursor.toArray(function (err,r) { r[0].cost} ); + cursor.forEach(function (bag ) { bag.color }, () => {}); } { let payment: {total: number}; From 24e002e47f43ffea46b4673e1baecd154e21f996 Mon Sep 17 00:00:00 2001 From: yyc <395976266@qq.com> Date: Tue, 24 Jan 2017 06:23:05 +0800 Subject: [PATCH 012/231] fix: cannon add version --- cannon/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cannon/index.d.ts b/cannon/index.d.ts index 6551e07b32..9b62c45fc4 100644 --- a/cannon/index.d.ts +++ b/cannon/index.d.ts @@ -1,5 +1,5 @@ // Type definitions for cannon -// Project: https://github.com/clark-stevenson/cannon.d.ts +// Project: https://github.com/clark-stevenson/cannon.d.ts v0.1.0 // Definitions by: Clark Stevenson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped From 523089f06262971369335d239708d641c75068d4 Mon Sep 17 00:00:00 2001 From: yyc <395976266@qq.com> Date: Tue, 24 Jan 2017 06:34:43 +0800 Subject: [PATCH 013/231] fix: fix version --- cannon/index.d.ts | 4 ++-- wonder-commonlib/index.d.ts | 2 +- wonder-frp/index.d.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cannon/index.d.ts b/cannon/index.d.ts index 9b62c45fc4..45e005d53d 100644 --- a/cannon/index.d.ts +++ b/cannon/index.d.ts @@ -1,5 +1,5 @@ -// Type definitions for cannon -// Project: https://github.com/clark-stevenson/cannon.d.ts v0.1.0 +// Type definitions for cannon 0.1 +// Project: https://github.com/clark-stevenson/cannon.d.ts // Definitions by: Clark Stevenson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped diff --git a/wonder-commonlib/index.d.ts b/wonder-commonlib/index.d.ts index 3421de0125..464b6ada4e 100644 --- a/wonder-commonlib/index.d.ts +++ b/wonder-commonlib/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for wonder-commonlib v0.1.0 +// Type definitions for wonder-commonlib 0.1 // Project: https://github.com/yyc-git/Wonder-CommonLib // Definitions by: YYC // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped diff --git a/wonder-frp/index.d.ts b/wonder-frp/index.d.ts index c5e69d2dd9..c7459d6690 100644 --- a/wonder-frp/index.d.ts +++ b/wonder-frp/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for wonder-frp v0.1.0 +// Type definitions for wonder-frp 0.1 // Project: https://github.com/yyc-git/Wonder-FRP // Definitions by: YYC // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped From f44f406cfb85deef684a7f26522e016ec4794cf6 Mon Sep 17 00:00:00 2001 From: Ernest Rhinozeros Date: Wed, 25 Jan 2017 15:42:39 +0100 Subject: [PATCH 014/231] Added declarations for 'leaflet.gridlayer.googlemutant'. --- leaflet.gridlayer.googlemutant/index.d.ts | 78 +++++++++++++++++++ .../leaflet.gridlayer.googlemutant-tests.ts | 13 ++++ leaflet.gridlayer.googlemutant/tsconfig.json | 20 +++++ leaflet.gridlayer.googlemutant/tslint.json | 1 + 4 files changed, 112 insertions(+) create mode 100644 leaflet.gridlayer.googlemutant/index.d.ts create mode 100644 leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts create mode 100644 leaflet.gridlayer.googlemutant/tsconfig.json create mode 100644 leaflet.gridlayer.googlemutant/tslint.json diff --git a/leaflet.gridlayer.googlemutant/index.d.ts b/leaflet.gridlayer.googlemutant/index.d.ts new file mode 100644 index 0000000000..2f62268fcd --- /dev/null +++ b/leaflet.gridlayer.googlemutant/index.d.ts @@ -0,0 +1,78 @@ +// Type definitions for leaflet.gridlayer.googlemutant 0.4 +// Project: https://gitlab.com/IvanSanchez/Leaflet.GridLayer.GoogleMutant#README +// Definitions by: Ernest Rhinozeros +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace L.GridLayer { + export interface GoogleMutant extends L.GridLayer { + setElementSize(e: HTMLElement, size: L.Point): void ; + } + + export type GoogleMutantType = 'roadmap' | 'satellite' | 'terrain' | 'hybrid'; + + export interface GoogleMutantStyler { + hue?: string; + lightness?: number; + saturation?: number; + gamma?: number; + invert_lightness?: boolean; + visibility?: string; + color?: string; + weight?: number; + } + + /** + * Google's map style. + * + * https://developers.google.com/maps/documentation/javascript/style-reference + */ + export interface GoogleMutantStyle { + + /** + * https://developers.google.com/maps/documentation/javascript/style-reference#style-features + */ + featureType?: string; + + /** + * https://developers.google.com/maps/documentation/javascript/style-reference#style-elements + */ + elementType?: string; + + /** + * https://developers.google.com/maps/documentation/javascript/style-reference#stylers + */ + stylers?: GoogleMutantStyler[]; + } + + export interface GoogleMutantOptions extends L.TileLayerOptions { + minZoom?: number; + maxZoom?: number; + maxNativeZoom?: number; + tileSize?: number | Point; + subdomains?: string | Array; + errorTileUrl?: string; + + /** + * The mutant container will add its own attribution anyways. + */ + attribution?: string; + + opacity?: number; + continuousWorld?: boolean, + noWrap?: boolean; + + /** + * Google's map type. 'hybrid' is not really supported. + */ + type?: GoogleMutantType; + + /** + * Google's map styles. + */ + styles?: GoogleMutantStyle[] + } + + export function googleMutant(options?: GoogleMutantOptions): GoogleMutant; +} diff --git a/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts b/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts new file mode 100644 index 0000000000..53e8dc3e1c --- /dev/null +++ b/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts @@ -0,0 +1,13 @@ +let map = L.map('foo'); + +let roads = L.GridLayer.googleMutant({ + type: 'roadmap' +}).addTo(map); + +let styled = L.GridLayer.googleMutant({ + type: 'satellite', + styles: [ + { elementType: 'labels', stylers: [ { visibility: 'off' } ] }, + { featureType: 'water' , stylers: [ { color: '#444444' } ] } + ] +}).addTo(map); diff --git a/leaflet.gridlayer.googlemutant/tsconfig.json b/leaflet.gridlayer.googlemutant/tsconfig.json new file mode 100644 index 0000000000..2e8651b58b --- /dev/null +++ b/leaflet.gridlayer.googlemutant/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "leaflet.gridlayer.googlemutant-tests.ts" + ] +} diff --git a/leaflet.gridlayer.googlemutant/tslint.json b/leaflet.gridlayer.googlemutant/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/leaflet.gridlayer.googlemutant/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 2b027af83cc72a439b7d1019a08b43fa74da8a5b Mon Sep 17 00:00:00 2001 From: Ernest Rhinozeros Date: Wed, 25 Jan 2017 16:27:09 +0100 Subject: [PATCH 015/231] Added declarations for 'leaflet.gridlayer.googlemutant'. fixed namespace name and linting --- leaflet.gridlayer.googlemutant/index.d.ts | 8 ++++---- .../leaflet.gridlayer.googlemutant-tests.ts | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/leaflet.gridlayer.googlemutant/index.d.ts b/leaflet.gridlayer.googlemutant/index.d.ts index 2f62268fcd..a5fa96ae80 100644 --- a/leaflet.gridlayer.googlemutant/index.d.ts +++ b/leaflet.gridlayer.googlemutant/index.d.ts @@ -5,7 +5,7 @@ /// -declare namespace L.GridLayer { +declare namespace L.gridLayer { export interface GoogleMutant extends L.GridLayer { setElementSize(e: HTMLElement, size: L.Point): void ; } @@ -51,7 +51,7 @@ declare namespace L.GridLayer { maxZoom?: number; maxNativeZoom?: number; tileSize?: number | Point; - subdomains?: string | Array; + subdomains?: string | string[]; errorTileUrl?: string; /** @@ -60,7 +60,7 @@ declare namespace L.GridLayer { attribution?: string; opacity?: number; - continuousWorld?: boolean, + continuousWorld?: boolean; noWrap?: boolean; /** @@ -71,7 +71,7 @@ declare namespace L.GridLayer { /** * Google's map styles. */ - styles?: GoogleMutantStyle[] + styles?: GoogleMutantStyle[]; } export function googleMutant(options?: GoogleMutantOptions): GoogleMutant; diff --git a/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts b/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts index 53e8dc3e1c..797947f9c7 100644 --- a/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts +++ b/leaflet.gridlayer.googlemutant/leaflet.gridlayer.googlemutant-tests.ts @@ -1,10 +1,10 @@ let map = L.map('foo'); -let roads = L.GridLayer.googleMutant({ +let roads = L.gridLayer.googleMutant({ type: 'roadmap' }).addTo(map); -let styled = L.GridLayer.googleMutant({ +let styled = L.gridLayer.googleMutant({ type: 'satellite', styles: [ { elementType: 'labels', stylers: [ { visibility: 'off' } ] }, From 9afce5b53134e3a4119f790db459ab7ef2798ccc Mon Sep 17 00:00:00 2001 From: Brian Hinken Date: Wed, 25 Jan 2017 10:54:20 -0500 Subject: [PATCH 016/231] angular-bootstrap-ui: Add missing configuration options & tests for ITooltipOptions --- angular-ui-bootstrap/angular-ui-bootstrap-tests.ts | 1 + angular-ui-bootstrap/index.d.ts | 11 +++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts b/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts index b14af506b6..15f0f2b661 100644 --- a/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts +++ b/angular-ui-bootstrap/angular-ui-bootstrap-tests.ts @@ -155,6 +155,7 @@ testApp.config(( placement: 'bottom', animation: false, popupDelay: 1000, + popupCloseDelay: 1000, appendToBody: true, trigger: 'mouseenter hover', useContentExp: true, diff --git a/angular-ui-bootstrap/index.d.ts b/angular-ui-bootstrap/index.d.ts index b5b4e1a5e6..bc80d96b5a 100644 --- a/angular-ui-bootstrap/index.d.ts +++ b/angular-ui-bootstrap/index.d.ts @@ -161,7 +161,7 @@ declare module 'angular' { /** * Defines the initial date, when no model value is specified. - * + * * @default null */ initDate?: any; @@ -834,12 +834,19 @@ declare module 'angular' { animation?: boolean; /** - * For how long should the user have to have the mouse over the element before the tooltip shows (in milliseconds)? + * Popup delay in milliseconds until it opens. * * @default 0 */ popupDelay?: number; + /** + * For how long should the tooltip remain open after the close trigger event? + * + * @default 0 + */ + popupCloseDelay?: number; + /** * Should the tooltip be appended to `$body` instead of the parent element? * From 7673aba8bd856c4e079cf135576e9130ce86f2bf Mon Sep 17 00:00:00 2001 From: Thomas Kleinke Date: Wed, 25 Jan 2017 18:28:49 +0100 Subject: [PATCH 017/231] add type definitions for leaflet.pm --- leaflet.pm/index.d.ts | 96 ++++++++++++++++++++++++++++++++++ leaflet.pm/leaflet.pm-tests.ts | 68 ++++++++++++++++++++++++ leaflet.pm/tsconfig.json | 20 +++++++ leaflet.pm/tslint.json | 1 + 4 files changed, 185 insertions(+) create mode 100644 leaflet.pm/index.d.ts create mode 100644 leaflet.pm/leaflet.pm-tests.ts create mode 100644 leaflet.pm/tsconfig.json create mode 100644 leaflet.pm/tslint.json diff --git a/leaflet.pm/index.d.ts b/leaflet.pm/index.d.ts new file mode 100644 index 0000000000..7e9e2a1c14 --- /dev/null +++ b/leaflet.pm/index.d.ts @@ -0,0 +1,96 @@ +// Type definitions for leaflet.pm 0.13 +// Project: https://github.com/codeofsumit/leaflet.pm +// Definitions by: Thomas Kleinke +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace L { + + export interface Map { + pm: PM.Map; + } + + export interface Polygon { + pm: PM.Edit.Line; + } + + export interface Polyline { + pm: PM.Edit.Line; + } + + export interface Marker { + pm: PM.Edit.Marker; + } + + export interface LayerGroup { + pm: PM.Edit.LayerGroup; + } + + export namespace PM { + + export interface Map { + addControls(options?: PM.ToolbarOptions): void; + enableDraw(shape: string, options?: PM.DrawOptions): void; + disableDraw(shape: string): void; + setPathOptions(options: L.PathOptions): void; + toggleRemoval(enabled: boolean): void; + globalEditEnabled(): boolean; + toggleGlobalEditMode(options?: PM.EditOptions): void; + + Draw: PM.Draw; + } + + export interface Draw { + getShapes(): string[]; + } + + export interface ToolbarOptions { + position?: string; // topleft | topright | bottomleft | bottomright + drawMarker?: boolean; + drawPolygon?: boolean; + drawPolyline?: boolean; + editPolygon?: boolean; + deleteLayer?: boolean; + } + + export interface DrawOptions { + templineStyle?: L.PathOptions; + hintlineStyle?: L.PathOptions; + pathOptions?: L.PathOptions; + } + + export interface EditOptions { + draggable?: boolean; + snappable?: boolean; + snapDistance?: number; + } + + export namespace Edit { + + export interface Line { + enable(options?: EditOptions): void; + disable(poly?: L.Layer): void; + toggleEdit(options?: EditOptions): void; + enabled(): boolean; + } + + export interface Marker { + enable(options?: EditOptions): void; + disable(): void; + toggleEdit(options?: EditOptions): void; + enabled(): boolean; + } + + export interface LayerGroup { + enable(options?: EditOptions): void; + disable(): void; + toggleEdit(options?: EditOptions): void; + enabled(): boolean; + findLayers(): L.Layer[]; + dragging(): boolean; + getOptions(): EditOptions; + } + } + } +} diff --git a/leaflet.pm/leaflet.pm-tests.ts b/leaflet.pm/leaflet.pm-tests.ts new file mode 100644 index 0000000000..88c804acff --- /dev/null +++ b/leaflet.pm/leaflet.pm-tests.ts @@ -0,0 +1,68 @@ +var toolbarOptions: L.PM.ToolbarOptions = { + position: 'topleft', + drawMarker: true, + drawPolygon: true, + drawPolyline: true, + editPolygon: true, + deleteLayer: true +}; + +var drawOptions: L.PM.DrawOptions = { + templineStyle: { + color: 'red' + }, + hintlineStyle: { + color: 'red', + dashArray: '5, 5' + } +}; + +var editOptions: L.PM.EditOptions = { + draggable: true, + snappable: true, + snapDistance: 30 +}; + +var pathOptions: L.PathOptions = { + color: 'orange', + fillColor: 'green', + fillOpacity: 0.5 +}; + +var map: L.Map = L.map('map-element'); +map.pm.addControls(toolbarOptions); +map.pm.enableDraw('Poly', drawOptions); +map.pm.disableDraw('Poly'); +map.pm.setPathOptions(pathOptions); +map.pm.toggleRemoval(true); +var enabled: boolean = map.pm.globalEditEnabled(); +map.pm.toggleGlobalEditMode(editOptions); + +var shapes: string[] = map.pm.Draw.getShapes(); + +var polygon: L.Polygon = L.polygon([ [ 1.0, 1.0], [ 2.0, 1.0], [ 1.0, 2.0] ]); +polygon.pm.enable(editOptions); +polygon.pm.disable(); +polygon.pm.toggleEdit(editOptions); +enabled = polygon.pm.enabled(); + +var polyline: L.Polyline = L.polyline([ [ 1.0, 1.0], [ 2.0, 1.0], [ 1.0, 2.0] ]); +polyline.pm.enable(editOptions); +polyline.pm.disable(); +polyline.pm.toggleEdit(editOptions); +enabled = polyline.pm.enabled(); + +var marker: L.Marker = L.marker([ 3.0, 3.0 ]); +marker.pm.enable(editOptions); +marker.pm.disable(); +marker.pm.toggleEdit(editOptions); +enabled = marker.pm.enabled(); + +var layerGroup: L.LayerGroup = L.layerGroup([ polygon, polyline, marker ]); +layerGroup.pm.enable(editOptions); +layerGroup.pm.disable(); +layerGroup.pm.toggleEdit(editOptions); +enabled = layerGroup.pm.enabled(); +var layers: L.Layer[] = layerGroup.pm.findLayers(); +var dragging: boolean = layerGroup.pm.dragging(); +var options: L.PM.EditOptions = layerGroup.pm.getOptions(); diff --git a/leaflet.pm/tsconfig.json b/leaflet.pm/tsconfig.json new file mode 100644 index 0000000000..21ac03fd2a --- /dev/null +++ b/leaflet.pm/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "leaflet.pm-tests.ts" + ] +} diff --git a/leaflet.pm/tslint.json b/leaflet.pm/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/leaflet.pm/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 4b7b6766283fd95be1721a285e34023bb543988f Mon Sep 17 00:00:00 2001 From: Thomas Kleinke Date: Wed, 25 Jan 2017 18:31:59 +0100 Subject: [PATCH 018/231] add type definitions for leaflet-imageoverlay-rotated --- leaflet-imageoverlay-rotated/index.d.ts | 27 +++++++++++++++++++ .../leaflet-imageoverlay-rotated-tests.ts | 10 +++++++ leaflet-imageoverlay-rotated/tsconfig.json | 20 ++++++++++++++ leaflet-imageoverlay-rotated/tslint.json | 1 + 4 files changed, 58 insertions(+) create mode 100644 leaflet-imageoverlay-rotated/index.d.ts create mode 100644 leaflet-imageoverlay-rotated/leaflet-imageoverlay-rotated-tests.ts create mode 100644 leaflet-imageoverlay-rotated/tsconfig.json create mode 100644 leaflet-imageoverlay-rotated/tslint.json diff --git a/leaflet-imageoverlay-rotated/index.d.ts b/leaflet-imageoverlay-rotated/index.d.ts new file mode 100644 index 0000000000..acb4d7f172 --- /dev/null +++ b/leaflet-imageoverlay-rotated/index.d.ts @@ -0,0 +1,27 @@ +// Type definitions for leaflet-imageoverlay-rotated 0.1 +// Project: https://github.com/IvanSanchez/Leaflet.ImageOverlay.Rotated +// Definitions by: Thomas Kleinke +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace L { + + namespace ImageOverlay { + + export interface Rotated extends L.ImageOverlay { + reposition(topleft: L.LatLngExpression, + topright: L.LatLngExpression, + bottomleft: L.LatLngExpression): void; + } + } + + namespace imageOverlay { + + export function rotated(imgSrc: string | HTMLImageElement | HTMLCanvasElement, + topleft: L.LatLngExpression, + topright: L.LatLngExpression, + bottomleft: L.LatLngExpression, + options?: L.ImageOverlayOptions): L.ImageOverlay.Rotated; + } +} diff --git a/leaflet-imageoverlay-rotated/leaflet-imageoverlay-rotated-tests.ts b/leaflet-imageoverlay-rotated/leaflet-imageoverlay-rotated-tests.ts new file mode 100644 index 0000000000..1b2ffd6c20 --- /dev/null +++ b/leaflet-imageoverlay-rotated/leaflet-imageoverlay-rotated-tests.ts @@ -0,0 +1,10 @@ +var topleft = L.latLng(40.52256691873593, -3.7743186950683594); +var topright = L.latLng(40.5210255066156, -3.7734764814376835); +var bottomleft = L.latLng(40.52180437272552, -3.7768453359603886); + +var overlay = L.imageOverlay.rotated("image.jpg", topleft, topright, bottomleft, { + opacity: 0.5, + interactive: true +}); + +overlay.reposition(topleft, topright, bottomleft); diff --git a/leaflet-imageoverlay-rotated/tsconfig.json b/leaflet-imageoverlay-rotated/tsconfig.json new file mode 100644 index 0000000000..4a9d4d5049 --- /dev/null +++ b/leaflet-imageoverlay-rotated/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "leaflet-imageoverlay-rotated-tests.ts" + ] +} diff --git a/leaflet-imageoverlay-rotated/tslint.json b/leaflet-imageoverlay-rotated/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/leaflet-imageoverlay-rotated/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From e7a3df03657d971b133f4424fea1f98abf64ef6d Mon Sep 17 00:00:00 2001 From: Jeff Kenney Date: Wed, 25 Jan 2017 09:42:31 -0800 Subject: [PATCH 019/231] knex: reference correct Promise implementation --- knex/index.d.ts | 1 + knex/knex-tests.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/knex/index.d.ts b/knex/index.d.ts index 55ef48a05e..910bab9d04 100644 --- a/knex/index.d.ts +++ b/knex/index.d.ts @@ -7,6 +7,7 @@ /// import * as events from "events"; +import * as Promise from "bluebird"; type Callback = Function; type Client = Function; diff --git a/knex/knex-tests.ts b/knex/knex-tests.ts index 8fd9cc971c..8c1878760b 100644 --- a/knex/knex-tests.ts +++ b/knex/knex-tests.ts @@ -1,5 +1,6 @@ "use strict"; import * as Knex from 'knex'; +import * as Promise from 'bluebird'; import * as _ from 'lodash'; // Initializing the Library From ac045ed202c7aa439f6d5d6390df65d54b47e5d3 Mon Sep 17 00:00:00 2001 From: Jeff Kenney Date: Wed, 25 Jan 2017 11:58:55 -0800 Subject: [PATCH 020/231] knex: use import = require() syntax --- knex/index.d.ts | 4 ++-- knex/knex-tests.ts | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/knex/index.d.ts b/knex/index.d.ts index 910bab9d04..5196f47eb0 100644 --- a/knex/index.d.ts +++ b/knex/index.d.ts @@ -6,8 +6,8 @@ /// /// -import * as events from "events"; -import * as Promise from "bluebird"; +import events = require("events"); +import Promise = require("bluebird"); type Callback = Function; type Client = Function; diff --git a/knex/knex-tests.ts b/knex/knex-tests.ts index 8c1878760b..420aafd724 100644 --- a/knex/knex-tests.ts +++ b/knex/knex-tests.ts @@ -1,7 +1,7 @@ "use strict"; -import * as Knex from 'knex'; -import * as Promise from 'bluebird'; -import * as _ from 'lodash'; +import Knex = require('knex'); +import Promise = require('bluebird'); +import _ = require('lodash'); // Initializing the Library var knex = Knex({ From b03ba927367d575e78b8ee3cff90a405d877cd31 Mon Sep 17 00:00:00 2001 From: Justin Bay Date: Wed, 25 Jan 2017 19:39:56 -0500 Subject: [PATCH 021/231] Enzyme: Restore strongly typed props for classes Add Pick typings for setState/setProps Fix Cheerio wrapper to reference Cheerio typings, clean up ReactWrapper Remove deprecated APIs Add tslint and fix errors Normalize React+Shallow wrapper tests and add some missing overload tests --- chai-enzyme/index.d.ts | 5 +- enzyme/enzyme-tests.tsx | 433 +++++++++++----------------------------- enzyme/index.d.ts | 209 +++++++------------ enzyme/tslint.json | 3 + 4 files changed, 189 insertions(+), 461 deletions(-) create mode 100644 enzyme/tslint.json diff --git a/chai-enzyme/index.d.ts b/chai-enzyme/index.d.ts index 23e9058ef6..6997abd5fe 100644 --- a/chai-enzyme/index.d.ts +++ b/chai-enzyme/index.d.ts @@ -8,6 +8,7 @@ /// /// /// +/// declare namespace Chai { type EnzymeSelector = string | React.StatelessComponent | React.ComponentClass | { [key: string]: any }; @@ -143,9 +144,9 @@ declare namespace Chai { } declare module "chai-enzyme" { - import { ShallowWrapper, ReactWrapper, CheerioWrapper } from "enzyme"; + import { ShallowWrapper, ReactWrapper } from "enzyme"; - type DebugWrapper = ShallowWrapper | CheerioWrapper | ReactWrapper; + type DebugWrapper = ShallowWrapper | Cheerio | ReactWrapper; function chaiEnzyMe(wrapper?: (debugWrapper: DebugWrapper) => string): (chai: any) => void; module chaiEnzyMe { diff --git a/enzyme/enzyme-tests.tsx b/enzyme/enzyme-tests.tsx index 035f0dfcd7..120365eab4 100644 --- a/enzyme/enzyme-tests.tsx +++ b/enzyme/enzyme-tests.tsx @@ -1,48 +1,44 @@ -import { shallow, mount, render, describeWithDOM, spyLifecycle } from "enzyme"; import * as React from "react"; -import {Component, ReactElement, HTMLAttributes} from "react"; -import {ShallowWrapper, ReactWrapper, CheerioWrapper} from "enzyme"; +import {shallow, mount, render, ShallowWrapper, ReactWrapper} from "enzyme"; +import {Component, ReactElement, HTMLAttributes, ComponentClass, StatelessComponent} from "react"; // Help classes/interfaces interface MyComponentProps { - propsProperty: any; + stringProp: string; numberProp?: number; } interface StatelessProps { - stateless: any; + stateless: string; } interface MyComponentState { - stateProperty: any; + stateProperty: string; } class MyComponent extends Component { setState(...args: any[]) { + console.log(args); } } const MyStatelessComponent = (props: StatelessProps) => ; -// API -namespace SpyLifecycleTest { - spyLifecycle(MyComponent); -} - // ShallowWrapper namespace ShallowWrapperTest { var shallowWrapper: ShallowWrapper = - shallow(); + shallow(); var reactElement: ReactElement, - objectVal: Object, - boolVal: Boolean, - stringVal: String, + objectVal: {}, + boolVal: boolean, + stringVal: string, numOrStringVal: number | string, - elementWrapper: ShallowWrapper, {}> + elementWrapper: ShallowWrapper, {}>, + statelessWrapper: ShallowWrapper; function test_shallow_options() { - shallow(, { + shallow(, { context: { test: "a", }, @@ -51,11 +47,10 @@ namespace ShallowWrapperTest { } function test_find() { - elementWrapper = shallowWrapper.find('.selector'); shallowWrapper = shallowWrapper.find(MyComponent); - shallowWrapper.find(MyStatelessComponent).props().stateless; - shallowWrapper.find(MyStatelessComponent).shallow(); - shallowWrapper.find({ prop: 'value' }); + statelessWrapper = shallowWrapper.find(MyStatelessComponent); + shallowWrapper = shallowWrapper.find({ prop: 'value' }); + elementWrapper = shallowWrapper.find('.selector'); } function test_findWhere() { @@ -64,15 +59,16 @@ namespace ShallowWrapperTest { } function test_filter() { + shallowWrapper = shallowWrapper.filter(MyComponent); + statelessWrapper = shallowWrapper.filter(MyStatelessComponent); + shallowWrapper = shallowWrapper.filter({ prop: 'value' }); elementWrapper = shallowWrapper.filter('.selector'); - shallowWrapper = shallowWrapper.filter(MyComponent).shallow(); - shallowWrapper.filter({ prop: 'val' }); } function test_filterWhere() { shallowWrapper = shallowWrapper.filterWhere(wrapper => { - wrapper.props().propsProperty; + wrapper.props().stringProp; return true; }); } @@ -95,11 +91,11 @@ namespace ShallowWrapperTest { function test_dive() { interface TmpProps { - foo: any + foo: any; } interface TmpState { - bar: any + bar: any; } const diveWrapper: ShallowWrapper = shallowWrapper.dive({ context: { foobar: 'barfoo' }}); @@ -122,11 +118,11 @@ namespace ShallowWrapperTest { } function test_isEmpty() { - boolVal = shallowWrapper.isEmpty() + boolVal = shallowWrapper.isEmpty(); } function test_exists() { - boolVal = shallowWrapper.exists() + boolVal = shallowWrapper.exists(); } function test_not() { @@ -135,19 +131,21 @@ namespace ShallowWrapperTest { function test_children() { shallowWrapper = shallowWrapper.children(); - shallowWrapper.children(MyStatelessComponent).props().stateless; - shallowWrapper.children({ prop: 'myprop' }); + shallowWrapper = shallowWrapper.children(MyComponent); + statelessWrapper = shallowWrapper.children(MyStatelessComponent); + shallowWrapper = shallowWrapper.children({ prop: 'value' }); + elementWrapper = shallowWrapper.children('.selector'); } function test_childAt() { const childWrapper: ShallowWrapper = shallowWrapper.childAt(0); interface TmpType1 { - foo: any + foo: any; } interface TmpType2 { - bar: any + bar: any; } const childWrapper2: ShallowWrapper = shallowWrapper.childAt(0); @@ -155,6 +153,10 @@ namespace ShallowWrapperTest { function test_parents() { shallowWrapper = shallowWrapper.parents(); + shallowWrapper = shallowWrapper.parents(MyComponent); + statelessWrapper = shallowWrapper.parents(MyStatelessComponent); + shallowWrapper = shallowWrapper.parents({ prop: 'myprop' }); + elementWrapper = shallowWrapper.parents('.selector'); } function test_parent() { @@ -162,9 +164,10 @@ namespace ShallowWrapperTest { } function test_closest() { - elementWrapper = shallowWrapper.closest('.selector'); shallowWrapper = shallowWrapper.closest(MyComponent); + statelessWrapper = shallowWrapper.closest(MyStatelessComponent); shallowWrapper = shallowWrapper.closest({ prop: 'myprop' }); + elementWrapper = shallowWrapper.closest('.selector'); } function test_shallow() { @@ -175,15 +178,10 @@ namespace ShallowWrapperTest { shallowWrapper = shallowWrapper.unmount(); } - function test_render() { - var cheerioWrapper: CheerioWrapper = shallowWrapper.render(); - } - function test_text() { stringVal = shallowWrapper.text(); } - function test_html() { stringVal = shallowWrapper.html(); } @@ -206,23 +204,28 @@ namespace ShallowWrapperTest { function test_state() { const state: MyComponentState = shallowWrapper.state(); - shallowWrapper.state('key'); - const tmp: String = shallowWrapper.state('key'); + const prop: string = shallowWrapper.state('stateProperty'); + const prop2: number = shallowWrapper.state('key'); + const prop3 = shallowWrapper.state('key'); } function test_context() { shallowWrapper.context(); shallowWrapper.context('key'); - const tmp: String = shallowWrapper.context('key'); + const tmp: string = shallowWrapper.context('key'); } function test_props() { - objectVal = shallowWrapper.props(); + const props: MyComponentProps = shallowWrapper.props(); + const props2: MyComponentProps = shallowWrapper.find(MyComponent).props(); + const props3: StatelessProps = shallowWrapper.find(MyStatelessComponent).props(); + const props4: HTMLAttributes = shallowWrapper.find('.selector').props(); } function test_prop() { - shallowWrapper.prop('key'); - const tmp: String = shallowWrapper.prop('key'); + const tmp: number = shallowWrapper.prop('numberProp'); + const tmp2: string = shallowWrapper.prop('key'); + const tmp3 = shallowWrapper.prop('key'); } function test_key() { @@ -239,7 +242,7 @@ namespace ShallowWrapperTest { } function test_setProps() { - shallowWrapper = shallowWrapper.setProps({ propsProperty: 'foo' }, () => console.log('props updated')); + shallowWrapper = shallowWrapper.setProps({ stringProp: 'foo' }); } function test_setContext() { @@ -259,20 +262,20 @@ namespace ShallowWrapperTest { } function test_type() { - var stringOrFunction: String | Function = shallowWrapper.type(); + const type: string | StatelessComponent | ComponentClass = shallowWrapper.type(); } function test_name() { - var str: String = shallowWrapper.name(); + stringVal = shallowWrapper.name(); } function test_forEach() { shallowWrapper = - shallowWrapper.forEach(wrapper => wrapper.shallow().props().propsProperty); + shallowWrapper.forEach(wrapper => wrapper.shallow().props().stringProp); } function test_map() { - var arrayNumbers: Array = + var arrayNumbers: number[] = shallowWrapper.map(wrapper => wrapper.props().numberProp); } @@ -286,13 +289,15 @@ namespace ShallowWrapperTest { function test_reduceRight() { const total: number = shallowWrapper.reduceRight( - (amount: number, n: ShallowWrapper) => amount + n.prop('amount') + (amount: number, n: ShallowWrapper) => amount + n.prop('numberProp') ); } function test_some() { - boolVal = shallowWrapper.some('.selector'); boolVal = shallowWrapper.some(MyComponent); + boolVal = shallowWrapper.some(MyStatelessComponent); + boolVal = shallowWrapper.some({ prop: 'myprop' }); + boolVal = shallowWrapper.some('.selector'); } function test_someWhere() { @@ -300,8 +305,10 @@ namespace ShallowWrapperTest { } function test_every() { - boolVal = shallowWrapper.every('.selector'); boolVal = shallowWrapper.every(MyComponent); + boolVal = shallowWrapper.every(MyStatelessComponent); + boolVal = shallowWrapper.every({ prop: 'myprop' }); + boolVal = shallowWrapper.every('.selector'); } function test_everyWhere() { @@ -321,13 +328,14 @@ namespace ShallowWrapperTest { // ReactWrapper namespace ReactWrapperTest { var reactWrapper: ReactWrapper = - mount(); + mount(); var reactElement: ReactElement, - objectVal: Object, - boolVal: Boolean, - stringVal: String, - elementWrapper: ReactWrapper, {}> + objectVal: {}, + boolVal: boolean, + stringVal: string, + elementWrapper: ReactWrapper, {}>, + statelessWrapper: ReactWrapper; function test_unmount() { reactWrapper = reactWrapper.unmount(); @@ -336,7 +344,7 @@ namespace ReactWrapperTest { function test_mount() { reactWrapper = reactWrapper.mount(); - mount(, { + mount(, { attachTo: document.getElementById('test'), context: { a: "b" @@ -348,11 +356,11 @@ namespace ReactWrapperTest { reactWrapper = reactWrapper.ref('refName'); interface TmpType1 { - foo: string + foo: string; } interface TmpType2 { - bar: string + bar: string; } const tmp: ReactWrapper = reactWrapper.ref('refName'); @@ -365,8 +373,8 @@ namespace ReactWrapperTest { function test_find() { elementWrapper = reactWrapper.find('.selector'); reactWrapper = reactWrapper.find(MyComponent); - reactWrapper.find(MyStatelessComponent).props().stateless; - reactWrapper.find({ prop: 'myprop' }); + statelessWrapper = reactWrapper.find(MyStatelessComponent); + reactWrapper = reactWrapper.find({ prop: 'myprop' }); } function test_findWhere() { @@ -375,15 +383,16 @@ namespace ReactWrapperTest { } function test_filter() { - elementWrapper = reactWrapper.filter('.selector'); reactWrapper = reactWrapper.filter(MyComponent); + statelessWrapper = reactWrapper.filter(MyStatelessComponent); reactWrapper = reactWrapper.filter({ prop: 'myprop' }); + elementWrapper = reactWrapper.filter('.selector'); } function test_filterWhere() { reactWrapper = reactWrapper.filterWhere(wrapper => { - wrapper.props().propsProperty; + wrapper.props().stringProp; return true; }); } @@ -421,7 +430,7 @@ namespace ReactWrapperTest { } function test_isEmpty() { - boolVal = reactWrapper.isEmpty() + boolVal = reactWrapper.isEmpty(); } function test_not() { @@ -430,17 +439,21 @@ namespace ReactWrapperTest { function test_children() { reactWrapper = reactWrapper.children(); + reactWrapper = reactWrapper.children(MyComponent); + statelessWrapper = reactWrapper.children(MyStatelessComponent); + reactWrapper = reactWrapper.children({ prop: 'myprop' }); + elementWrapper = reactWrapper.children('.selector'); } function test_childAt() { const childWrapper: ReactWrapper = reactWrapper.childAt(0); interface TmpType1 { - foo: any + foo: any; } interface TmpType2 { - bar: any + bar: any; } const childWrapper2: ReactWrapper = reactWrapper.childAt(0); @@ -448,6 +461,10 @@ namespace ReactWrapperTest { function test_parents() { reactWrapper = reactWrapper.parents(); + reactWrapper = reactWrapper.parents(MyComponent); + statelessWrapper = reactWrapper.parents(MyStatelessComponent); + reactWrapper = reactWrapper.parents({ prop: 'myprop' }); + elementWrapper = reactWrapper.parents('.selector'); } function test_parent() { @@ -455,9 +472,10 @@ namespace ReactWrapperTest { } function test_closest() { - elementWrapper = reactWrapper.closest('.selector'); reactWrapper = reactWrapper.closest(MyComponent); + statelessWrapper = reactWrapper.closest(MyStatelessComponent); reactWrapper = reactWrapper.closest({ prop: 'myprop' }); + elementWrapper = reactWrapper.closest('.selector'); } function test_text() { @@ -485,24 +503,29 @@ namespace ReactWrapperTest { } function test_state() { - reactWrapper.state(); - reactWrapper.state('key'); - const tmp: String = reactWrapper.state('key'); + const state: MyComponentState = reactWrapper.state(); + const prop: string = reactWrapper.state('stateProperty'); + const prop2: number = reactWrapper.state('key'); + const prop3 = reactWrapper.state('key'); } function test_context() { reactWrapper.context(); reactWrapper.context('key'); - const tmp: String = reactWrapper.context('key'); + const tmp: string = reactWrapper.context('key'); } function test_props() { - objectVal = reactWrapper.props(); + const props: MyComponentProps = reactWrapper.props(); + const props2: MyComponentProps = reactWrapper.find(MyComponent).props(); + const props3: StatelessProps = reactWrapper.find(MyStatelessComponent).props(); + const props4: HTMLAttributes = reactWrapper.find('.selector').props(); } function test_prop() { - reactWrapper.prop('key'); - const tmp: String = reactWrapper.prop('key'); + const tmp: number = reactWrapper.prop('numberProp'); + const tmp2: string = reactWrapper.prop('key'); + const tmp3 = reactWrapper.prop('key'); } function test_key() { @@ -519,7 +542,7 @@ namespace ReactWrapperTest { } function test_setProps() { - reactWrapper = reactWrapper.setProps({ propsProperty: 'foo' }); + reactWrapper = reactWrapper.setProps({ stringProp: 'foo' }); } function test_setContext() { @@ -539,40 +562,42 @@ namespace ReactWrapperTest { } function test_type() { - var stringOrFunction: String | Function = reactWrapper.type(); + const type: string | StatelessComponent | ComponentClass = reactWrapper.type(); } function test_name() { - var str: String = reactWrapper.name(); + stringVal = reactWrapper.name(); } function test_forEach() { reactWrapper = - reactWrapper.forEach(wrapper => wrapper.props().propsProperty); + reactWrapper.forEach(wrapper => wrapper.props().stringProp); } function test_map() { - var arrayNumbers: Array = + var arrayNumbers: number[] = reactWrapper.map(wrapper => wrapper.props().numberProp); } function test_reduce() { const total: number = reactWrapper.reduce( - (amount: number, n: ReactWrapper) => amount + n.prop('amount') + (amount: number, n: ReactWrapper) => amount + n.prop('numberProp') ); } function test_reduceRight() { const total: number = reactWrapper.reduceRight( - (amount: number, n: ReactWrapper) => amount + n.prop('amount') + (amount: number, n: ReactWrapper) => amount + n.prop('numberProp') ); } function test_some() { - boolVal = reactWrapper.some('.selector'); boolVal = reactWrapper.some(MyComponent); + boolVal = reactWrapper.some(MyStatelessComponent); + boolVal = reactWrapper.some({ prop: 'myprop' }); + boolVal = reactWrapper.some('.selector'); } function test_someWhere() { @@ -580,8 +605,10 @@ namespace ReactWrapperTest { } function test_every() { - boolVal = reactWrapper.every('.selector'); boolVal = reactWrapper.every(MyComponent); + boolVal = reactWrapper.every(MyStatelessComponent); + boolVal = reactWrapper.every({ prop: 'myprop' }); + boolVal = reactWrapper.every('.selector'); } function test_everyWhere() { @@ -594,239 +621,9 @@ namespace ReactWrapperTest { // CheerioWrapper namespace CheerioWrapperTest { - var cheerioWrapper: CheerioWrapper = - render(); + const wrapper: Cheerio = + shallow(
).render() || + mount(
).render(); - var reactElement: ReactElement, - objectVal: Object, - boolVal: Boolean, - stringVal: String, - elementWrapper: CheerioWrapper, {}> - - function test_find() { - elementWrapper = cheerioWrapper.find('.selector'); - cheerioWrapper = cheerioWrapper.find(MyComponent); - cheerioWrapper.find(MyStatelessComponent).props().stateless; - cheerioWrapper.find({ prop: 'myprop' }); - } - - function test_findWhere() { - cheerioWrapper = - cheerioWrapper.findWhere((aCheerioWrapper: CheerioWrapper) => true); - } - - function test_filter() { - elementWrapper = cheerioWrapper.filter('.selector'); - cheerioWrapper = cheerioWrapper.filter(MyComponent); - cheerioWrapper = cheerioWrapper.filter({ prop: 'myprop' }); - } - - function test_filterWhere() { - cheerioWrapper = - cheerioWrapper.filterWhere(wrapper => { - wrapper.props().propsProperty; - return true; - }); - } - - function test_contains() { - boolVal = cheerioWrapper.contains(
); - } - - function test_containsMatchingElement() { - boolVal = cheerioWrapper.contains(
); - } - - function test_containsAllMatchingElements() { - boolVal = cheerioWrapper.containsAllMatchingElements([
]); - } - - function test_containsAnyMatchingElement() { - boolVal = cheerioWrapper.containsAnyMatchingElements([
]); - } - - function test_equals() { - boolVal = cheerioWrapper.equals(
); - } - - function test_matchesElement() { - boolVal = cheerioWrapper.matchesElement(
); - } - - function test_hasClass() { - boolVal = cheerioWrapper.find('.my-button').hasClass('disabled'); - } - - function test_is() { - boolVal = cheerioWrapper.is('.some-class'); - } - - function test_isEmpty() { - boolVal = cheerioWrapper.isEmpty() - } - - function test_not() { - elementWrapper = cheerioWrapper.find('.foo').not('.bar'); - } - - function test_children() { - cheerioWrapper = cheerioWrapper.children(); - } - - function test_childAt() { - const childWrapper: CheerioWrapper = cheerioWrapper.childAt(0); - - interface TmpType1 { - foo: any - } - - interface TmpType2 { - bar: any - } - - const childWrapper2: CheerioWrapper = cheerioWrapper.childAt(0); - } - - function test_parents() { - cheerioWrapper = cheerioWrapper.parents(); - } - - function test_parent() { - cheerioWrapper = cheerioWrapper.parent(); - } - - function test_closest() { - elementWrapper = cheerioWrapper.closest('.selector'); - cheerioWrapper = cheerioWrapper.closest(MyComponent); - cheerioWrapper = cheerioWrapper.closest({ prop: 'myprop' }); - } - - function test_text() { - stringVal = cheerioWrapper.text(); - } - - function test_html() { - stringVal = cheerioWrapper.html(); - } - - function test_get() { - reactElement = cheerioWrapper.get(1); - } - - function test_at() { - cheerioWrapper = cheerioWrapper.at(1); - } - - function test_first() { - cheerioWrapper = cheerioWrapper.first(); - } - - function test_last() { - cheerioWrapper = cheerioWrapper.last(); - } - - function test_state() { - cheerioWrapper.state(); - cheerioWrapper.state('key'); - const tmp: String = cheerioWrapper.state('key'); - } - - function test_context() { - cheerioWrapper.context(); - cheerioWrapper.context('key'); - const tmp: String = cheerioWrapper.context('key'); - } - - function test_props() { - objectVal = cheerioWrapper.props(); - } - - function test_prop() { - cheerioWrapper.prop('key'); - const tmp: String = cheerioWrapper.prop('key'); - } - - function test_key() { - stringVal = cheerioWrapper.key(); - } - - function test_simulate(...args: any[]) { - cheerioWrapper.simulate('click'); - cheerioWrapper.simulate('click', args); - } - - function test_setState() { - cheerioWrapper = cheerioWrapper.setState({ stateProperty: 'state' }); - } - - function test_setProps() { - cheerioWrapper = cheerioWrapper.setProps({ propsProperty: 'foo' }); - } - - function test_setContext() { - cheerioWrapper = cheerioWrapper.setContext({ name: 'baz' }); - } - - function test_instance() { - var myComponent: MyComponent = cheerioWrapper.instance(); - } - - function test_update() { - cheerioWrapper = cheerioWrapper.update(); - } - - function test_debug() { - stringVal = cheerioWrapper.debug(); - } - - function test_type() { - var stringOrFunction: String | Function = cheerioWrapper.type(); - } - - function test_name() { - var str: String = cheerioWrapper.name(); - } - - function test_forEach() { - cheerioWrapper = - cheerioWrapper.forEach((aCheerioWrapper: CheerioWrapper) => { - }); - } - - function test_map() { - var arrayNumbers: Array = - cheerioWrapper.map(wrapper => wrapper.props().numberProp); - } - - function test_reduce() { - const total: number = - cheerioWrapper.reduce( - (amount: number, n: CheerioWrapper) => amount + n.prop('amount') - ); - } - - function test_reduceRight() { - const total: number = - cheerioWrapper.reduceRight( - (amount: number, n: CheerioWrapper) => amount + n.prop('amount') - ); - } - - function test_some() { - boolVal = cheerioWrapper.some('.selector'); - boolVal = cheerioWrapper.some(MyComponent); - } - - function test_someWhere() { - boolVal = cheerioWrapper.someWhere((aCheerioWrapper: CheerioWrapper) => true); - } - - function test_every() { - boolVal = cheerioWrapper.every('.selector'); - boolVal = cheerioWrapper.every(MyComponent); - } - - function test_everyWhere() { - boolVal = cheerioWrapper.everyWhere((aCheerioWrapper: CheerioWrapper) => true); - } + wrapper.toggleClass('className'); } diff --git a/enzyme/index.d.ts b/enzyme/index.d.ts index 5502b0eb85..7559985e21 100644 --- a/enzyme/index.d.ts +++ b/enzyme/index.d.ts @@ -1,16 +1,27 @@ -// Type definitions for Enzyme v2.7.0 +// Type definitions for Enzyme 2.7 // Project: https://github.com/airbnb/enzyme -// Definitions by: Marian Palkus , Cap3 , Ivo Stratev , Tom Crockett +// Definitions by: Marian Palkus , Cap3 , Ivo Stratev , Tom Crockett , jwbay // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.1 -import { ReactElement, Component, StatelessComponent, ComponentClass, HTMLAttributes as ReactHTMLAttributes, SVGAttributes as ReactSVGAttributes } from "react"; +/// +import { ReactElement, Component, HTMLAttributes as ReactHTMLAttributes, SVGAttributes as ReactSVGAttributes } from "react"; type HTMLAttributes = ReactHTMLAttributes<{}> & ReactSVGAttributes<{}>; export class ElementClass extends Component { } +/* These are purposefully stripped down versions of React.ComponentClass and React.StatelessComponent. + * The optional static properties on them break overload ordering for wrapper methods if they're not + * all specified in the implementation. TS chooses the EnzymePropSelector overload and loses the generics + */ +interface ComponentClass { + new(props?: Props, context?: any): Component; +} + +type StatelessComponent = (props: Props, context?: any) => JSX.Element; + /** * Many methods in Enzyme's API accept a selector as an argument. Selectors in Enzyme can fall into one of the * following three categories: @@ -21,34 +32,12 @@ export class ElementClass extends Component { * 4. A React Stateless component * 5. A React component property map */ -export type EnzymeSelector = string | StatelessComponent | ComponentClass | { [key: string]: any }; -export type EnzymePropSelector = { [key: string]: any }; +export interface EnzymePropSelector { + [key: string]: any; +} +export type EnzymeSelector = string | StatelessComponent | ComponentClass | EnzymePropSelector; interface CommonWrapper { - /** - * Find every node in the render tree that matches the provided selector. - * @param selector The selector to match. - */ - find(component: ComponentClass): CommonWrapper; - find(statelessComponent: StatelessComponent): CommonWrapper; - find(props: EnzymePropSelector): CommonWrapper; - find(selector: string): CommonWrapper; - - /** - * Finds every node in the render tree that returns true for the provided predicate function. - * @param predicate - */ - findWhere(predicate: (wrapper: CommonWrapper) => boolean): CommonWrapper; - - /** - * Removes nodes in the current wrapper that do not match the provided selector. - * @param selector The selector to match. - */ - filter(component: ComponentClass): CommonWrapper; - filter(statelessComponent: StatelessComponent): CommonWrapper; - filter(props: EnzymePropSelector): CommonWrapper; - filter(selector: string): CommonWrapper; - /** * Returns a new wrapper with only the nodes of the current wrapper that, when passed into the provided predicate function, return true. * @param predicate @@ -71,13 +60,13 @@ interface CommonWrapper { * Returns whether or not all the given react elements exists in the shallow render tree * @param nodes */ - containsAllMatchingElements(nodes: ReactElement[]): boolean; + containsAllMatchingElements(nodes: Array>): boolean; /** * Returns whether or not one of the given react elements exists in the shallow render tree. * @param nodes */ - containsAnyMatchingElements(nodes: ReactElement[]): boolean; + containsAnyMatchingElements(nodes: Array>): boolean; /** * Returns whether or not the current render tree is equal to the given node, based on the expected value. @@ -118,54 +107,6 @@ interface CommonWrapper { */ not(selector: EnzymeSelector): this; - /** - * Returns a new wrapper with all of the children of the node(s) in the current wrapper. Optionally, a selector - * can be provided and it will filter the children by this selector. - * @param [selector] - */ - children(component: ComponentClass): CommonWrapper; - children(statelessComponent: StatelessComponent): CommonWrapper; - children(props: EnzymePropSelector): CommonWrapper; - children(selector: string): CommonWrapper; - children(): CommonWrapper; - - /** - * Returns a new wrapper with child at the specified index. - * @param index - */ - childAt(index: number): CommonWrapper; - childAt(index: number): CommonWrapper; - - /** - * Returns a wrapper around all of the parents/ancestors of the wrapper. Does not include the node in the - * current wrapper. Optionally, a selector can be provided and it will filter the parents by this selector. - * - * Note: can only be called on a wrapper of a single node. - * @param [selector] - */ - parents(component: ComponentClass): CommonWrapper; - parents(statelessComponent: StatelessComponent): CommonWrapper; - parents(props: EnzymePropSelector): CommonWrapper; - parents(selector: string): CommonWrapper; - parents(): CommonWrapper; - - /** - * Returns a wrapper with the direct parent of the node in the current wrapper. - */ - parent(): CommonWrapper; - - /** - * Returns a wrapper of the first element that matches the selector by traversing up through the current node's - * ancestors in the tree, starting with itself. - * - * Note: can only be called on a wrapper of a single node. - * @param selector - */ - closest(component: ComponentClass): CommonWrapper; - closest(statelessComponent: StatelessComponent): CommonWrapper; - closest(props: EnzymePropSelector): CommonWrapper; - closest(selector: string): CommonWrapper; - /** * Returns a string of the rendered text of the current render tree. This function should be looked at with * skepticism if being used to test what the actual HTML output of the component will be. If that is what you @@ -209,14 +150,14 @@ interface CommonWrapper { * @param [key] */ state(): S; - state(key: string): any; + state(key: K): S[K]; state(key: string): T; /** * Returns the context hash for the root node of the wrapper. Optionally pass in a prop name and it will return just that value. */ - context(key?: string): any; - context(key?: string): T; + context(): any; + context(key: string): T; /** * Returns the props hash for the current node of the wrapper. @@ -231,7 +172,7 @@ interface CommonWrapper { * NOTE: can only be called on a wrapper of a single node. * @param key */ - prop(key: string): any; + prop(key: K): P[K]; prop(key: string): T; /** @@ -260,7 +201,7 @@ interface CommonWrapper { * @param state * @param [callback] */ - setState(state: S, callback?: () => void): this; + setState(state: Pick, callback?: () => void): this; /** * A method that sets the props of the root component, and re-renders. Useful for when you are wanting to test @@ -274,7 +215,7 @@ interface CommonWrapper { * @param props * @param [callback] */ - setProps(props: P, callback?: () => void): this; + setProps(props: Pick): this; /** * A method that sets the context of the root component, and re-renders. Useful for when you are wanting to @@ -284,7 +225,7 @@ interface CommonWrapper { * NOTE: can only be called on a wrapper instance that is also the root instance. * @param state */ - setContext(context: Object): this; + setContext(context: any): this; /** * Gets the instance of the component being rendered as the root node passed into shallow(). @@ -308,14 +249,6 @@ interface CommonWrapper { */ debug(): string; - /** - * Returns the type of the current node of this wrapper. If it's a composite component, this will be the - * component constructor. If it's native DOM node, it will be a string of the tag name. - * - * Note: can only be called on a wrapper of a single node. - */ - type(): string | Function; - /** * Returns the name of the current node of the wrapper. */ @@ -381,12 +314,29 @@ interface CommonWrapper { */ everyWhere(fn: (wrapper: this) => boolean): boolean; + /** + * Returns true if renderer returned null + */ + isEmptyRender(): boolean; + + /** + * Renders the component to static markup and returns a Cheerio wrapper around the result. + */ + render(): Cheerio; + + /** + * Returns the type of the current node of this wrapper. If it's a composite component, this will be the + * component constructor. If it's native DOM node, it will be a string of the tag name. + * + * Note: can only be called on a wrapper of a single node. + */ + type(): string | ComponentClass

| StatelessComponent

; + length: number; } export interface ShallowWrapper extends CommonWrapper { shallow(): ShallowWrapper; - render(): CheerioWrapper; unmount(): ShallowWrapper; /** @@ -394,7 +344,7 @@ export interface ShallowWrapper extends CommonWrapper { * @param selector The selector to match. */ find(component: ComponentClass): ShallowWrapper; - find(statelessComponent: (props: P2) => JSX.Element): ShallowWrapper; + find(statelessComponent: StatelessComponent): ShallowWrapper; find(props: EnzymePropSelector): ShallowWrapper; find(selector: string): ShallowWrapper; @@ -403,7 +353,7 @@ export interface ShallowWrapper extends CommonWrapper { * @param selector The selector to match. */ filter(component: ComponentClass): ShallowWrapper; - filter(statelessComponent: StatelessComponent): ShallowWrapper; + filter(statelessComponent: StatelessComponent): ShallowWrapper; filter(props: EnzymePropSelector): ShallowWrapper; filter(selector: string): ShallowWrapper; @@ -411,7 +361,7 @@ export interface ShallowWrapper extends CommonWrapper { * Finds every node in the render tree that returns true for the provided predicate function. * @param predicate */ - findWhere(predicate: (wrapper: CommonWrapper) => boolean): ShallowWrapper; + findWhere(predicate: (wrapper: ShallowWrapper) => boolean): ShallowWrapper; /** * Returns a new wrapper with all of the children of the node(s) in the current wrapper. Optionally, a selector @@ -419,10 +369,9 @@ export interface ShallowWrapper extends CommonWrapper { * @param [selector] */ children(component: ComponentClass): ShallowWrapper; - children(statelessComponent: StatelessComponent): ShallowWrapper; - children(props: EnzymePropSelector): ShallowWrapper; + children(statelessComponent: StatelessComponent): ShallowWrapper; children(selector: string): ShallowWrapper; - children(): ShallowWrapper; + children(props?: EnzymePropSelector): ShallowWrapper; /** * Returns a new wrapper with child at the specified index. @@ -432,13 +381,13 @@ export interface ShallowWrapper extends CommonWrapper { childAt(index: number): ShallowWrapper; /** - * Shallow render the one non-DOM child of the current wrapper, and return a wrapper around the result. - * NOTE: can only be called on wrapper of a single non-DOM component element node. - * @param [options] - */ - dive(options?: ShallowRendererProps): ShallowWrapper; + * Shallow render the one non-DOM child of the current wrapper, and return a wrapper around the result. + * NOTE: can only be called on wrapper of a single non-DOM component element node. + * @param [options] + */ + dive(options?: ShallowRendererProps): ShallowWrapper; - /** + /** * Returns a wrapper around all of the parents/ancestors of the wrapper. Does not include the node in the * current wrapper. Optionally, a selector can be provided and it will filter the parents by this selector. * @@ -446,10 +395,9 @@ export interface ShallowWrapper extends CommonWrapper { * @param [selector] */ parents(component: ComponentClass): ShallowWrapper; - parents(statelessComponent: StatelessComponent): ShallowWrapper; - parents(props: EnzymePropSelector): ShallowWrapper; + parents(statelessComponent: StatelessComponent): ShallowWrapper; parents(selector: string): ShallowWrapper; - parents(): ShallowWrapper; + parents(props?: EnzymePropSelector): ShallowWrapper; /** * Returns a wrapper of the first element that matches the selector by traversing up through the current node's @@ -459,7 +407,7 @@ export interface ShallowWrapper extends CommonWrapper { * @param selector */ closest(component: ComponentClass): ShallowWrapper; - closest(statelessComponent: StatelessComponent): ShallowWrapper; + closest(statelessComponent: StatelessComponent): ShallowWrapper; closest(props: EnzymePropSelector): ShallowWrapper; closest(selector: string): ShallowWrapper; @@ -467,17 +415,11 @@ export interface ShallowWrapper extends CommonWrapper { * Returns a wrapper with the direct parent of the node in the current wrapper. */ parent(): ShallowWrapper; - - /** - * Returns true if renderer returned null - */ - isEmptyRender(): boolean; } export interface ReactWrapper extends CommonWrapper { unmount(): ReactWrapper; mount(): ReactWrapper; - render(): CheerioWrapper; /** * Returns a wrapper of the node that matches the provided reference name. @@ -503,7 +445,7 @@ export interface ReactWrapper extends CommonWrapper { * @param selector The selector to match. */ find(component: ComponentClass): ReactWrapper; - find(statelessComponent: (props: P2) => JSX.Element): ReactWrapper; + find(statelessComponent: StatelessComponent): ReactWrapper; find(props: EnzymePropSelector): ReactWrapper; find(selector: string): ReactWrapper; @@ -511,14 +453,14 @@ export interface ReactWrapper extends CommonWrapper { * Finds every node in the render tree that returns true for the provided predicate function. * @param predicate */ - findWhere(predicate: (wrapper: CommonWrapper) => boolean): ReactWrapper; + findWhere(predicate: (wrapper: ReactWrapper) => boolean): ReactWrapper; /** * Removes nodes in the current wrapper that do not match the provided selector. * @param selector The selector to match. */ filter(component: ComponentClass): ReactWrapper; - filter(statelessComponent: StatelessComponent): ReactWrapper; + filter(statelessComponent: StatelessComponent): ReactWrapper; filter(props: EnzymePropSelector): ReactWrapper; filter(selector: string): ReactWrapper; @@ -528,10 +470,9 @@ export interface ReactWrapper extends CommonWrapper { * @param [selector] */ children(component: ComponentClass): ReactWrapper; - children(statelessComponent: StatelessComponent): ReactWrapper; - children(props: EnzymePropSelector): ReactWrapper; + children(statelessComponent: StatelessComponent): ReactWrapper; children(selector: string): ReactWrapper; - children(): ReactWrapper; + children(props?: EnzymePropSelector): ReactWrapper; /** * Returns a new wrapper with child at the specified index. @@ -548,10 +489,9 @@ export interface ReactWrapper extends CommonWrapper { * @param [selector] */ parents(component: ComponentClass): ReactWrapper; - parents(statelessComponent: StatelessComponent): ReactWrapper; - parents(props: EnzymePropSelector): ReactWrapper; + parents(statelessComponent: StatelessComponent): ReactWrapper; parents(selector: string): ReactWrapper; - parents(): ReactWrapper; + parents(props?: EnzymePropSelector): ReactWrapper; /** * Returns a wrapper of the first element that matches the selector by traversing up through the current node's @@ -561,7 +501,7 @@ export interface ReactWrapper extends CommonWrapper { * @param selector */ closest(component: ComponentClass): ReactWrapper; - closest(statelessComponent: StatelessComponent): ReactWrapper; + closest(statelessComponent: StatelessComponent): ReactWrapper; closest(props: EnzymePropSelector): ReactWrapper; closest(selector: string): ReactWrapper; @@ -569,15 +509,6 @@ export interface ReactWrapper extends CommonWrapper { * Returns a wrapper with the direct parent of the node in the current wrapper. */ parent(): ReactWrapper; - - /** - * Returns true if renderer returned null - */ - isEmptyRender(): boolean; -} - -export interface CheerioWrapper extends CommonWrapper { - } export interface ShallowRendererProps { @@ -626,8 +557,4 @@ export function mount(node: ReactElement

, options?: MountRendererProps) * @param node * @param [options] */ -export function render(node: ReactElement

, options?: any): CheerioWrapper; - -export function describeWithDOM(description: string, fn: Function): void; - -export function spyLifecycle(component: typeof Component): void; +export function render(node: ReactElement

, options?: any): Cheerio; diff --git a/enzyme/tslint.json b/enzyme/tslint.json new file mode 100644 index 0000000000..f9e30021f4 --- /dev/null +++ b/enzyme/tslint.json @@ -0,0 +1,3 @@ +{ + "extends": "../tslint.json" +} From dc32857218307d8a96e640854ed4e62d144cb18c Mon Sep 17 00:00:00 2001 From: Karol Janyst Date: Thu, 26 Jan 2017 14:53:33 +0900 Subject: [PATCH 022/231] Add typings for react-json-pretty --- react-json-pretty/index.d.ts | 21 +++++++++++++++++++ react-json-pretty/react-json-pretty-tests.tsx | 17 +++++++++++++++ react-json-pretty/tsconfig.json | 21 +++++++++++++++++++ react-json-pretty/tslint.json | 1 + 4 files changed, 60 insertions(+) create mode 100644 react-json-pretty/index.d.ts create mode 100644 react-json-pretty/react-json-pretty-tests.tsx create mode 100644 react-json-pretty/tsconfig.json create mode 100644 react-json-pretty/tslint.json diff --git a/react-json-pretty/index.d.ts b/react-json-pretty/index.d.ts new file mode 100644 index 0000000000..5ca8bbf13b --- /dev/null +++ b/react-json-pretty/index.d.ts @@ -0,0 +1,21 @@ +// Type definitions for react-json-pretty 1.3 +// Project: https://github.com/chenckang/react-json-pretty +// Definitions by: Karol Janyst +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +import { ComponentClass, HTMLProps } from "react"; + +export as namespace JSONPretty; + +export = JSONPretty; + +declare const JSONPretty: JSONPretty; +type JSONPretty = ComponentClass; + +declare namespace JSONPretty { + + export interface JSONPrettyProps extends HTMLProps { + json: {} | string; + } + +} diff --git a/react-json-pretty/react-json-pretty-tests.tsx b/react-json-pretty/react-json-pretty-tests.tsx new file mode 100644 index 0000000000..59f8eb74f3 --- /dev/null +++ b/react-json-pretty/react-json-pretty-tests.tsx @@ -0,0 +1,17 @@ +import * as React from "react"; +import * as JSONPretty from "react-json-pretty"; + +export class Test extends React.Component { + render() { + const json = { + foo: "bar" + } + + return ( +

+ + +
+ ); + } +} diff --git a/react-json-pretty/tsconfig.json b/react-json-pretty/tsconfig.json new file mode 100644 index 0000000000..ddb38d587e --- /dev/null +++ b/react-json-pretty/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "jsx": "preserve", + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "react-json-pretty-tests.tsx" + ] +} diff --git a/react-json-pretty/tslint.json b/react-json-pretty/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/react-json-pretty/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 6c9e110e7dd4fc3ba2a1a8cb9521159491c02540 Mon Sep 17 00:00:00 2001 From: Shun Date: Wed, 25 Jan 2017 23:05:17 -0800 Subject: [PATCH 023/231] Add typing files for react-portal --- react-portal/index.d.ts | 24 ++++++++++++++++++++ react-portal/react-portal-tests.tsx | 34 +++++++++++++++++++++++++++++ react-portal/tsconfig.json | 25 +++++++++++++++++++++ react-portal/tslint.json | 1 + 4 files changed, 84 insertions(+) create mode 100644 react-portal/index.d.ts create mode 100644 react-portal/react-portal-tests.tsx create mode 100644 react-portal/tsconfig.json create mode 100644 react-portal/tslint.json diff --git a/react-portal/index.d.ts b/react-portal/index.d.ts new file mode 100644 index 0000000000..0418d576bc --- /dev/null +++ b/react-portal/index.d.ts @@ -0,0 +1,24 @@ +// Type definitions for react-portal 3.0 +// Project: https://github.com/tajo/react-portal#readme +// Definitions by: Shun Takahashi +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +import * as React from "react"; + +interface CallBackProps extends React.Props { + closePortal: () => {}; +} + +interface ReactPortalProps { + isOpened?: boolean; + openByClickOn?: React.ReactElement; + closeOnEsc?: boolean; + closeOnOutsideClick?: boolean; + onOpen?: (node: HTMLDivElement) => {}; + beforeClose?: (node: HTMLDivElement, resetPortalState: () => void) => {}; + onClose?: () => {}; + onUpdate?: () => {}; +} + +declare const ReactPortal: React.ComponentClass; +export = ReactPortal; diff --git a/react-portal/react-portal-tests.tsx b/react-portal/react-portal-tests.tsx new file mode 100644 index 0000000000..b192e297c7 --- /dev/null +++ b/react-portal/react-portal-tests.tsx @@ -0,0 +1,34 @@ +// Example from https://github.com/tajo/react-portal +import * as React from "react"; +import * as ReactDOM from "react-dom"; +import * as Portal from "react-portal"; + +export default class App extends React.Component<{}, {}> { + + render() { + const button1 = ; + + return ( + + +

Pseudo Modal

+

This react component is appended to the document body.

+
+
+ ); + } + +} + +export class PseudoModal extends React.Component<{ closePortal?: () => {} }, {}> { + render() { + return ( +
+ {this.props.children} +

+
+ ); + } +} + +ReactDOM.render(, document.getElementById('react-body')); \ No newline at end of file diff --git a/react-portal/tsconfig.json b/react-portal/tsconfig.json new file mode 100644 index 0000000000..9b28b70ac3 --- /dev/null +++ b/react-portal/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true, + "lib": [ + "es6", + "dom" + ], + "jsx": "react" + }, + "files": [ + "index.d.ts", + "react-portal-tests.tsx" + ] +} diff --git a/react-portal/tslint.json b/react-portal/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/react-portal/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 3dc2b7a93841694905e00d33a45cfdadea9ff065 Mon Sep 17 00:00:00 2001 From: Shun Date: Wed, 25 Jan 2017 23:12:57 -0800 Subject: [PATCH 024/231] Add header to restrict TSC version to 2.1 --- react-portal/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/react-portal/index.d.ts b/react-portal/index.d.ts index 0418d576bc..2d4bd8721e 100644 --- a/react-portal/index.d.ts +++ b/react-portal/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/tajo/react-portal#readme // Definitions by: Shun Takahashi // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 import * as React from "react"; From bbf4b2f6ebbe586f09960474cad7ebec0e8ccb92 Mon Sep 17 00:00:00 2001 From: Urigo Date: Thu, 26 Jan 2017 04:54:11 -0200 Subject: [PATCH 025/231] Add 'matb33:collection-hooks' type definitions --- meteor-collection-hooks/README.md | 4 + meteor-collection-hooks/index.d.ts | 184 ++++++++++++++++++ .../meteor-collection-hooks-tests.ts | 79 ++++++++ meteor-collection-hooks/package.json | 5 + meteor-collection-hooks/tsconfig.json | 23 +++ 5 files changed, 295 insertions(+) create mode 100644 meteor-collection-hooks/README.md create mode 100644 meteor-collection-hooks/index.d.ts create mode 100644 meteor-collection-hooks/meteor-collection-hooks-tests.ts create mode 100644 meteor-collection-hooks/package.json create mode 100644 meteor-collection-hooks/tsconfig.json diff --git a/meteor-collection-hooks/README.md b/meteor-collection-hooks/README.md new file mode 100644 index 0000000000..158fb76e7c --- /dev/null +++ b/meteor-collection-hooks/README.md @@ -0,0 +1,4 @@ +# Meteor Collection Hooks Definitions + +Type definitions for Meteor package `matb33:collection-hooks`. +Be sure to reference any sort of basic Meteor type definitions file before use. \ No newline at end of file diff --git a/meteor-collection-hooks/index.d.ts b/meteor-collection-hooks/index.d.ts new file mode 100644 index 0000000000..49e923658d --- /dev/null +++ b/meteor-collection-hooks/index.d.ts @@ -0,0 +1,184 @@ +// Type definitions for Meteor package matb33:collection-hooks +// Project: https://github.com/matb33/meteor-collection-hooks +// Definitions by: Trygve Wastvedt +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare module 'meteor/mongo' { + namespace Mongo { + interface Selector {} + interface Modifier {} + interface ObjectID {} + interface SortSpecifier {} + interface FieldSpecifier {} + interface Cursor {} + + interface Collection { + before: { + find(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void}): void; + findOne(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void}): void; + insert(hook: {(userId: string, doc: T): void}): void; + remove(hook: {(userId: string, doc: T): void}): void; + update(hook: {(userId: string, doc: T, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + upsert(hook: {(userId: string, doc: T, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + }; + after: { + find(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, cursor: Mongo.Cursor): void}): void; + findOne(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, doc: T): void}): void; + insert(hook: {(userId: string, doc: T): void}): void; + remove(hook: {(userId: string, doc: T): void}): void; + update(hook: {(userId: string, doc: T, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}, options?: HookOptions): void; + upsert(hook: {(userId: string, doc: T, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + }; + direct: { + find(selector?: Mongo.Selector | Mongo.ObjectID | string, options?: { + sort?: Mongo.SortSpecifier; + skip?: number; + limit?: number; + fields?: Mongo.FieldSpecifier; + reactive?: boolean; + transform?: Function; + }): Mongo.Cursor; + findOne(selector?: Mongo.Selector | Mongo.ObjectID | string, options?: { + sort?: Mongo.SortSpecifier; + skip?: number; + fields?: Mongo.FieldSpecifier; + reactive?: boolean; + transform?: Function; + }): T; + insert(doc: T, callback?: Function): string; + remove(selector: Mongo.Selector | Mongo.ObjectID | string, callback?: Function): number; + update(selector: Mongo.Selector | Mongo.ObjectID | string, modifier: Mongo.Modifier, options?: { + multi?: boolean; + upsert?: boolean; + }, callback?: Function): number; + upsert(selector: Mongo.Selector | Mongo.ObjectID | string, modifier: Mongo.Modifier, options?: { + multi?: boolean; + }, callback?: Function): {numberAffected?: number; insertedId?: string;}; + }; + hookOptions: CollectionOptions; + } + } + + interface HookOptions { + fetchPrevious?: boolean; + } + + interface CollectionOptions { + before?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; + after?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; + all?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; + } +} + +declare namespace Mongo { + interface Selector {} + interface Modifier {} + interface ObjectID {} + interface SortSpecifier {} + interface FieldSpecifier {} + interface Cursor {} + + interface Collection { + before: { + find(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void}): void; + findOne(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void}): void; + insert(hook: {(userId: string, doc: T): void}): void; + remove(hook: {(userId: string, doc: T): void}): void; + update(hook: {(userId: string, doc: T, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + upsert(hook: {(userId: string, doc: T, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + }; + after: { + find(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, cursor: Mongo.Cursor): void}): void; + findOne(hook: {(userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, doc: T): void}): void; + insert(hook: {(userId: string, doc: T): void}): void; + remove(hook: {(userId: string, doc: T): void}): void; + update(hook: {(userId: string, doc: T, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}, options?: HookOptions): void; + upsert(hook: {(userId: string, doc: T, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void}): void; + }; + direct: { + find(selector?: Mongo.Selector | Mongo.ObjectID | string, options?: { + sort?: Mongo.SortSpecifier; + skip?: number; + limit?: number; + fields?: Mongo.FieldSpecifier; + reactive?: boolean; + transform?: Function; + }): Mongo.Cursor; + findOne(selector?: Mongo.Selector | Mongo.ObjectID | string, options?: { + sort?: Mongo.SortSpecifier; + skip?: number; + fields?: Mongo.FieldSpecifier; + reactive?: boolean; + transform?: Function; + }): T; + insert(doc: T, callback?: Function): string; + remove(selector: Mongo.Selector | Mongo.ObjectID | string, callback?: Function): number; + update(selector: Mongo.Selector | Mongo.ObjectID | string, modifier: Mongo.Modifier, options?: { + multi?: boolean; + upsert?: boolean; + }, callback?: Function): number; + upsert(selector: Mongo.Selector | Mongo.ObjectID | string, modifier: Mongo.Modifier, options?: { + multi?: boolean; + }, callback?: Function): {numberAffected?: number; insertedId?: string;}; + }; + hookOptions: CollectionOptions; + } +} + +declare interface HookOptions { + fetchPrevious?: boolean; +} + +declare interface CollectionOptions { + before?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; + after?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; + all?: { + all?: HookOptions; + find?: HookOptions; + findOne?: HookOptions; + insert?: HookOptions; + remove?: HookOptions; + update?: HookOptions; + upsert?: HookOptions; + }; +} \ No newline at end of file diff --git a/meteor-collection-hooks/meteor-collection-hooks-tests.ts b/meteor-collection-hooks/meteor-collection-hooks-tests.ts new file mode 100644 index 0000000000..43efa16e3e --- /dev/null +++ b/meteor-collection-hooks/meteor-collection-hooks-tests.ts @@ -0,0 +1,79 @@ +/// + +interface Model { + _id: string; + value: number; +} + +const Collection = new Mongo.Collection("test_collection"); +let cursor: Mongo.Cursor; +let doc: Model; + +const selector = { + sort: { createdAt: -1 }, + skip: 5, + limit: 5, + fields: { createdAt: 1 }, + reacrive: true, + transform: function () {} +}; + +Collection.before.find(function (userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void {}); +Collection.before.findOne(function (userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }): void {}); +Collection.before.insert(function (userId: string, doc: Model): void {}); +Collection.before.remove(function (userId: string, doc: Model): void {}); +Collection.before.update(function (userId: string, doc: Model, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void {}); +Collection.before.upsert(function (userId: string, doc: Model, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void {}); + +Collection.after.find(function (userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, cursor: Mongo.Cursor): void {}); +Collection.after.findOne(function (userId: string, selector: Mongo.Selector, options: { multi?: boolean; upsert?: boolean; }, doc: Model): void {}); +Collection.after.insert(function (userId: string, doc: Model): void {}); +Collection.after.remove(function (userId: string, doc: Model): void {}); +Collection.after.update(function (userId: string, doc: Model, fieldNames: string[], modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void {}, { fetchPrevious: true }); +Collection.after.upsert(function (userId: string, doc: Model, selector: Mongo.Selector, modifier: Mongo.Modifier, options: { multi?: boolean; upsert?: boolean; }): void {}); + +cursor = Collection.direct.find({ _id: doc._id }, { sort: { createdAt: -1 }, skip: 5, limit: 5, fields: { createdAt: 1 }, reactive: true, transform: function () {} }); +cursor = Collection.direct.find(doc._id, { sort: { createdAt: -1 }, skip: 5, limit: 5, fields: { createdAt: 1 }, reactive: true, transform: function () {} }); + +doc = Collection.direct.findOne({ _id: doc._id }, { sort: { createdAt: -1 }, skip: 5, fields: { createdAt: 1 }, reactive: true, transform: function () {} }); +doc = Collection.direct.findOne(doc._id, { sort: { createdAt: -1 }, skip: 5, fields: { createdAt: 1 }, reactive: true, transform: function () {} }); + +doc._id = Collection.direct.insert(doc, function () {}); + +doc.value = Collection.direct.remove({ _id: doc._id }, function () {}); +doc.value = Collection.direct.remove(doc._id, function () {}); + +doc.value = Collection.direct.update({ _id: doc._id }, { $inc: { votes: 2 } }, { multi: true, upsert: true }, function () {}); +doc.value = Collection.direct.update(doc._id, { $inc: { votes: 2 } }, { multi: true, upsert: true }, function () {}); + +let { numberAffected, insertedId }: { numberAffected?: number; insertedId?: string; } = Collection.direct.upsert(doc._id, { $inc: { votes: 2 } }, { multi: true }, function () {}); + +Collection.hookOptions = { + before: { + all: { fetchPrevious: true }, + find: { fetchPrevious: true }, + findOne: { fetchPrevious: true }, + insert: { fetchPrevious: true }, + remove: { fetchPrevious: true }, + update: { fetchPrevious: true }, + upsert: { fetchPrevious: true } + }, + after: { + all: { fetchPrevious: true }, + find: { fetchPrevious: true }, + findOne: { fetchPrevious: true }, + insert: { fetchPrevious: true }, + remove: { fetchPrevious: true }, + update: { fetchPrevious: true }, + upsert: { fetchPrevious: true } + }, + all: { + all: { fetchPrevious: true }, + find: { fetchPrevious: true }, + findOne: { fetchPrevious: true }, + insert: { fetchPrevious: true }, + remove: { fetchPrevious: true }, + update: { fetchPrevious: true }, + upsert: { fetchPrevious: true } + } +}; \ No newline at end of file diff --git a/meteor-collection-hooks/package.json b/meteor-collection-hooks/package.json new file mode 100644 index 0000000000..39dfad28b6 --- /dev/null +++ b/meteor-collection-hooks/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "meteor-typings": "^1.3.1" + } +} diff --git a/meteor-collection-hooks/tsconfig.json b/meteor-collection-hooks/tsconfig.json new file mode 100644 index 0000000000..90fa93f2b5 --- /dev/null +++ b/meteor-collection-hooks/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": false, + "strictNullChecks": false, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "meteor-collection-hooks-tests.ts" + ] +} \ No newline at end of file From 0bf5b987e41e4bfdf5867dea843ca3d66cb11527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Werlang?= Date: Thu, 26 Jan 2017 12:48:39 -0200 Subject: [PATCH 026/231] add client_ip to StripeTokenResponse See https://stripe.com/docs/api#token_object --- stripe/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/stripe/index.d.ts b/stripe/index.d.ts index a7d887c747..131ce142ef 100644 --- a/stripe/index.d.ts +++ b/stripe/index.d.ts @@ -36,6 +36,7 @@ interface StripeTokenData { interface StripeTokenResponse { id: string; card: StripeCardData; + client_ip: string; created: number; livemode: boolean; object: string; From 11b6a6aecf429fdb7c2f013e5c1fe23a93b1fe0e Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Thu, 26 Jan 2017 16:49:15 +0100 Subject: [PATCH 027/231] Added node.map and corrected callbacks return type --- mathjs/index.d.ts | 39 ++++++++++++++++++++++++++++++++++----- 1 file changed, 34 insertions(+), 5 deletions(-) diff --git a/mathjs/index.d.ts b/mathjs/index.d.ts index bf20869909..f255546b0e 100644 --- a/mathjs/index.d.ts +++ b/mathjs/index.d.ts @@ -1395,8 +1395,8 @@ declare namespace mathjs { * @param {MathNode} callback(node [description] * @return {[type]} [description] */ - forEach(callback: (node: MathNode, path: string, parent: MathNode)=>boolean): MathNode[]; - + forEach(callback: (node: MathNode, path: string, parent: MathNode)=>any): MathNode[]; + /** * `traverse(callback)` @@ -1426,9 +1426,38 @@ declare namespace mathjs { */ traverse(callback: (node: MathNode, path: string, parent: MathNode)=> void): any; //addEventListener(ev: 'change', callback: (ev: EditorChangeEvent) => any); - - transform(callback: (node: MathNode, path: string, parent: MathNode)=>boolean): MathNode[]; - + /** + * Recursively transform an expression tree via a transform function. Similar to Array.map, + * but recursively executed on all nodes in the expression tree. The callback function is a + * mapping function accepting a node, and returning a replacement for the node or the original node. + * Function callback is called as callback(node: Node, path: string, parent: Node) for every node in + * the tree, and must return a Node. Parameter path is a string containing a relative JSON Path. + * + * For example, to replace all nodes of type SymbolNode having name ‘x’ with a ConstantNode with value 3: + * ```js + * var node = math.parse('x^2 + 5*x'); + * var transformed = node.transform(function (node, path, parent) { + * if (node.SymbolNode && node.name == 'x') { + * return new math.expression.node.ConstantNode(3); + * } + * else { + * return node; + * } + * }); + * transformed.toString(); // returns '(3 ^ 2) + (5 * 3)' + * ``` + */ + transform(callback: (node: MathNode, path: string, parent: MathNode)=>MathNode): MathNode; + /** + * Transform a node. Creates a new Node having it’s childs be the results of calling the provided + * callback function for each of the childs of the original node. The callback function is called + * as `callback(child: Node, path: string, parent: Node)` and must return a Node. + * Parameter path is a string containing a relative JSON Path. + * + * + * See also transform, which is a recursive version of map. + */ + map(callback: (node: MathNode, path: string, parent: MathNode)=>MathNode): MathNode; } From a859959abc029e7b44c0a599eb85172facb6d0ce Mon Sep 17 00:00:00 2001 From: Vilmos Ioo Date: Thu, 26 Jan 2017 16:56:03 +0000 Subject: [PATCH 028/231] Added callsFake method on SinonStub --- sinon/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sinon/index.d.ts b/sinon/index.d.ts index 966c7229d0..b80c13a696 100644 --- a/sinon/index.d.ts +++ b/sinon/index.d.ts @@ -109,6 +109,7 @@ declare namespace Sinon { callsArgOnAsync(index: number, context: any): SinonStub; callsArgWithAsync(index: number, ...args: any[]): SinonStub; callsArgOnWithAsync(index: number, context: any, ...args: any[]): SinonStub; + callsFake(func: any): SinonStub; onCall(n: number): SinonStub; onFirstCall(): SinonStub; onSecondCall(): SinonStub; From 4c43362f17590bc56872dabdad68c64f683a2d93 Mon Sep 17 00:00:00 2001 From: Cooper Benson Date: Thu, 26 Jan 2017 10:04:04 -0700 Subject: [PATCH 029/231] Fixing incorrect type on ROSLIB.Topic.unsubscribe --- roslib/index.d.ts | 4 ++-- roslib/roslib-tests.ts | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/roslib/index.d.ts b/roslib/index.d.ts index c195387901..89ac42ab66 100644 --- a/roslib/index.d.ts +++ b/roslib/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for roslib.js // Project: http://wiki.ros.org/roslibjs -// Definitions by: Stefan Profanter +// Definitions by: Stefan Profanter , Cooper Benson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -340,7 +340,7 @@ declare namespace ROSLIB { * * provided and other listeners are registered the topic won't * * unsubscribe, just stop emitting to the passed listener */ - unsubscribe(callback?:() => void):void; + unsubscribe(callback?:(callback:(message:Message) => void) => void):void; /** * Registers as a publisher for the topic. diff --git a/roslib/roslib-tests.ts b/roslib/roslib-tests.ts index b67578536a..36b505ea12 100644 --- a/roslib/roslib-tests.ts +++ b/roslib/roslib-tests.ts @@ -48,10 +48,13 @@ var listener = new ROSLIB.Topic({ messageType: 'std_msgs/String' }); -listener.subscribe(function (message:any) { - console.log('Received message on ' + listener.name + ': ' + message.data); +let subscription_callback = function (message:ROSLIB.Message) { + console.log('Received message on ' + listener.name + ': ' + message); listener.unsubscribe(); -}); +} + +listener.subscribe(subscription_callback); +listener.unsubscribe(subscription_callback); // Calling a service // ----------------- From 12aebc4dab8ee03e8a2ef2867f60b70124c728bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20De=20Pe=C3=B1a?= Date: Thu, 26 Jan 2017 16:25:02 -0500 Subject: [PATCH 030/231] Update index.d.ts added missing `context` prop. ref: https://nodejs.org/dist/latest-v6.x/docs/api/repl.html#repl_global_and_local_scope --- node/v6/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node/v6/index.d.ts b/node/v6/index.d.ts index 2f4d36202d..826bd1108b 100644 --- a/node/v6/index.d.ts +++ b/node/v6/index.d.ts @@ -1368,6 +1368,8 @@ declare module "repl" { defineCommand(keyword: string, cmd: Function | { help: string, action: Function }): void; displayPrompt(preserveCursor?: boolean): void; + context: any; + /** * events.EventEmitter * 1. exit From cdd6a34b88ff10c975ef632661f91388651daf35 Mon Sep 17 00:00:00 2001 From: Alexandre Pare Date: Thu, 26 Jan 2017 17:23:39 -0500 Subject: [PATCH 031/231] react-icons --- react-icon-base/index.d.ts | 16 + react-icon-base/react-icon-base-tests.tsx | 4 + react-icon-base/tsconfig.json | 21 + react-icon-base/tslint.json | 1 + react-icons/fa/500px.d.ts | 3 + react-icons/fa/adjust.d.ts | 3 + react-icons/fa/adn.d.ts | 3 + react-icons/fa/align-center.d.ts | 3 + react-icons/fa/align-justify.d.ts | 3 + react-icons/fa/align-left.d.ts | 3 + react-icons/fa/align-right.d.ts | 3 + react-icons/fa/amazon.d.ts | 3 + react-icons/fa/ambulance.d.ts | 3 + .../american-sign-language-interpreting.d.ts | 3 + react-icons/fa/anchor.d.ts | 3 + react-icons/fa/android.d.ts | 3 + react-icons/fa/angellist.d.ts | 3 + react-icons/fa/angle-double-down.d.ts | 3 + react-icons/fa/angle-double-left.d.ts | 3 + react-icons/fa/angle-double-right.d.ts | 3 + react-icons/fa/angle-double-up.d.ts | 3 + react-icons/fa/angle-down.d.ts | 3 + react-icons/fa/angle-left.d.ts | 3 + react-icons/fa/angle-right.d.ts | 3 + react-icons/fa/angle-up.d.ts | 3 + react-icons/fa/apple.d.ts | 3 + react-icons/fa/archive.d.ts | 3 + react-icons/fa/area-chart.d.ts | 3 + react-icons/fa/arrow-circle-down.d.ts | 3 + react-icons/fa/arrow-circle-left.d.ts | 3 + react-icons/fa/arrow-circle-o-down.d.ts | 3 + react-icons/fa/arrow-circle-o-left.d.ts | 3 + react-icons/fa/arrow-circle-o-right.d.ts | 3 + react-icons/fa/arrow-circle-o-up.d.ts | 3 + react-icons/fa/arrow-circle-right.d.ts | 3 + react-icons/fa/arrow-circle-up.d.ts | 3 + react-icons/fa/arrow-down.d.ts | 3 + react-icons/fa/arrow-left.d.ts | 3 + react-icons/fa/arrow-right.d.ts | 3 + react-icons/fa/arrow-up.d.ts | 3 + react-icons/fa/arrows-alt.d.ts | 3 + react-icons/fa/arrows-h.d.ts | 3 + react-icons/fa/arrows-v.d.ts | 3 + react-icons/fa/arrows.d.ts | 3 + .../fa/assistive-listening-systems.d.ts | 3 + react-icons/fa/asterisk.d.ts | 3 + react-icons/fa/at.d.ts | 3 + react-icons/fa/audio-description.d.ts | 3 + react-icons/fa/automobile.d.ts | 3 + react-icons/fa/backward.d.ts | 3 + react-icons/fa/balance-scale.d.ts | 3 + react-icons/fa/ban.d.ts | 3 + react-icons/fa/bank.d.ts | 3 + react-icons/fa/bar-chart.d.ts | 3 + react-icons/fa/barcode.d.ts | 3 + react-icons/fa/bars.d.ts | 3 + react-icons/fa/battery-0.d.ts | 3 + react-icons/fa/battery-1.d.ts | 3 + react-icons/fa/battery-2.d.ts | 3 + react-icons/fa/battery-3.d.ts | 3 + react-icons/fa/battery-4.d.ts | 3 + react-icons/fa/bed.d.ts | 3 + react-icons/fa/beer.d.ts | 3 + react-icons/fa/behance-square.d.ts | 3 + react-icons/fa/behance.d.ts | 3 + react-icons/fa/bell-o.d.ts | 3 + react-icons/fa/bell-slash-o.d.ts | 3 + react-icons/fa/bell-slash.d.ts | 3 + react-icons/fa/bell.d.ts | 3 + react-icons/fa/bicycle.d.ts | 3 + react-icons/fa/binoculars.d.ts | 3 + react-icons/fa/birthday-cake.d.ts | 3 + react-icons/fa/bitbucket-square.d.ts | 3 + react-icons/fa/bitbucket.d.ts | 3 + react-icons/fa/bitcoin.d.ts | 3 + react-icons/fa/black-tie.d.ts | 3 + react-icons/fa/blind.d.ts | 3 + react-icons/fa/bluetooth-b.d.ts | 3 + react-icons/fa/bluetooth.d.ts | 3 + react-icons/fa/bold.d.ts | 3 + react-icons/fa/bolt.d.ts | 3 + react-icons/fa/bomb.d.ts | 3 + react-icons/fa/book.d.ts | 3 + react-icons/fa/bookmark-o.d.ts | 3 + react-icons/fa/bookmark.d.ts | 3 + react-icons/fa/braille.d.ts | 3 + react-icons/fa/briefcase.d.ts | 3 + react-icons/fa/bug.d.ts | 3 + react-icons/fa/building-o.d.ts | 3 + react-icons/fa/building.d.ts | 3 + react-icons/fa/bullhorn.d.ts | 3 + react-icons/fa/bullseye.d.ts | 3 + react-icons/fa/bus.d.ts | 3 + react-icons/fa/buysellads.d.ts | 3 + react-icons/fa/cab.d.ts | 3 + react-icons/fa/calculator.d.ts | 3 + react-icons/fa/calendar-check-o.d.ts | 3 + react-icons/fa/calendar-minus-o.d.ts | 3 + react-icons/fa/calendar-o.d.ts | 3 + react-icons/fa/calendar-plus-o.d.ts | 3 + react-icons/fa/calendar-times-o.d.ts | 3 + react-icons/fa/calendar.d.ts | 3 + react-icons/fa/camera-retro.d.ts | 3 + react-icons/fa/camera.d.ts | 3 + react-icons/fa/caret-down.d.ts | 3 + react-icons/fa/caret-left.d.ts | 3 + react-icons/fa/caret-right.d.ts | 3 + react-icons/fa/caret-square-o-down.d.ts | 3 + react-icons/fa/caret-square-o-left.d.ts | 3 + react-icons/fa/caret-square-o-right.d.ts | 3 + react-icons/fa/caret-square-o-up.d.ts | 3 + react-icons/fa/caret-up.d.ts | 3 + react-icons/fa/cart-arrow-down.d.ts | 3 + react-icons/fa/cart-plus.d.ts | 3 + react-icons/fa/cc-amex.d.ts | 3 + react-icons/fa/cc-diners-club.d.ts | 3 + react-icons/fa/cc-discover.d.ts | 3 + react-icons/fa/cc-jcb.d.ts | 3 + react-icons/fa/cc-mastercard.d.ts | 3 + react-icons/fa/cc-paypal.d.ts | 3 + react-icons/fa/cc-stripe.d.ts | 3 + react-icons/fa/cc-visa.d.ts | 3 + react-icons/fa/cc.d.ts | 3 + react-icons/fa/certificate.d.ts | 3 + react-icons/fa/chain-broken.d.ts | 3 + react-icons/fa/chain.d.ts | 3 + react-icons/fa/check-circle-o.d.ts | 3 + react-icons/fa/check-circle.d.ts | 3 + react-icons/fa/check-square-o.d.ts | 3 + react-icons/fa/check-square.d.ts | 3 + react-icons/fa/check.d.ts | 3 + react-icons/fa/chevron-circle-down.d.ts | 3 + react-icons/fa/chevron-circle-left.d.ts | 3 + react-icons/fa/chevron-circle-right.d.ts | 3 + react-icons/fa/chevron-circle-up.d.ts | 3 + react-icons/fa/chevron-down.d.ts | 3 + react-icons/fa/chevron-left.d.ts | 3 + react-icons/fa/chevron-right.d.ts | 3 + react-icons/fa/chevron-up.d.ts | 3 + react-icons/fa/child.d.ts | 3 + react-icons/fa/chrome.d.ts | 3 + react-icons/fa/circle-o-notch.d.ts | 3 + react-icons/fa/circle-o.d.ts | 3 + react-icons/fa/circle-thin.d.ts | 3 + react-icons/fa/circle.d.ts | 3 + react-icons/fa/clipboard.d.ts | 3 + react-icons/fa/clock-o.d.ts | 3 + react-icons/fa/clone.d.ts | 3 + react-icons/fa/close.d.ts | 3 + react-icons/fa/cloud-download.d.ts | 3 + react-icons/fa/cloud-upload.d.ts | 3 + react-icons/fa/cloud.d.ts | 3 + react-icons/fa/cny.d.ts | 3 + react-icons/fa/code-fork.d.ts | 3 + react-icons/fa/code.d.ts | 3 + react-icons/fa/codepen.d.ts | 3 + react-icons/fa/codiepie.d.ts | 3 + react-icons/fa/coffee.d.ts | 3 + react-icons/fa/cog.d.ts | 3 + react-icons/fa/cogs.d.ts | 3 + react-icons/fa/columns.d.ts | 3 + react-icons/fa/comment-o.d.ts | 3 + react-icons/fa/comment.d.ts | 3 + react-icons/fa/commenting-o.d.ts | 3 + react-icons/fa/commenting.d.ts | 3 + react-icons/fa/comments-o.d.ts | 3 + react-icons/fa/comments.d.ts | 3 + react-icons/fa/compass.d.ts | 3 + react-icons/fa/compress.d.ts | 3 + react-icons/fa/connectdevelop.d.ts | 3 + react-icons/fa/contao.d.ts | 3 + react-icons/fa/copy.d.ts | 3 + react-icons/fa/copyright.d.ts | 3 + react-icons/fa/creative-commons.d.ts | 3 + react-icons/fa/credit-card-alt.d.ts | 3 + react-icons/fa/credit-card.d.ts | 3 + react-icons/fa/crop.d.ts | 3 + react-icons/fa/crosshairs.d.ts | 3 + react-icons/fa/css3.d.ts | 3 + react-icons/fa/cube.d.ts | 3 + react-icons/fa/cubes.d.ts | 3 + react-icons/fa/cut.d.ts | 3 + react-icons/fa/cutlery.d.ts | 3 + react-icons/fa/dashboard.d.ts | 3 + react-icons/fa/dashcube.d.ts | 3 + react-icons/fa/database.d.ts | 3 + react-icons/fa/deaf.d.ts | 3 + react-icons/fa/dedent.d.ts | 3 + react-icons/fa/delicious.d.ts | 3 + react-icons/fa/desktop.d.ts | 3 + react-icons/fa/deviantart.d.ts | 3 + react-icons/fa/diamond.d.ts | 3 + react-icons/fa/digg.d.ts | 3 + react-icons/fa/dollar.d.ts | 3 + react-icons/fa/dot-circle-o.d.ts | 3 + react-icons/fa/download.d.ts | 3 + react-icons/fa/dribbble.d.ts | 3 + react-icons/fa/dropbox.d.ts | 3 + react-icons/fa/drupal.d.ts | 3 + react-icons/fa/edge.d.ts | 3 + react-icons/fa/edit.d.ts | 3 + react-icons/fa/eject.d.ts | 3 + react-icons/fa/ellipsis-h.d.ts | 3 + react-icons/fa/ellipsis-v.d.ts | 3 + react-icons/fa/empire.d.ts | 3 + react-icons/fa/envelope-o.d.ts | 3 + react-icons/fa/envelope-square.d.ts | 3 + react-icons/fa/envelope.d.ts | 3 + react-icons/fa/envira.d.ts | 3 + react-icons/fa/eraser.d.ts | 3 + react-icons/fa/eur.d.ts | 3 + react-icons/fa/exchange.d.ts | 3 + react-icons/fa/exclamation-circle.d.ts | 3 + react-icons/fa/exclamation-triangle.d.ts | 3 + react-icons/fa/exclamation.d.ts | 3 + react-icons/fa/expand.d.ts | 3 + react-icons/fa/expeditedssl.d.ts | 3 + react-icons/fa/external-link-square.d.ts | 3 + react-icons/fa/external-link.d.ts | 3 + react-icons/fa/eye-slash.d.ts | 3 + react-icons/fa/eye.d.ts | 3 + react-icons/fa/eyedropper.d.ts | 3 + react-icons/fa/facebook-official.d.ts | 3 + react-icons/fa/facebook-square.d.ts | 3 + react-icons/fa/facebook.d.ts | 3 + react-icons/fa/fast-backward.d.ts | 3 + react-icons/fa/fast-forward.d.ts | 3 + react-icons/fa/fax.d.ts | 3 + react-icons/fa/feed.d.ts | 3 + react-icons/fa/female.d.ts | 3 + react-icons/fa/fighter-jet.d.ts | 3 + react-icons/fa/file-archive-o.d.ts | 3 + react-icons/fa/file-audio-o.d.ts | 3 + react-icons/fa/file-code-o.d.ts | 3 + react-icons/fa/file-excel-o.d.ts | 3 + react-icons/fa/file-image-o.d.ts | 3 + react-icons/fa/file-movie-o.d.ts | 3 + react-icons/fa/file-o.d.ts | 3 + react-icons/fa/file-pdf-o.d.ts | 3 + react-icons/fa/file-powerpoint-o.d.ts | 3 + react-icons/fa/file-text-o.d.ts | 3 + react-icons/fa/file-text.d.ts | 3 + react-icons/fa/file-word-o.d.ts | 3 + react-icons/fa/file.d.ts | 3 + react-icons/fa/film.d.ts | 3 + react-icons/fa/filter.d.ts | 3 + react-icons/fa/fire-extinguisher.d.ts | 3 + react-icons/fa/fire.d.ts | 3 + react-icons/fa/firefox.d.ts | 3 + react-icons/fa/flag-checkered.d.ts | 3 + react-icons/fa/flag-o.d.ts | 3 + react-icons/fa/flag.d.ts | 3 + react-icons/fa/flask.d.ts | 3 + react-icons/fa/flickr.d.ts | 3 + react-icons/fa/floppy-o.d.ts | 3 + react-icons/fa/folder-o.d.ts | 3 + react-icons/fa/folder-open-o.d.ts | 3 + react-icons/fa/folder-open.d.ts | 3 + react-icons/fa/folder.d.ts | 3 + react-icons/fa/font.d.ts | 3 + react-icons/fa/fonticons.d.ts | 3 + react-icons/fa/fort-awesome.d.ts | 3 + react-icons/fa/forumbee.d.ts | 3 + react-icons/fa/forward.d.ts | 3 + react-icons/fa/foursquare.d.ts | 3 + react-icons/fa/frown-o.d.ts | 3 + react-icons/fa/futbol-o.d.ts | 3 + react-icons/fa/gamepad.d.ts | 3 + react-icons/fa/gavel.d.ts | 3 + react-icons/fa/gbp.d.ts | 3 + react-icons/fa/genderless.d.ts | 3 + react-icons/fa/get-pocket.d.ts | 3 + react-icons/fa/gg-circle.d.ts | 3 + react-icons/fa/gg.d.ts | 3 + react-icons/fa/gift.d.ts | 3 + react-icons/fa/git-square.d.ts | 3 + react-icons/fa/git.d.ts | 3 + react-icons/fa/github-alt.d.ts | 3 + react-icons/fa/github-square.d.ts | 3 + react-icons/fa/github.d.ts | 3 + react-icons/fa/gitlab.d.ts | 3 + react-icons/fa/gittip.d.ts | 3 + react-icons/fa/glass.d.ts | 3 + react-icons/fa/glide-g.d.ts | 3 + react-icons/fa/glide.d.ts | 3 + react-icons/fa/globe.d.ts | 3 + react-icons/fa/google-plus-square.d.ts | 3 + react-icons/fa/google-plus.d.ts | 3 + react-icons/fa/google-wallet.d.ts | 3 + react-icons/fa/google.d.ts | 3 + react-icons/fa/graduation-cap.d.ts | 3 + react-icons/fa/group.d.ts | 3 + react-icons/fa/h-square.d.ts | 3 + react-icons/fa/hacker-news.d.ts | 3 + react-icons/fa/hand-grab-o.d.ts | 3 + react-icons/fa/hand-lizard-o.d.ts | 3 + react-icons/fa/hand-o-down.d.ts | 3 + react-icons/fa/hand-o-left.d.ts | 3 + react-icons/fa/hand-o-right.d.ts | 3 + react-icons/fa/hand-o-up.d.ts | 3 + react-icons/fa/hand-paper-o.d.ts | 3 + react-icons/fa/hand-peace-o.d.ts | 3 + react-icons/fa/hand-pointer-o.d.ts | 3 + react-icons/fa/hand-scissors-o.d.ts | 3 + react-icons/fa/hand-spock-o.d.ts | 3 + react-icons/fa/hashtag.d.ts | 3 + react-icons/fa/hdd-o.d.ts | 3 + react-icons/fa/header.d.ts | 3 + react-icons/fa/headphones.d.ts | 3 + react-icons/fa/heart-o.d.ts | 3 + react-icons/fa/heart.d.ts | 3 + react-icons/fa/heartbeat.d.ts | 3 + react-icons/fa/history.d.ts | 3 + react-icons/fa/home.d.ts | 3 + react-icons/fa/hospital-o.d.ts | 3 + react-icons/fa/hourglass-1.d.ts | 3 + react-icons/fa/hourglass-2.d.ts | 3 + react-icons/fa/hourglass-3.d.ts | 3 + react-icons/fa/hourglass-o.d.ts | 3 + react-icons/fa/hourglass.d.ts | 3 + react-icons/fa/houzz.d.ts | 3 + react-icons/fa/html5.d.ts | 3 + react-icons/fa/i-cursor.d.ts | 3 + react-icons/fa/ils.d.ts | 3 + react-icons/fa/image.d.ts | 3 + react-icons/fa/inbox.d.ts | 3 + react-icons/fa/indent.d.ts | 3 + react-icons/fa/index.d.ts | 1256 ++++++++ react-icons/fa/industry.d.ts | 3 + react-icons/fa/info-circle.d.ts | 3 + react-icons/fa/info.d.ts | 3 + react-icons/fa/inr.d.ts | 3 + react-icons/fa/instagram.d.ts | 3 + react-icons/fa/internet-explorer.d.ts | 3 + react-icons/fa/intersex.d.ts | 3 + react-icons/fa/ioxhost.d.ts | 3 + react-icons/fa/italic.d.ts | 3 + react-icons/fa/joomla.d.ts | 3 + react-icons/fa/jsfiddle.d.ts | 3 + react-icons/fa/key.d.ts | 3 + react-icons/fa/keyboard-o.d.ts | 3 + react-icons/fa/krw.d.ts | 3 + react-icons/fa/language.d.ts | 3 + react-icons/fa/laptop.d.ts | 3 + react-icons/fa/lastfm-square.d.ts | 3 + react-icons/fa/lastfm.d.ts | 3 + react-icons/fa/leaf.d.ts | 3 + react-icons/fa/leanpub.d.ts | 3 + react-icons/fa/lemon-o.d.ts | 3 + react-icons/fa/level-down.d.ts | 3 + react-icons/fa/level-up.d.ts | 3 + react-icons/fa/life-bouy.d.ts | 3 + react-icons/fa/lightbulb-o.d.ts | 3 + react-icons/fa/line-chart.d.ts | 3 + react-icons/fa/linkedin-square.d.ts | 3 + react-icons/fa/linkedin.d.ts | 3 + react-icons/fa/linux.d.ts | 3 + react-icons/fa/list-alt.d.ts | 3 + react-icons/fa/list-ol.d.ts | 3 + react-icons/fa/list-ul.d.ts | 3 + react-icons/fa/list.d.ts | 3 + react-icons/fa/location-arrow.d.ts | 3 + react-icons/fa/lock.d.ts | 3 + react-icons/fa/long-arrow-down.d.ts | 3 + react-icons/fa/long-arrow-left.d.ts | 3 + react-icons/fa/long-arrow-right.d.ts | 3 + react-icons/fa/long-arrow-up.d.ts | 3 + react-icons/fa/low-vision.d.ts | 3 + react-icons/fa/magic.d.ts | 3 + react-icons/fa/magnet.d.ts | 3 + react-icons/fa/mail-forward.d.ts | 3 + react-icons/fa/mail-reply-all.d.ts | 3 + react-icons/fa/mail-reply.d.ts | 3 + react-icons/fa/male.d.ts | 3 + react-icons/fa/map-marker.d.ts | 3 + react-icons/fa/map-o.d.ts | 3 + react-icons/fa/map-pin.d.ts | 3 + react-icons/fa/map-signs.d.ts | 3 + react-icons/fa/map.d.ts | 3 + react-icons/fa/mars-double.d.ts | 3 + react-icons/fa/mars-stroke-h.d.ts | 3 + react-icons/fa/mars-stroke-v.d.ts | 3 + react-icons/fa/mars-stroke.d.ts | 3 + react-icons/fa/mars.d.ts | 3 + react-icons/fa/maxcdn.d.ts | 3 + react-icons/fa/meanpath.d.ts | 3 + react-icons/fa/medium.d.ts | 3 + react-icons/fa/medkit.d.ts | 3 + react-icons/fa/meh-o.d.ts | 3 + react-icons/fa/mercury.d.ts | 3 + react-icons/fa/microphone-slash.d.ts | 3 + react-icons/fa/microphone.d.ts | 3 + react-icons/fa/minus-circle.d.ts | 3 + react-icons/fa/minus-square-o.d.ts | 3 + react-icons/fa/minus-square.d.ts | 3 + react-icons/fa/minus.d.ts | 3 + react-icons/fa/mixcloud.d.ts | 3 + react-icons/fa/mobile.d.ts | 3 + react-icons/fa/modx.d.ts | 3 + react-icons/fa/money.d.ts | 3 + react-icons/fa/moon-o.d.ts | 3 + react-icons/fa/motorcycle.d.ts | 3 + react-icons/fa/mouse-pointer.d.ts | 3 + react-icons/fa/music.d.ts | 3 + react-icons/fa/neuter.d.ts | 3 + react-icons/fa/newspaper-o.d.ts | 3 + react-icons/fa/object-group.d.ts | 3 + react-icons/fa/object-ungroup.d.ts | 3 + react-icons/fa/odnoklassniki-square.d.ts | 3 + react-icons/fa/odnoklassniki.d.ts | 3 + react-icons/fa/opencart.d.ts | 3 + react-icons/fa/openid.d.ts | 3 + react-icons/fa/opera.d.ts | 3 + react-icons/fa/optin-monster.d.ts | 3 + react-icons/fa/pagelines.d.ts | 3 + react-icons/fa/paint-brush.d.ts | 3 + react-icons/fa/paper-plane-o.d.ts | 3 + react-icons/fa/paper-plane.d.ts | 3 + react-icons/fa/paperclip.d.ts | 3 + react-icons/fa/paragraph.d.ts | 3 + react-icons/fa/pause-circle-o.d.ts | 3 + react-icons/fa/pause-circle.d.ts | 3 + react-icons/fa/pause.d.ts | 3 + react-icons/fa/paw.d.ts | 3 + react-icons/fa/paypal.d.ts | 3 + react-icons/fa/pencil-square.d.ts | 3 + react-icons/fa/pencil.d.ts | 3 + react-icons/fa/percent.d.ts | 3 + react-icons/fa/phone-square.d.ts | 3 + react-icons/fa/phone.d.ts | 3 + react-icons/fa/pie-chart.d.ts | 3 + react-icons/fa/pied-piper-alt.d.ts | 3 + react-icons/fa/pied-piper.d.ts | 3 + react-icons/fa/pinterest-p.d.ts | 3 + react-icons/fa/pinterest-square.d.ts | 3 + react-icons/fa/pinterest.d.ts | 3 + react-icons/fa/plane.d.ts | 3 + react-icons/fa/play-circle-o.d.ts | 3 + react-icons/fa/play-circle.d.ts | 3 + react-icons/fa/play.d.ts | 3 + react-icons/fa/plug.d.ts | 3 + react-icons/fa/plus-circle.d.ts | 3 + react-icons/fa/plus-square-o.d.ts | 3 + react-icons/fa/plus-square.d.ts | 3 + react-icons/fa/plus.d.ts | 3 + react-icons/fa/power-off.d.ts | 3 + react-icons/fa/print.d.ts | 3 + react-icons/fa/product-hunt.d.ts | 3 + react-icons/fa/puzzle-piece.d.ts | 3 + react-icons/fa/qq.d.ts | 3 + react-icons/fa/qrcode.d.ts | 3 + react-icons/fa/question-circle-o.d.ts | 3 + react-icons/fa/question-circle.d.ts | 3 + react-icons/fa/question.d.ts | 3 + react-icons/fa/quote-left.d.ts | 3 + react-icons/fa/quote-right.d.ts | 3 + react-icons/fa/ra.d.ts | 3 + react-icons/fa/random.d.ts | 3 + react-icons/fa/recycle.d.ts | 3 + react-icons/fa/reddit-alien.d.ts | 3 + react-icons/fa/reddit-square.d.ts | 3 + react-icons/fa/reddit.d.ts | 3 + react-icons/fa/refresh.d.ts | 3 + react-icons/fa/registered.d.ts | 3 + react-icons/fa/renren.d.ts | 3 + react-icons/fa/repeat.d.ts | 3 + react-icons/fa/retweet.d.ts | 3 + react-icons/fa/road.d.ts | 3 + react-icons/fa/rocket.d.ts | 3 + react-icons/fa/rotate-left.d.ts | 3 + react-icons/fa/rouble.d.ts | 3 + react-icons/fa/rss-square.d.ts | 3 + react-icons/fa/safari.d.ts | 3 + react-icons/fa/scribd.d.ts | 3 + react-icons/fa/search-minus.d.ts | 3 + react-icons/fa/search-plus.d.ts | 3 + react-icons/fa/search.d.ts | 3 + react-icons/fa/sellsy.d.ts | 3 + react-icons/fa/server.d.ts | 3 + react-icons/fa/share-alt-square.d.ts | 3 + react-icons/fa/share-alt.d.ts | 3 + react-icons/fa/share-square-o.d.ts | 3 + react-icons/fa/share-square.d.ts | 3 + react-icons/fa/shield.d.ts | 3 + react-icons/fa/ship.d.ts | 3 + react-icons/fa/shirtsinbulk.d.ts | 3 + react-icons/fa/shopping-bag.d.ts | 3 + react-icons/fa/shopping-basket.d.ts | 3 + react-icons/fa/shopping-cart.d.ts | 3 + react-icons/fa/sign-in.d.ts | 3 + react-icons/fa/sign-language.d.ts | 3 + react-icons/fa/sign-out.d.ts | 3 + react-icons/fa/signal.d.ts | 3 + react-icons/fa/simplybuilt.d.ts | 3 + react-icons/fa/sitemap.d.ts | 3 + react-icons/fa/skyatlas.d.ts | 3 + react-icons/fa/skype.d.ts | 3 + react-icons/fa/slack.d.ts | 3 + react-icons/fa/sliders.d.ts | 3 + react-icons/fa/slideshare.d.ts | 3 + react-icons/fa/smile-o.d.ts | 3 + react-icons/fa/snapchat-ghost.d.ts | 3 + react-icons/fa/snapchat-square.d.ts | 3 + react-icons/fa/snapchat.d.ts | 3 + react-icons/fa/sort-alpha-asc.d.ts | 3 + react-icons/fa/sort-alpha-desc.d.ts | 3 + react-icons/fa/sort-amount-asc.d.ts | 3 + react-icons/fa/sort-amount-desc.d.ts | 3 + react-icons/fa/sort-asc.d.ts | 3 + react-icons/fa/sort-desc.d.ts | 3 + react-icons/fa/sort-numeric-asc.d.ts | 3 + react-icons/fa/sort-numeric-desc.d.ts | 3 + react-icons/fa/sort.d.ts | 3 + react-icons/fa/soundcloud.d.ts | 3 + react-icons/fa/space-shuttle.d.ts | 3 + react-icons/fa/spinner.d.ts | 3 + react-icons/fa/spoon.d.ts | 3 + react-icons/fa/spotify.d.ts | 3 + react-icons/fa/square-o.d.ts | 3 + react-icons/fa/square.d.ts | 3 + react-icons/fa/stack-exchange.d.ts | 3 + react-icons/fa/stack-overflow.d.ts | 3 + react-icons/fa/star-half-empty.d.ts | 3 + react-icons/fa/star-half.d.ts | 3 + react-icons/fa/star-o.d.ts | 3 + react-icons/fa/star.d.ts | 3 + react-icons/fa/steam-square.d.ts | 3 + react-icons/fa/steam.d.ts | 3 + react-icons/fa/step-backward.d.ts | 3 + react-icons/fa/step-forward.d.ts | 3 + react-icons/fa/stethoscope.d.ts | 3 + react-icons/fa/sticky-note-o.d.ts | 3 + react-icons/fa/sticky-note.d.ts | 3 + react-icons/fa/stop-circle-o.d.ts | 3 + react-icons/fa/stop-circle.d.ts | 3 + react-icons/fa/stop.d.ts | 3 + react-icons/fa/street-view.d.ts | 3 + react-icons/fa/strikethrough.d.ts | 3 + react-icons/fa/stumbleupon-circle.d.ts | 3 + react-icons/fa/stumbleupon.d.ts | 3 + react-icons/fa/subscript.d.ts | 3 + react-icons/fa/subway.d.ts | 3 + react-icons/fa/suitcase.d.ts | 3 + react-icons/fa/sun-o.d.ts | 3 + react-icons/fa/superscript.d.ts | 3 + react-icons/fa/table.d.ts | 3 + react-icons/fa/tablet.d.ts | 3 + react-icons/fa/tag.d.ts | 3 + react-icons/fa/tags.d.ts | 3 + react-icons/fa/tasks.d.ts | 3 + react-icons/fa/television.d.ts | 3 + react-icons/fa/tencent-weibo.d.ts | 3 + react-icons/fa/terminal.d.ts | 3 + react-icons/fa/text-height.d.ts | 3 + react-icons/fa/text-width.d.ts | 3 + react-icons/fa/th-large.d.ts | 3 + react-icons/fa/th-list.d.ts | 3 + react-icons/fa/th.d.ts | 3 + react-icons/fa/thumb-tack.d.ts | 3 + react-icons/fa/thumbs-down.d.ts | 3 + react-icons/fa/thumbs-o-down.d.ts | 3 + react-icons/fa/thumbs-o-up.d.ts | 3 + react-icons/fa/thumbs-up.d.ts | 3 + react-icons/fa/ticket.d.ts | 3 + react-icons/fa/times-circle-o.d.ts | 3 + react-icons/fa/times-circle.d.ts | 3 + react-icons/fa/tint.d.ts | 3 + react-icons/fa/toggle-off.d.ts | 3 + react-icons/fa/toggle-on.d.ts | 3 + react-icons/fa/trademark.d.ts | 3 + react-icons/fa/train.d.ts | 3 + react-icons/fa/transgender-alt.d.ts | 3 + react-icons/fa/trash-o.d.ts | 3 + react-icons/fa/trash.d.ts | 3 + react-icons/fa/tree.d.ts | 3 + react-icons/fa/trello.d.ts | 3 + react-icons/fa/tripadvisor.d.ts | 3 + react-icons/fa/trophy.d.ts | 3 + react-icons/fa/truck.d.ts | 3 + react-icons/fa/try.d.ts | 3 + react-icons/fa/tty.d.ts | 3 + react-icons/fa/tumblr-square.d.ts | 3 + react-icons/fa/tumblr.d.ts | 3 + react-icons/fa/twitch.d.ts | 3 + react-icons/fa/twitter-square.d.ts | 3 + react-icons/fa/twitter.d.ts | 3 + react-icons/fa/umbrella.d.ts | 3 + react-icons/fa/underline.d.ts | 3 + react-icons/fa/universal-access.d.ts | 3 + react-icons/fa/unlock-alt.d.ts | 3 + react-icons/fa/unlock.d.ts | 3 + react-icons/fa/upload.d.ts | 3 + react-icons/fa/usb.d.ts | 3 + react-icons/fa/user-md.d.ts | 3 + react-icons/fa/user-plus.d.ts | 3 + react-icons/fa/user-secret.d.ts | 3 + react-icons/fa/user-times.d.ts | 3 + react-icons/fa/user.d.ts | 3 + react-icons/fa/venus-double.d.ts | 3 + react-icons/fa/venus-mars.d.ts | 3 + react-icons/fa/venus.d.ts | 3 + react-icons/fa/viacoin.d.ts | 3 + react-icons/fa/viadeo-square.d.ts | 3 + react-icons/fa/viadeo.d.ts | 3 + react-icons/fa/video-camera.d.ts | 3 + react-icons/fa/vimeo-square.d.ts | 3 + react-icons/fa/vimeo.d.ts | 3 + react-icons/fa/vine.d.ts | 3 + react-icons/fa/vk.d.ts | 3 + react-icons/fa/volume-control-phone.d.ts | 3 + react-icons/fa/volume-down.d.ts | 3 + react-icons/fa/volume-off.d.ts | 3 + react-icons/fa/volume-up.d.ts | 3 + react-icons/fa/wechat.d.ts | 3 + react-icons/fa/weibo.d.ts | 3 + react-icons/fa/whatsapp.d.ts | 3 + react-icons/fa/wheelchair-alt.d.ts | 3 + react-icons/fa/wheelchair.d.ts | 3 + react-icons/fa/wifi.d.ts | 3 + react-icons/fa/wikipedia-w.d.ts | 3 + react-icons/fa/windows.d.ts | 3 + react-icons/fa/wordpress.d.ts | 3 + react-icons/fa/wpbeginner.d.ts | 3 + react-icons/fa/wpforms.d.ts | 3 + react-icons/fa/wrench.d.ts | 3 + react-icons/fa/xing-square.d.ts | 3 + react-icons/fa/xing.d.ts | 3 + react-icons/fa/y-combinator.d.ts | 3 + react-icons/fa/yahoo.d.ts | 3 + react-icons/fa/yelp.d.ts | 3 + react-icons/fa/youtube-play.d.ts | 3 + react-icons/fa/youtube-square.d.ts | 3 + react-icons/fa/youtube.d.ts | 3 + react-icons/go/alert.d.ts | 3 + react-icons/go/alignment-align.d.ts | 3 + react-icons/go/alignment-aligned-to.d.ts | 3 + react-icons/go/alignment-unalign.d.ts | 3 + react-icons/go/arrow-down.d.ts | 3 + react-icons/go/arrow-left.d.ts | 3 + react-icons/go/arrow-right.d.ts | 3 + react-icons/go/arrow-small-down.d.ts | 3 + react-icons/go/arrow-small-left.d.ts | 3 + react-icons/go/arrow-small-right.d.ts | 3 + react-icons/go/arrow-small-up.d.ts | 3 + react-icons/go/arrow-up.d.ts | 3 + react-icons/go/beer.d.ts | 3 + react-icons/go/book.d.ts | 3 + react-icons/go/bookmark.d.ts | 3 + react-icons/go/briefcase.d.ts | 3 + react-icons/go/broadcast.d.ts | 3 + react-icons/go/browser.d.ts | 3 + react-icons/go/bug.d.ts | 3 + react-icons/go/calendar.d.ts | 3 + react-icons/go/check.d.ts | 3 + react-icons/go/checklist.d.ts | 3 + react-icons/go/chevron-down.d.ts | 3 + react-icons/go/chevron-left.d.ts | 3 + react-icons/go/chevron-right.d.ts | 3 + react-icons/go/chevron-up.d.ts | 3 + react-icons/go/circle-slash.d.ts | 3 + react-icons/go/circuit-board.d.ts | 3 + react-icons/go/clippy.d.ts | 3 + react-icons/go/clock.d.ts | 3 + react-icons/go/cloud-download.d.ts | 3 + react-icons/go/cloud-upload.d.ts | 3 + react-icons/go/code.d.ts | 3 + react-icons/go/color-mode.d.ts | 3 + react-icons/go/comment-discussion.d.ts | 3 + react-icons/go/comment.d.ts | 3 + react-icons/go/credit-card.d.ts | 3 + react-icons/go/dash.d.ts | 3 + react-icons/go/dashboard.d.ts | 3 + react-icons/go/database.d.ts | 3 + react-icons/go/device-camera-video.d.ts | 3 + react-icons/go/device-camera.d.ts | 3 + react-icons/go/device-desktop.d.ts | 3 + react-icons/go/device-mobile.d.ts | 3 + react-icons/go/diff-added.d.ts | 3 + react-icons/go/diff-ignored.d.ts | 3 + react-icons/go/diff-modified.d.ts | 3 + react-icons/go/diff-removed.d.ts | 3 + react-icons/go/diff-renamed.d.ts | 3 + react-icons/go/diff.d.ts | 3 + react-icons/go/ellipsis.d.ts | 3 + react-icons/go/eye.d.ts | 3 + react-icons/go/file-binary.d.ts | 3 + react-icons/go/file-code.d.ts | 3 + react-icons/go/file-directory.d.ts | 3 + react-icons/go/file-media.d.ts | 3 + react-icons/go/file-pdf.d.ts | 3 + react-icons/go/file-submodule.d.ts | 3 + react-icons/go/file-symlink-directory.d.ts | 3 + react-icons/go/file-symlink-file.d.ts | 3 + react-icons/go/file-text.d.ts | 3 + react-icons/go/file-zip.d.ts | 3 + react-icons/go/flame.d.ts | 3 + react-icons/go/fold.d.ts | 3 + react-icons/go/gear.d.ts | 3 + react-icons/go/gift.d.ts | 3 + react-icons/go/gist-secret.d.ts | 3 + react-icons/go/gist.d.ts | 3 + react-icons/go/git-branch.d.ts | 3 + react-icons/go/git-commit.d.ts | 3 + react-icons/go/git-compare.d.ts | 3 + react-icons/go/git-merge.d.ts | 3 + react-icons/go/git-pull-request.d.ts | 3 + react-icons/go/globe.d.ts | 3 + react-icons/go/graph.d.ts | 3 + react-icons/go/heart.d.ts | 3 + react-icons/go/history.d.ts | 3 + react-icons/go/home.d.ts | 3 + react-icons/go/horizontal-rule.d.ts | 3 + react-icons/go/hourglass.d.ts | 3 + react-icons/go/hubot.d.ts | 3 + react-icons/go/inbox.d.ts | 3 + react-icons/go/index.d.ts | 354 ++ react-icons/go/info.d.ts | 3 + react-icons/go/issue-closed.d.ts | 3 + react-icons/go/issue-opened.d.ts | 3 + react-icons/go/issue-reopened.d.ts | 3 + react-icons/go/jersey.d.ts | 3 + react-icons/go/jump-down.d.ts | 3 + react-icons/go/jump-left.d.ts | 3 + react-icons/go/jump-right.d.ts | 3 + react-icons/go/jump-up.d.ts | 3 + react-icons/go/key.d.ts | 3 + react-icons/go/keyboard.d.ts | 3 + react-icons/go/law.d.ts | 3 + react-icons/go/light-bulb.d.ts | 3 + react-icons/go/link-external.d.ts | 3 + react-icons/go/link.d.ts | 3 + react-icons/go/list-ordered.d.ts | 3 + react-icons/go/list-unordered.d.ts | 3 + react-icons/go/location.d.ts | 3 + react-icons/go/lock.d.ts | 3 + react-icons/go/logo-github.d.ts | 3 + react-icons/go/mail-read.d.ts | 3 + react-icons/go/mail-reply.d.ts | 3 + react-icons/go/mail.d.ts | 3 + react-icons/go/mark-github.d.ts | 3 + react-icons/go/markdown.d.ts | 3 + react-icons/go/megaphone.d.ts | 3 + react-icons/go/mention.d.ts | 3 + react-icons/go/microscope.d.ts | 3 + react-icons/go/milestone.d.ts | 3 + react-icons/go/mirror.d.ts | 3 + react-icons/go/mortar-board.d.ts | 3 + react-icons/go/move-down.d.ts | 3 + react-icons/go/move-left.d.ts | 3 + react-icons/go/move-right.d.ts | 3 + react-icons/go/move-up.d.ts | 3 + react-icons/go/mute.d.ts | 3 + react-icons/go/no-newline.d.ts | 3 + react-icons/go/octoface.d.ts | 3 + react-icons/go/organization.d.ts | 3 + react-icons/go/package.d.ts | 3 + react-icons/go/paintcan.d.ts | 3 + react-icons/go/pencil.d.ts | 3 + react-icons/go/person.d.ts | 3 + react-icons/go/pin.d.ts | 3 + react-icons/go/playback-fast-forward.d.ts | 3 + react-icons/go/playback-pause.d.ts | 3 + react-icons/go/playback-play.d.ts | 3 + react-icons/go/playback-rewind.d.ts | 3 + react-icons/go/plug.d.ts | 3 + react-icons/go/plus.d.ts | 3 + react-icons/go/podium.d.ts | 3 + react-icons/go/primitive-dot.d.ts | 3 + react-icons/go/primitive-square.d.ts | 3 + react-icons/go/pulse.d.ts | 3 + react-icons/go/puzzle.d.ts | 3 + react-icons/go/question.d.ts | 3 + react-icons/go/quote.d.ts | 3 + react-icons/go/radio-tower.d.ts | 3 + react-icons/go/repo-clone.d.ts | 3 + react-icons/go/repo-force-push.d.ts | 3 + react-icons/go/repo-forked.d.ts | 3 + react-icons/go/repo-pull.d.ts | 3 + react-icons/go/repo-push.d.ts | 3 + react-icons/go/repo.d.ts | 3 + react-icons/go/rocket.d.ts | 3 + react-icons/go/rss.d.ts | 3 + react-icons/go/ruby.d.ts | 3 + react-icons/go/screen-full.d.ts | 3 + react-icons/go/screen-normal.d.ts | 3 + react-icons/go/search.d.ts | 3 + react-icons/go/server.d.ts | 3 + react-icons/go/settings.d.ts | 3 + react-icons/go/sign-in.d.ts | 3 + react-icons/go/sign-out.d.ts | 3 + react-icons/go/split.d.ts | 3 + react-icons/go/squirrel.d.ts | 3 + react-icons/go/star.d.ts | 3 + react-icons/go/steps.d.ts | 3 + react-icons/go/stop.d.ts | 3 + react-icons/go/sync.d.ts | 3 + react-icons/go/tag.d.ts | 3 + react-icons/go/telescope.d.ts | 3 + react-icons/go/terminal.d.ts | 3 + react-icons/go/three-bars.d.ts | 3 + react-icons/go/tools.d.ts | 3 + react-icons/go/trashcan.d.ts | 3 + react-icons/go/triangle-down.d.ts | 3 + react-icons/go/triangle-left.d.ts | 3 + react-icons/go/triangle-right.d.ts | 3 + react-icons/go/triangle-up.d.ts | 3 + react-icons/go/unfold.d.ts | 3 + react-icons/go/unmute.d.ts | 3 + react-icons/go/versions.d.ts | 3 + react-icons/go/x.d.ts | 3 + react-icons/go/zap.d.ts | 3 + react-icons/index.d.ts | 4 + react-icons/io/alert-circled.d.ts | 3 + react-icons/io/alert.d.ts | 3 + react-icons/io/android-add-circle.d.ts | 3 + react-icons/io/android-add.d.ts | 3 + react-icons/io/android-alarm-clock.d.ts | 3 + react-icons/io/android-alert.d.ts | 3 + react-icons/io/android-apps.d.ts | 3 + react-icons/io/android-archive.d.ts | 3 + react-icons/io/android-arrow-back.d.ts | 3 + react-icons/io/android-arrow-down.d.ts | 3 + .../io/android-arrow-dropdown-circle.d.ts | 3 + react-icons/io/android-arrow-dropdown.d.ts | 3 + .../io/android-arrow-dropleft-circle.d.ts | 3 + react-icons/io/android-arrow-dropleft.d.ts | 3 + .../io/android-arrow-dropright-circle.d.ts | 3 + react-icons/io/android-arrow-dropright.d.ts | 3 + .../io/android-arrow-dropup-circle.d.ts | 3 + react-icons/io/android-arrow-dropup.d.ts | 3 + react-icons/io/android-arrow-forward.d.ts | 3 + react-icons/io/android-arrow-up.d.ts | 3 + react-icons/io/android-attach.d.ts | 3 + react-icons/io/android-bar.d.ts | 3 + react-icons/io/android-bicycle.d.ts | 3 + react-icons/io/android-boat.d.ts | 3 + react-icons/io/android-bookmark.d.ts | 3 + react-icons/io/android-bulb.d.ts | 3 + react-icons/io/android-bus.d.ts | 3 + react-icons/io/android-calendar.d.ts | 3 + react-icons/io/android-call.d.ts | 3 + react-icons/io/android-camera.d.ts | 3 + react-icons/io/android-cancel.d.ts | 3 + react-icons/io/android-car.d.ts | 3 + react-icons/io/android-cart.d.ts | 3 + react-icons/io/android-chat.d.ts | 3 + react-icons/io/android-checkbox-blank.d.ts | 3 + .../io/android-checkbox-outline-blank.d.ts | 3 + react-icons/io/android-checkbox-outline.d.ts | 3 + react-icons/io/android-checkbox.d.ts | 3 + react-icons/io/android-checkmark-circle.d.ts | 3 + react-icons/io/android-clipboard.d.ts | 3 + react-icons/io/android-close.d.ts | 3 + react-icons/io/android-cloud-circle.d.ts | 3 + react-icons/io/android-cloud-done.d.ts | 3 + react-icons/io/android-cloud-outline.d.ts | 3 + react-icons/io/android-cloud.d.ts | 3 + react-icons/io/android-color-palette.d.ts | 3 + react-icons/io/android-compass.d.ts | 3 + react-icons/io/android-contact.d.ts | 3 + react-icons/io/android-contacts.d.ts | 3 + react-icons/io/android-contract.d.ts | 3 + react-icons/io/android-create.d.ts | 3 + react-icons/io/android-delete.d.ts | 3 + react-icons/io/android-desktop.d.ts | 3 + react-icons/io/android-document.d.ts | 3 + react-icons/io/android-done-all.d.ts | 3 + react-icons/io/android-done.d.ts | 3 + react-icons/io/android-download.d.ts | 3 + react-icons/io/android-drafts.d.ts | 3 + react-icons/io/android-exit.d.ts | 3 + react-icons/io/android-expand.d.ts | 3 + react-icons/io/android-favorite-outline.d.ts | 3 + react-icons/io/android-favorite.d.ts | 3 + react-icons/io/android-film.d.ts | 3 + react-icons/io/android-folder-open.d.ts | 3 + react-icons/io/android-folder.d.ts | 3 + react-icons/io/android-funnel.d.ts | 3 + react-icons/io/android-globe.d.ts | 3 + react-icons/io/android-hand.d.ts | 3 + react-icons/io/android-hangout.d.ts | 3 + react-icons/io/android-happy.d.ts | 3 + react-icons/io/android-home.d.ts | 3 + react-icons/io/android-image.d.ts | 3 + react-icons/io/android-laptop.d.ts | 3 + react-icons/io/android-list.d.ts | 3 + react-icons/io/android-locate.d.ts | 3 + react-icons/io/android-lock.d.ts | 3 + react-icons/io/android-mail.d.ts | 3 + react-icons/io/android-map.d.ts | 3 + react-icons/io/android-menu.d.ts | 3 + react-icons/io/android-microphone-off.d.ts | 3 + react-icons/io/android-microphone.d.ts | 3 + react-icons/io/android-more-horizontal.d.ts | 3 + react-icons/io/android-more-vertical.d.ts | 3 + react-icons/io/android-navigate.d.ts | 3 + .../io/android-notifications-none.d.ts | 3 + react-icons/io/android-notifications-off.d.ts | 3 + react-icons/io/android-notifications.d.ts | 3 + react-icons/io/android-open.d.ts | 3 + react-icons/io/android-options.d.ts | 3 + react-icons/io/android-people.d.ts | 3 + react-icons/io/android-person-add.d.ts | 3 + react-icons/io/android-person.d.ts | 3 + react-icons/io/android-phone-landscape.d.ts | 3 + react-icons/io/android-phone-portrait.d.ts | 3 + react-icons/io/android-pin.d.ts | 3 + react-icons/io/android-plane.d.ts | 3 + react-icons/io/android-playstore.d.ts | 3 + react-icons/io/android-print.d.ts | 3 + react-icons/io/android-radio-button-off.d.ts | 3 + react-icons/io/android-radio-button-on.d.ts | 3 + react-icons/io/android-refresh.d.ts | 3 + react-icons/io/android-remove-circle.d.ts | 3 + react-icons/io/android-remove.d.ts | 3 + react-icons/io/android-restaurant.d.ts | 3 + react-icons/io/android-sad.d.ts | 3 + react-icons/io/android-search.d.ts | 3 + react-icons/io/android-send.d.ts | 3 + react-icons/io/android-settings.d.ts | 3 + react-icons/io/android-share-alt.d.ts | 3 + react-icons/io/android-share.d.ts | 3 + react-icons/io/android-star-half.d.ts | 3 + react-icons/io/android-star-outline.d.ts | 3 + react-icons/io/android-star.d.ts | 3 + react-icons/io/android-stopwatch.d.ts | 3 + react-icons/io/android-subway.d.ts | 3 + react-icons/io/android-sunny.d.ts | 3 + react-icons/io/android-sync.d.ts | 3 + react-icons/io/android-textsms.d.ts | 3 + react-icons/io/android-time.d.ts | 3 + react-icons/io/android-train.d.ts | 3 + react-icons/io/android-unlock.d.ts | 3 + react-icons/io/android-upload.d.ts | 3 + react-icons/io/android-volume-down.d.ts | 3 + react-icons/io/android-volume-mute.d.ts | 3 + react-icons/io/android-volume-off.d.ts | 3 + react-icons/io/android-volume-up.d.ts | 3 + react-icons/io/android-walk.d.ts | 3 + react-icons/io/android-warning.d.ts | 3 + react-icons/io/android-watch.d.ts | 3 + react-icons/io/android-wifi.d.ts | 3 + react-icons/io/aperture.d.ts | 3 + react-icons/io/archive.d.ts | 3 + react-icons/io/arrow-down-a.d.ts | 3 + react-icons/io/arrow-down-b.d.ts | 3 + react-icons/io/arrow-down-c.d.ts | 3 + react-icons/io/arrow-expand.d.ts | 3 + react-icons/io/arrow-graph-down-left.d.ts | 3 + react-icons/io/arrow-graph-down-right.d.ts | 3 + react-icons/io/arrow-graph-up-left.d.ts | 3 + react-icons/io/arrow-graph-up-right.d.ts | 3 + react-icons/io/arrow-left-a.d.ts | 3 + react-icons/io/arrow-left-b.d.ts | 3 + react-icons/io/arrow-left-c.d.ts | 3 + react-icons/io/arrow-move.d.ts | 3 + react-icons/io/arrow-resize.d.ts | 3 + react-icons/io/arrow-return-left.d.ts | 3 + react-icons/io/arrow-return-right.d.ts | 3 + react-icons/io/arrow-right-a.d.ts | 3 + react-icons/io/arrow-right-b.d.ts | 3 + react-icons/io/arrow-right-c.d.ts | 3 + react-icons/io/arrow-shrink.d.ts | 3 + react-icons/io/arrow-swap.d.ts | 3 + react-icons/io/arrow-up-a.d.ts | 3 + react-icons/io/arrow-up-b.d.ts | 3 + react-icons/io/arrow-up-c.d.ts | 3 + react-icons/io/asterisk.d.ts | 3 + react-icons/io/at.d.ts | 3 + react-icons/io/backspace-outline.d.ts | 3 + react-icons/io/backspace.d.ts | 3 + react-icons/io/bag.d.ts | 3 + react-icons/io/battery-charging.d.ts | 3 + react-icons/io/battery-empty.d.ts | 3 + react-icons/io/battery-full.d.ts | 3 + react-icons/io/battery-half.d.ts | 3 + react-icons/io/battery-low.d.ts | 3 + react-icons/io/beaker.d.ts | 3 + react-icons/io/beer.d.ts | 3 + react-icons/io/bluetooth.d.ts | 3 + react-icons/io/bonfire.d.ts | 3 + react-icons/io/bookmark.d.ts | 3 + react-icons/io/bowtie.d.ts | 3 + react-icons/io/briefcase.d.ts | 3 + react-icons/io/bug.d.ts | 3 + react-icons/io/calculator.d.ts | 3 + react-icons/io/calendar.d.ts | 3 + react-icons/io/camera.d.ts | 3 + react-icons/io/card.d.ts | 3 + react-icons/io/cash.d.ts | 3 + react-icons/io/chatbox-working.d.ts | 3 + react-icons/io/chatbox.d.ts | 3 + react-icons/io/chatboxes.d.ts | 3 + react-icons/io/chatbubble-working.d.ts | 3 + react-icons/io/chatbubble.d.ts | 3 + react-icons/io/chatbubbles.d.ts | 3 + react-icons/io/checkmark-circled.d.ts | 3 + react-icons/io/checkmark-round.d.ts | 3 + react-icons/io/checkmark.d.ts | 3 + react-icons/io/chevron-down.d.ts | 3 + react-icons/io/chevron-left.d.ts | 3 + react-icons/io/chevron-right.d.ts | 3 + react-icons/io/chevron-up.d.ts | 3 + react-icons/io/clipboard.d.ts | 3 + react-icons/io/clock.d.ts | 3 + react-icons/io/close-circled.d.ts | 3 + react-icons/io/close-round.d.ts | 3 + react-icons/io/close.d.ts | 3 + react-icons/io/closed-captioning.d.ts | 3 + react-icons/io/cloud.d.ts | 3 + react-icons/io/code-download.d.ts | 3 + react-icons/io/code-working.d.ts | 3 + react-icons/io/code.d.ts | 3 + react-icons/io/coffee.d.ts | 3 + react-icons/io/compass.d.ts | 3 + react-icons/io/compose.d.ts | 3 + react-icons/io/connectbars.d.ts | 3 + react-icons/io/contrast.d.ts | 3 + react-icons/io/crop.d.ts | 3 + react-icons/io/cube.d.ts | 3 + react-icons/io/disc.d.ts | 3 + react-icons/io/document-text.d.ts | 3 + react-icons/io/document.d.ts | 3 + react-icons/io/drag.d.ts | 3 + react-icons/io/earth.d.ts | 3 + react-icons/io/easel.d.ts | 3 + react-icons/io/edit.d.ts | 3 + react-icons/io/egg.d.ts | 3 + react-icons/io/eject.d.ts | 3 + react-icons/io/email-unread.d.ts | 3 + react-icons/io/email.d.ts | 3 + react-icons/io/erlenmeyer-flask-bubbles.d.ts | 3 + react-icons/io/erlenmeyer-flask.d.ts | 3 + react-icons/io/eye-disabled.d.ts | 3 + react-icons/io/eye.d.ts | 3 + react-icons/io/female.d.ts | 3 + react-icons/io/filing.d.ts | 3 + react-icons/io/film-marker.d.ts | 3 + react-icons/io/fireball.d.ts | 3 + react-icons/io/flag.d.ts | 3 + react-icons/io/flame.d.ts | 3 + react-icons/io/flash-off.d.ts | 3 + react-icons/io/flash.d.ts | 3 + react-icons/io/folder.d.ts | 3 + react-icons/io/fork-repo.d.ts | 3 + react-icons/io/fork.d.ts | 3 + react-icons/io/forward.d.ts | 3 + react-icons/io/funnel.d.ts | 3 + react-icons/io/gear-a.d.ts | 3 + react-icons/io/gear-b.d.ts | 3 + react-icons/io/grid.d.ts | 3 + react-icons/io/hammer.d.ts | 3 + react-icons/io/happy-outline.d.ts | 3 + react-icons/io/happy.d.ts | 3 + react-icons/io/headphone.d.ts | 3 + react-icons/io/heart-broken.d.ts | 3 + react-icons/io/heart.d.ts | 3 + react-icons/io/help-buoy.d.ts | 3 + react-icons/io/help-circled.d.ts | 3 + react-icons/io/help.d.ts | 3 + react-icons/io/home.d.ts | 3 + react-icons/io/icecream.d.ts | 3 + react-icons/io/image.d.ts | 3 + react-icons/io/images.d.ts | 3 + react-icons/io/index.d.ts | 1466 +++++++++ react-icons/io/informatcircled.d.ts | 3 + react-icons/io/information.d.ts | 3 + react-icons/io/ionic.d.ts | 3 + react-icons/io/ios-alarm-outline.d.ts | 3 + react-icons/io/ios-alarm.d.ts | 3 + react-icons/io/ios-albums-outline.d.ts | 3 + react-icons/io/ios-albums.d.ts | 3 + .../io/ios-americanfootball-outline.d.ts | 3 + react-icons/io/ios-americanfootball.d.ts | 3 + react-icons/io/ios-analytics-outline.d.ts | 3 + react-icons/io/ios-analytics.d.ts | 3 + react-icons/io/ios-arrow-back.d.ts | 3 + react-icons/io/ios-arrow-down.d.ts | 3 + react-icons/io/ios-arrow-forward.d.ts | 3 + react-icons/io/ios-arrow-left.d.ts | 3 + react-icons/io/ios-arrow-right.d.ts | 3 + react-icons/io/ios-arrow-thin-down.d.ts | 3 + react-icons/io/ios-arrow-thin-left.d.ts | 3 + react-icons/io/ios-arrow-thin-right.d.ts | 3 + react-icons/io/ios-arrow-thin-up.d.ts | 3 + react-icons/io/ios-arrow-up.d.ts | 3 + react-icons/io/ios-at-outline.d.ts | 3 + react-icons/io/ios-at.d.ts | 3 + react-icons/io/ios-barcode-outline.d.ts | 3 + react-icons/io/ios-barcode.d.ts | 3 + react-icons/io/ios-baseball-outline.d.ts | 3 + react-icons/io/ios-baseball.d.ts | 3 + react-icons/io/ios-basketball-outline.d.ts | 3 + react-icons/io/ios-basketball.d.ts | 3 + react-icons/io/ios-bell-outline.d.ts | 3 + react-icons/io/ios-bell.d.ts | 3 + react-icons/io/ios-body-outline.d.ts | 3 + react-icons/io/ios-body.d.ts | 3 + react-icons/io/ios-bolt-outline.d.ts | 3 + react-icons/io/ios-bolt.d.ts | 3 + react-icons/io/ios-book-outline.d.ts | 3 + react-icons/io/ios-book.d.ts | 3 + react-icons/io/ios-bookmarks-outline.d.ts | 3 + react-icons/io/ios-bookmarks.d.ts | 3 + react-icons/io/ios-box-outline.d.ts | 3 + react-icons/io/ios-box.d.ts | 3 + react-icons/io/ios-briefcase-outline.d.ts | 3 + react-icons/io/ios-briefcase.d.ts | 3 + react-icons/io/ios-browsers-outline.d.ts | 3 + react-icons/io/ios-browsers.d.ts | 3 + react-icons/io/ios-calculator-outline.d.ts | 3 + react-icons/io/ios-calculator.d.ts | 3 + react-icons/io/ios-calendar-outline.d.ts | 3 + react-icons/io/ios-calendar.d.ts | 3 + react-icons/io/ios-camera-outline.d.ts | 3 + react-icons/io/ios-camera.d.ts | 3 + react-icons/io/ios-cart-outline.d.ts | 3 + react-icons/io/ios-cart.d.ts | 3 + react-icons/io/ios-chatboxes-outline.d.ts | 3 + react-icons/io/ios-chatboxes.d.ts | 3 + react-icons/io/ios-chatbubble-outline.d.ts | 3 + react-icons/io/ios-chatbubble.d.ts | 3 + react-icons/io/ios-checkmark-empty.d.ts | 3 + react-icons/io/ios-checkmark-outline.d.ts | 3 + react-icons/io/ios-checkmark.d.ts | 3 + react-icons/io/ios-circle-filled.d.ts | 3 + react-icons/io/ios-circle-outline.d.ts | 3 + react-icons/io/ios-clock-outline.d.ts | 3 + react-icons/io/ios-clock.d.ts | 3 + react-icons/io/ios-close-empty.d.ts | 3 + react-icons/io/ios-close-outline.d.ts | 3 + react-icons/io/ios-close.d.ts | 3 + .../io/ios-cloud-download-outline.d.ts | 3 + react-icons/io/ios-cloud-download.d.ts | 3 + react-icons/io/ios-cloud-outline.d.ts | 3 + react-icons/io/ios-cloud-upload-outline.d.ts | 3 + react-icons/io/ios-cloud-upload.d.ts | 3 + react-icons/io/ios-cloud.d.ts | 3 + react-icons/io/ios-cloudy-night-outline.d.ts | 3 + react-icons/io/ios-cloudy-night.d.ts | 3 + react-icons/io/ios-cloudy-outline.d.ts | 3 + react-icons/io/ios-cloudy.d.ts | 3 + react-icons/io/ios-cog-outline.d.ts | 3 + react-icons/io/ios-cog.d.ts | 3 + react-icons/io/ios-color-filter-outline.d.ts | 3 + react-icons/io/ios-color-filter.d.ts | 3 + react-icons/io/ios-color-wand-outline.d.ts | 3 + react-icons/io/ios-color-wand.d.ts | 3 + react-icons/io/ios-compose-outline.d.ts | 3 + react-icons/io/ios-compose.d.ts | 3 + react-icons/io/ios-contact-outline.d.ts | 3 + react-icons/io/ios-contact.d.ts | 3 + react-icons/io/ios-copy-outline.d.ts | 3 + react-icons/io/ios-copy.d.ts | 3 + react-icons/io/ios-crop-strong.d.ts | 3 + react-icons/io/ios-crop.d.ts | 3 + react-icons/io/ios-download-outline.d.ts | 3 + react-icons/io/ios-download.d.ts | 3 + react-icons/io/ios-drag.d.ts | 3 + react-icons/io/ios-email-outline.d.ts | 3 + react-icons/io/ios-email.d.ts | 3 + react-icons/io/ios-eye-outline.d.ts | 3 + react-icons/io/ios-eye.d.ts | 3 + react-icons/io/ios-fastforward-outline.d.ts | 3 + react-icons/io/ios-fastforward.d.ts | 3 + react-icons/io/ios-filing-outline.d.ts | 3 + react-icons/io/ios-filing.d.ts | 3 + react-icons/io/ios-film-outline.d.ts | 3 + react-icons/io/ios-film.d.ts | 3 + react-icons/io/ios-flag-outline.d.ts | 3 + react-icons/io/ios-flag.d.ts | 3 + react-icons/io/ios-flame-outline.d.ts | 3 + react-icons/io/ios-flame.d.ts | 3 + react-icons/io/ios-flask-outline.d.ts | 3 + react-icons/io/ios-flask.d.ts | 3 + react-icons/io/ios-flower-outline.d.ts | 3 + react-icons/io/ios-flower.d.ts | 3 + react-icons/io/ios-folder-outline.d.ts | 3 + react-icons/io/ios-folder.d.ts | 3 + react-icons/io/ios-football-outline.d.ts | 3 + react-icons/io/ios-football.d.ts | 3 + .../io/ios-game-controller-a-outline.d.ts | 3 + react-icons/io/ios-game-controller-a.d.ts | 3 + .../io/ios-game-controller-b-outline.d.ts | 3 + react-icons/io/ios-game-controller-b.d.ts | 3 + react-icons/io/ios-gear-outline.d.ts | 3 + react-icons/io/ios-gear.d.ts | 3 + react-icons/io/ios-glasses-outline.d.ts | 3 + react-icons/io/ios-glasses.d.ts | 3 + react-icons/io/ios-grid-view-outline.d.ts | 3 + react-icons/io/ios-grid-view.d.ts | 3 + react-icons/io/ios-heart-outline.d.ts | 3 + react-icons/io/ios-heart.d.ts | 3 + react-icons/io/ios-help-empty.d.ts | 3 + react-icons/io/ios-help-outline.d.ts | 3 + react-icons/io/ios-help.d.ts | 3 + react-icons/io/ios-home-outline.d.ts | 3 + react-icons/io/ios-home.d.ts | 3 + react-icons/io/ios-infinite-outline.d.ts | 3 + react-icons/io/ios-infinite.d.ts | 3 + react-icons/io/ios-informatempty.d.ts | 3 + react-icons/io/ios-information.d.ts | 3 + react-icons/io/ios-informatoutline.d.ts | 3 + react-icons/io/ios-ionic-outline.d.ts | 3 + react-icons/io/ios-keypad-outline.d.ts | 3 + react-icons/io/ios-keypad.d.ts | 3 + react-icons/io/ios-lightbulb-outline.d.ts | 3 + react-icons/io/ios-lightbulb.d.ts | 3 + react-icons/io/ios-list-outline.d.ts | 3 + react-icons/io/ios-list.d.ts | 3 + react-icons/io/ios-location.d.ts | 3 + react-icons/io/ios-locatoutline.d.ts | 3 + react-icons/io/ios-locked-outline.d.ts | 3 + react-icons/io/ios-locked.d.ts | 3 + react-icons/io/ios-loop-strong.d.ts | 3 + react-icons/io/ios-loop.d.ts | 3 + react-icons/io/ios-medical-outline.d.ts | 3 + react-icons/io/ios-medical.d.ts | 3 + react-icons/io/ios-medkit-outline.d.ts | 3 + react-icons/io/ios-medkit.d.ts | 3 + react-icons/io/ios-mic-off.d.ts | 3 + react-icons/io/ios-mic-outline.d.ts | 3 + react-icons/io/ios-mic.d.ts | 3 + react-icons/io/ios-minus-empty.d.ts | 3 + react-icons/io/ios-minus-outline.d.ts | 3 + react-icons/io/ios-minus.d.ts | 3 + react-icons/io/ios-monitor-outline.d.ts | 3 + react-icons/io/ios-monitor.d.ts | 3 + react-icons/io/ios-moon-outline.d.ts | 3 + react-icons/io/ios-moon.d.ts | 3 + react-icons/io/ios-more-outline.d.ts | 3 + react-icons/io/ios-more.d.ts | 3 + react-icons/io/ios-musical-note.d.ts | 3 + react-icons/io/ios-musical-notes.d.ts | 3 + react-icons/io/ios-navigate-outline.d.ts | 3 + react-icons/io/ios-navigate.d.ts | 3 + react-icons/io/ios-nutrition.d.ts | 3 + react-icons/io/ios-nutritoutline.d.ts | 3 + react-icons/io/ios-paper-outline.d.ts | 3 + react-icons/io/ios-paper.d.ts | 3 + react-icons/io/ios-paperplane-outline.d.ts | 3 + react-icons/io/ios-paperplane.d.ts | 3 + react-icons/io/ios-partlysunny-outline.d.ts | 3 + react-icons/io/ios-partlysunny.d.ts | 3 + react-icons/io/ios-pause-outline.d.ts | 3 + react-icons/io/ios-pause.d.ts | 3 + react-icons/io/ios-paw-outline.d.ts | 3 + react-icons/io/ios-paw.d.ts | 3 + react-icons/io/ios-people-outline.d.ts | 3 + react-icons/io/ios-people.d.ts | 3 + react-icons/io/ios-person-outline.d.ts | 3 + react-icons/io/ios-person.d.ts | 3 + react-icons/io/ios-personadd-outline.d.ts | 3 + react-icons/io/ios-personadd.d.ts | 3 + react-icons/io/ios-photos-outline.d.ts | 3 + react-icons/io/ios-photos.d.ts | 3 + react-icons/io/ios-pie-outline.d.ts | 3 + react-icons/io/ios-pie.d.ts | 3 + react-icons/io/ios-pint-outline.d.ts | 3 + react-icons/io/ios-pint.d.ts | 3 + react-icons/io/ios-play-outline.d.ts | 3 + react-icons/io/ios-play.d.ts | 3 + react-icons/io/ios-plus-empty.d.ts | 3 + react-icons/io/ios-plus-outline.d.ts | 3 + react-icons/io/ios-plus.d.ts | 3 + react-icons/io/ios-pricetag-outline.d.ts | 3 + react-icons/io/ios-pricetag.d.ts | 3 + react-icons/io/ios-pricetags-outline.d.ts | 3 + react-icons/io/ios-pricetags.d.ts | 3 + react-icons/io/ios-printer-outline.d.ts | 3 + react-icons/io/ios-printer.d.ts | 3 + react-icons/io/ios-pulse-strong.d.ts | 3 + react-icons/io/ios-pulse.d.ts | 3 + react-icons/io/ios-rainy-outline.d.ts | 3 + react-icons/io/ios-rainy.d.ts | 3 + react-icons/io/ios-recording-outline.d.ts | 3 + react-icons/io/ios-recording.d.ts | 3 + react-icons/io/ios-redo-outline.d.ts | 3 + react-icons/io/ios-redo.d.ts | 3 + react-icons/io/ios-refresh-empty.d.ts | 3 + react-icons/io/ios-refresh-outline.d.ts | 3 + react-icons/io/ios-refresh.d.ts | 3 + react-icons/io/ios-reload.d.ts | 3 + .../io/ios-reverse-camera-outline.d.ts | 3 + react-icons/io/ios-reverse-camera.d.ts | 3 + react-icons/io/ios-rewind-outline.d.ts | 3 + react-icons/io/ios-rewind.d.ts | 3 + react-icons/io/ios-rose-outline.d.ts | 3 + react-icons/io/ios-rose.d.ts | 3 + react-icons/io/ios-search-strong.d.ts | 3 + react-icons/io/ios-search.d.ts | 3 + react-icons/io/ios-settings-strong.d.ts | 3 + react-icons/io/ios-settings.d.ts | 3 + react-icons/io/ios-shuffle-strong.d.ts | 3 + react-icons/io/ios-shuffle.d.ts | 3 + react-icons/io/ios-skipbackward-outline.d.ts | 3 + react-icons/io/ios-skipbackward.d.ts | 3 + react-icons/io/ios-skipforward-outline.d.ts | 3 + react-icons/io/ios-skipforward.d.ts | 3 + react-icons/io/ios-snowy.d.ts | 3 + react-icons/io/ios-speedometer-outline.d.ts | 3 + react-icons/io/ios-speedometer.d.ts | 3 + react-icons/io/ios-star-half.d.ts | 3 + react-icons/io/ios-star-outline.d.ts | 3 + react-icons/io/ios-star.d.ts | 3 + react-icons/io/ios-stopwatch-outline.d.ts | 3 + react-icons/io/ios-stopwatch.d.ts | 3 + react-icons/io/ios-sunny-outline.d.ts | 3 + react-icons/io/ios-sunny.d.ts | 3 + react-icons/io/ios-telephone-outline.d.ts | 3 + react-icons/io/ios-telephone.d.ts | 3 + react-icons/io/ios-tennisball-outline.d.ts | 3 + react-icons/io/ios-tennisball.d.ts | 3 + react-icons/io/ios-thunderstorm-outline.d.ts | 3 + react-icons/io/ios-thunderstorm.d.ts | 3 + react-icons/io/ios-time-outline.d.ts | 3 + react-icons/io/ios-time.d.ts | 3 + react-icons/io/ios-timer-outline.d.ts | 3 + react-icons/io/ios-timer.d.ts | 3 + react-icons/io/ios-toggle-outline.d.ts | 3 + react-icons/io/ios-toggle.d.ts | 3 + react-icons/io/ios-trash-outline.d.ts | 3 + react-icons/io/ios-trash.d.ts | 3 + react-icons/io/ios-undo-outline.d.ts | 3 + react-icons/io/ios-undo.d.ts | 3 + react-icons/io/ios-unlocked-outline.d.ts | 3 + react-icons/io/ios-unlocked.d.ts | 3 + react-icons/io/ios-upload-outline.d.ts | 3 + react-icons/io/ios-upload.d.ts | 3 + react-icons/io/ios-videocam-outline.d.ts | 3 + react-icons/io/ios-videocam.d.ts | 3 + react-icons/io/ios-volume-high.d.ts | 3 + react-icons/io/ios-volume-low.d.ts | 3 + react-icons/io/ios-wineglass-outline.d.ts | 3 + react-icons/io/ios-wineglass.d.ts | 3 + react-icons/io/ios-world-outline.d.ts | 3 + react-icons/io/ios-world.d.ts | 3 + react-icons/io/ipad.d.ts | 3 + react-icons/io/iphone.d.ts | 3 + react-icons/io/ipod.d.ts | 3 + react-icons/io/jet.d.ts | 3 + react-icons/io/key.d.ts | 3 + react-icons/io/knife.d.ts | 3 + react-icons/io/laptop.d.ts | 3 + react-icons/io/leaf.d.ts | 3 + react-icons/io/levels.d.ts | 3 + react-icons/io/lightbulb.d.ts | 3 + react-icons/io/link.d.ts | 3 + react-icons/io/load-a.d.ts | 3 + react-icons/io/load-b.d.ts | 3 + react-icons/io/load-c.d.ts | 3 + react-icons/io/load-d.d.ts | 3 + react-icons/io/location.d.ts | 3 + react-icons/io/lock-combination.d.ts | 3 + react-icons/io/locked.d.ts | 3 + react-icons/io/log-in.d.ts | 3 + react-icons/io/log-out.d.ts | 3 + react-icons/io/loop.d.ts | 3 + react-icons/io/magnet.d.ts | 3 + react-icons/io/male.d.ts | 3 + react-icons/io/man.d.ts | 3 + react-icons/io/map.d.ts | 3 + react-icons/io/medkit.d.ts | 3 + react-icons/io/merge.d.ts | 3 + react-icons/io/mic-a.d.ts | 3 + react-icons/io/mic-b.d.ts | 3 + react-icons/io/mic-c.d.ts | 3 + react-icons/io/minus-circled.d.ts | 3 + react-icons/io/minus-round.d.ts | 3 + react-icons/io/minus.d.ts | 3 + react-icons/io/model-s.d.ts | 3 + react-icons/io/monitor.d.ts | 3 + react-icons/io/more.d.ts | 3 + react-icons/io/mouse.d.ts | 3 + react-icons/io/music-note.d.ts | 3 + react-icons/io/navicon-round.d.ts | 3 + react-icons/io/navicon.d.ts | 3 + react-icons/io/navigate.d.ts | 3 + react-icons/io/network.d.ts | 3 + react-icons/io/no-smoking.d.ts | 3 + react-icons/io/nuclear.d.ts | 3 + react-icons/io/outlet.d.ts | 3 + react-icons/io/paintbrush.d.ts | 3 + react-icons/io/paintbucket.d.ts | 3 + react-icons/io/paper-airplane.d.ts | 3 + react-icons/io/paperclip.d.ts | 3 + react-icons/io/pause.d.ts | 3 + react-icons/io/person-add.d.ts | 3 + react-icons/io/person-stalker.d.ts | 3 + react-icons/io/person.d.ts | 3 + react-icons/io/pie-graph.d.ts | 3 + react-icons/io/pin.d.ts | 3 + react-icons/io/pinpoint.d.ts | 3 + react-icons/io/pizza.d.ts | 3 + react-icons/io/plane.d.ts | 3 + react-icons/io/planet.d.ts | 3 + react-icons/io/play.d.ts | 3 + react-icons/io/playstation.d.ts | 3 + react-icons/io/plus-circled.d.ts | 3 + react-icons/io/plus-round.d.ts | 3 + react-icons/io/plus.d.ts | 3 + react-icons/io/podium.d.ts | 3 + react-icons/io/pound.d.ts | 3 + react-icons/io/power.d.ts | 3 + react-icons/io/pricetag.d.ts | 3 + react-icons/io/pricetags.d.ts | 3 + react-icons/io/printer.d.ts | 3 + react-icons/io/pull-request.d.ts | 3 + react-icons/io/qr-scanner.d.ts | 3 + react-icons/io/quote.d.ts | 3 + react-icons/io/radio-waves.d.ts | 3 + react-icons/io/record.d.ts | 3 + react-icons/io/refresh.d.ts | 3 + react-icons/io/reply-all.d.ts | 3 + react-icons/io/reply.d.ts | 3 + react-icons/io/ribbon-a.d.ts | 3 + react-icons/io/ribbon-b.d.ts | 3 + react-icons/io/sad-outline.d.ts | 3 + react-icons/io/sad.d.ts | 3 + react-icons/io/scissors.d.ts | 3 + react-icons/io/search.d.ts | 3 + react-icons/io/settings.d.ts | 3 + react-icons/io/share.d.ts | 3 + react-icons/io/shuffle.d.ts | 3 + react-icons/io/skip-backward.d.ts | 3 + react-icons/io/skip-forward.d.ts | 3 + react-icons/io/social-android-outline.d.ts | 3 + react-icons/io/social-android.d.ts | 3 + react-icons/io/social-angular-outline.d.ts | 3 + react-icons/io/social-angular.d.ts | 3 + react-icons/io/social-apple-outline.d.ts | 3 + react-icons/io/social-apple.d.ts | 3 + react-icons/io/social-bitcoin-outline.d.ts | 3 + react-icons/io/social-bitcoin.d.ts | 3 + react-icons/io/social-buffer-outline.d.ts | 3 + react-icons/io/social-buffer.d.ts | 3 + react-icons/io/social-chrome-outline.d.ts | 3 + react-icons/io/social-chrome.d.ts | 3 + react-icons/io/social-codepen-outline.d.ts | 3 + react-icons/io/social-codepen.d.ts | 3 + react-icons/io/social-css3-outline.d.ts | 3 + react-icons/io/social-css3.d.ts | 3 + .../io/social-designernews-outline.d.ts | 3 + react-icons/io/social-designernews.d.ts | 3 + react-icons/io/social-dribbble-outline.d.ts | 3 + react-icons/io/social-dribbble.d.ts | 3 + react-icons/io/social-dropbox-outline.d.ts | 3 + react-icons/io/social-dropbox.d.ts | 3 + react-icons/io/social-euro-outline.d.ts | 3 + react-icons/io/social-euro.d.ts | 3 + react-icons/io/social-facebook-outline.d.ts | 3 + react-icons/io/social-facebook.d.ts | 3 + react-icons/io/social-foursquare-outline.d.ts | 3 + react-icons/io/social-foursquare.d.ts | 3 + react-icons/io/social-freebsd-devil.d.ts | 3 + react-icons/io/social-github-outline.d.ts | 3 + react-icons/io/social-github.d.ts | 3 + react-icons/io/social-google-outline.d.ts | 3 + react-icons/io/social-google.d.ts | 3 + react-icons/io/social-googleplus-outline.d.ts | 3 + react-icons/io/social-googleplus.d.ts | 3 + react-icons/io/social-hackernews-outline.d.ts | 3 + react-icons/io/social-hackernews.d.ts | 3 + react-icons/io/social-html5-outline.d.ts | 3 + react-icons/io/social-html5.d.ts | 3 + react-icons/io/social-instagram-outline.d.ts | 3 + react-icons/io/social-instagram.d.ts | 3 + react-icons/io/social-javascript-outline.d.ts | 3 + react-icons/io/social-javascript.d.ts | 3 + react-icons/io/social-linkedin-outline.d.ts | 3 + react-icons/io/social-linkedin.d.ts | 3 + react-icons/io/social-markdown.d.ts | 3 + react-icons/io/social-nodejs.d.ts | 3 + react-icons/io/social-octocat.d.ts | 3 + react-icons/io/social-pinterest-outline.d.ts | 3 + react-icons/io/social-pinterest.d.ts | 3 + react-icons/io/social-python.d.ts | 3 + react-icons/io/social-reddit-outline.d.ts | 3 + react-icons/io/social-reddit.d.ts | 3 + react-icons/io/social-rss-outline.d.ts | 3 + react-icons/io/social-rss.d.ts | 3 + react-icons/io/social-sass.d.ts | 3 + react-icons/io/social-skype-outline.d.ts | 3 + react-icons/io/social-skype.d.ts | 3 + react-icons/io/social-snapchat-outline.d.ts | 3 + react-icons/io/social-snapchat.d.ts | 3 + react-icons/io/social-tumblr-outline.d.ts | 3 + react-icons/io/social-tumblr.d.ts | 3 + react-icons/io/social-tux.d.ts | 3 + react-icons/io/social-twitch-outline.d.ts | 3 + react-icons/io/social-twitch.d.ts | 3 + react-icons/io/social-twitter-outline.d.ts | 3 + react-icons/io/social-twitter.d.ts | 3 + react-icons/io/social-usd-outline.d.ts | 3 + react-icons/io/social-usd.d.ts | 3 + react-icons/io/social-vimeo-outline.d.ts | 3 + react-icons/io/social-vimeo.d.ts | 3 + react-icons/io/social-whatsapp-outline.d.ts | 3 + react-icons/io/social-whatsapp.d.ts | 3 + react-icons/io/social-windows-outline.d.ts | 3 + react-icons/io/social-windows.d.ts | 3 + react-icons/io/social-wordpress-outline.d.ts | 3 + react-icons/io/social-wordpress.d.ts | 3 + react-icons/io/social-yahoo-outline.d.ts | 3 + react-icons/io/social-yahoo.d.ts | 3 + react-icons/io/social-yen-outline.d.ts | 3 + react-icons/io/social-yen.d.ts | 3 + react-icons/io/social-youtube-outline.d.ts | 3 + react-icons/io/social-youtube.d.ts | 3 + react-icons/io/soup-can-outline.d.ts | 3 + react-icons/io/soup-can.d.ts | 3 + react-icons/io/speakerphone.d.ts | 3 + react-icons/io/speedometer.d.ts | 3 + react-icons/io/spoon.d.ts | 3 + react-icons/io/star.d.ts | 3 + react-icons/io/stats-bars.d.ts | 3 + react-icons/io/steam.d.ts | 3 + react-icons/io/stop.d.ts | 3 + react-icons/io/thermometer.d.ts | 3 + react-icons/io/thumbsdown.d.ts | 3 + react-icons/io/thumbsup.d.ts | 3 + react-icons/io/toggle-filled.d.ts | 3 + react-icons/io/toggle.d.ts | 3 + react-icons/io/transgender.d.ts | 3 + react-icons/io/trash-a.d.ts | 3 + react-icons/io/trash-b.d.ts | 3 + react-icons/io/trophy.d.ts | 3 + react-icons/io/tshirt-outline.d.ts | 3 + react-icons/io/tshirt.d.ts | 3 + react-icons/io/umbrella.d.ts | 3 + react-icons/io/university.d.ts | 3 + react-icons/io/unlocked.d.ts | 3 + react-icons/io/upload.d.ts | 3 + react-icons/io/usb.d.ts | 3 + react-icons/io/videocamera.d.ts | 3 + react-icons/io/volume-high.d.ts | 3 + react-icons/io/volume-low.d.ts | 3 + react-icons/io/volume-medium.d.ts | 3 + react-icons/io/volume-mute.d.ts | 3 + react-icons/io/wand.d.ts | 3 + react-icons/io/waterdrop.d.ts | 3 + react-icons/io/wifi.d.ts | 3 + react-icons/io/wineglass.d.ts | 3 + react-icons/io/woman.d.ts | 3 + react-icons/io/wrench.d.ts | 3 + react-icons/io/xbox.d.ts | 3 + react-icons/md/3d-rotation.d.ts | 3 + react-icons/md/ac-unit.d.ts | 3 + react-icons/md/access-alarm.d.ts | 3 + react-icons/md/access-alarms.d.ts | 3 + react-icons/md/access-time.d.ts | 3 + react-icons/md/accessibility.d.ts | 3 + react-icons/md/accessible.d.ts | 3 + react-icons/md/account-balance-wallet.d.ts | 3 + react-icons/md/account-balance.d.ts | 3 + react-icons/md/account-box.d.ts | 3 + react-icons/md/account-circle.d.ts | 3 + react-icons/md/adb.d.ts | 3 + react-icons/md/add-a-photo.d.ts | 3 + react-icons/md/add-alarm.d.ts | 3 + react-icons/md/add-alert.d.ts | 3 + react-icons/md/add-box.d.ts | 3 + react-icons/md/add-circle-outline.d.ts | 3 + react-icons/md/add-circle.d.ts | 3 + react-icons/md/add-location.d.ts | 3 + react-icons/md/add-shopping-cart.d.ts | 3 + react-icons/md/add-to-photos.d.ts | 3 + react-icons/md/add-to-queue.d.ts | 3 + react-icons/md/add.d.ts | 3 + react-icons/md/adjust.d.ts | 3 + react-icons/md/airline-seat-flat-angled.d.ts | 3 + react-icons/md/airline-seat-flat.d.ts | 3 + .../md/airline-seat-individual-suite.d.ts | 3 + .../md/airline-seat-legroom-extra.d.ts | 3 + .../md/airline-seat-legroom-normal.d.ts | 3 + .../md/airline-seat-legroom-reduced.d.ts | 3 + .../md/airline-seat-recline-extra.d.ts | 3 + .../md/airline-seat-recline-normal.d.ts | 3 + react-icons/md/airplanemode-active.d.ts | 3 + react-icons/md/airplanemode-inactive.d.ts | 3 + react-icons/md/airplay.d.ts | 3 + react-icons/md/airport-shuttle.d.ts | 3 + react-icons/md/alarm-add.d.ts | 3 + react-icons/md/alarm-off.d.ts | 3 + react-icons/md/alarm-on.d.ts | 3 + react-icons/md/alarm.d.ts | 3 + react-icons/md/album.d.ts | 3 + react-icons/md/all-inclusive.d.ts | 3 + react-icons/md/all-out.d.ts | 3 + react-icons/md/android.d.ts | 3 + react-icons/md/announcement.d.ts | 3 + react-icons/md/apps.d.ts | 3 + react-icons/md/archive.d.ts | 3 + react-icons/md/arrow-back.d.ts | 3 + react-icons/md/arrow-downward.d.ts | 3 + react-icons/md/arrow-drop-down-circle.d.ts | 3 + react-icons/md/arrow-drop-down.d.ts | 3 + react-icons/md/arrow-drop-up.d.ts | 3 + react-icons/md/arrow-forward.d.ts | 3 + react-icons/md/arrow-upward.d.ts | 3 + react-icons/md/art-track.d.ts | 3 + react-icons/md/aspect-ratio.d.ts | 3 + react-icons/md/assessment.d.ts | 3 + react-icons/md/assignment-ind.d.ts | 3 + react-icons/md/assignment-late.d.ts | 3 + react-icons/md/assignment-return.d.ts | 3 + react-icons/md/assignment-returned.d.ts | 3 + react-icons/md/assignment-turned-in.d.ts | 3 + react-icons/md/assignment.d.ts | 3 + react-icons/md/assistant-photo.d.ts | 3 + react-icons/md/assistant.d.ts | 3 + react-icons/md/attach-file.d.ts | 3 + react-icons/md/attach-money.d.ts | 3 + react-icons/md/attachment.d.ts | 3 + react-icons/md/audiotrack.d.ts | 3 + react-icons/md/autorenew.d.ts | 3 + react-icons/md/av-timer.d.ts | 3 + react-icons/md/backspace.d.ts | 3 + react-icons/md/backup.d.ts | 3 + react-icons/md/battery-alert.d.ts | 3 + react-icons/md/battery-charging-full.d.ts | 3 + react-icons/md/battery-full.d.ts | 3 + react-icons/md/battery-std.d.ts | 3 + react-icons/md/battery-unknown.d.ts | 3 + react-icons/md/beach-access.d.ts | 3 + react-icons/md/beenhere.d.ts | 3 + react-icons/md/block.d.ts | 3 + react-icons/md/bluetooth-audio.d.ts | 3 + react-icons/md/bluetooth-connected.d.ts | 3 + react-icons/md/bluetooth-disabled.d.ts | 3 + react-icons/md/bluetooth-searching.d.ts | 3 + react-icons/md/bluetooth.d.ts | 3 + react-icons/md/blur-circular.d.ts | 3 + react-icons/md/blur-linear.d.ts | 3 + react-icons/md/blur-off.d.ts | 3 + react-icons/md/blur-on.d.ts | 3 + react-icons/md/book.d.ts | 3 + react-icons/md/bookmark-outline.d.ts | 3 + react-icons/md/bookmark.d.ts | 3 + react-icons/md/border-all.d.ts | 3 + react-icons/md/border-bottom.d.ts | 3 + react-icons/md/border-clear.d.ts | 3 + react-icons/md/border-color.d.ts | 3 + react-icons/md/border-horizontal.d.ts | 3 + react-icons/md/border-inner.d.ts | 3 + react-icons/md/border-left.d.ts | 3 + react-icons/md/border-outer.d.ts | 3 + react-icons/md/border-right.d.ts | 3 + react-icons/md/border-style.d.ts | 3 + react-icons/md/border-top.d.ts | 3 + react-icons/md/border-vertical.d.ts | 3 + react-icons/md/branding-watermark.d.ts | 3 + react-icons/md/brightness-1.d.ts | 3 + react-icons/md/brightness-2.d.ts | 3 + react-icons/md/brightness-3.d.ts | 3 + react-icons/md/brightness-4.d.ts | 3 + react-icons/md/brightness-5.d.ts | 3 + react-icons/md/brightness-6.d.ts | 3 + react-icons/md/brightness-7.d.ts | 3 + react-icons/md/brightness-auto.d.ts | 3 + react-icons/md/brightness-high.d.ts | 3 + react-icons/md/brightness-low.d.ts | 3 + react-icons/md/brightness-medium.d.ts | 3 + react-icons/md/broken-image.d.ts | 3 + react-icons/md/brush.d.ts | 3 + react-icons/md/bubble-chart.d.ts | 3 + react-icons/md/bug-report.d.ts | 3 + react-icons/md/build.d.ts | 3 + react-icons/md/burst-mode.d.ts | 3 + react-icons/md/business-center.d.ts | 3 + react-icons/md/business.d.ts | 3 + react-icons/md/cached.d.ts | 3 + react-icons/md/cake.d.ts | 3 + react-icons/md/call-end.d.ts | 3 + react-icons/md/call-made.d.ts | 3 + react-icons/md/call-merge.d.ts | 3 + react-icons/md/call-missed-outgoing.d.ts | 3 + react-icons/md/call-missed.d.ts | 3 + react-icons/md/call-received.d.ts | 3 + react-icons/md/call-split.d.ts | 3 + react-icons/md/call-to-action.d.ts | 3 + react-icons/md/call.d.ts | 3 + react-icons/md/camera-alt.d.ts | 3 + react-icons/md/camera-enhance.d.ts | 3 + react-icons/md/camera-front.d.ts | 3 + react-icons/md/camera-rear.d.ts | 3 + react-icons/md/camera-roll.d.ts | 3 + react-icons/md/camera.d.ts | 3 + react-icons/md/cancel.d.ts | 3 + react-icons/md/card-giftcard.d.ts | 3 + react-icons/md/card-membership.d.ts | 3 + react-icons/md/card-travel.d.ts | 3 + react-icons/md/casino.d.ts | 3 + react-icons/md/cast-connected.d.ts | 3 + react-icons/md/cast.d.ts | 3 + react-icons/md/center-focus-strong.d.ts | 3 + react-icons/md/center-focus-weak.d.ts | 3 + react-icons/md/change-history.d.ts | 3 + react-icons/md/chat-bubble-outline.d.ts | 3 + react-icons/md/chat-bubble.d.ts | 3 + react-icons/md/chat.d.ts | 3 + react-icons/md/check-box-outline-blank.d.ts | 3 + react-icons/md/check-box.d.ts | 3 + react-icons/md/check-circle.d.ts | 3 + react-icons/md/check.d.ts | 3 + react-icons/md/chevron-left.d.ts | 3 + react-icons/md/chevron-right.d.ts | 3 + react-icons/md/child-care.d.ts | 3 + react-icons/md/child-friendly.d.ts | 3 + react-icons/md/chrome-reader-mode.d.ts | 3 + react-icons/md/class.d.ts | 3 + react-icons/md/clear-all.d.ts | 3 + react-icons/md/clear.d.ts | 3 + react-icons/md/close.d.ts | 3 + react-icons/md/closed-caption.d.ts | 3 + react-icons/md/cloud-circle.d.ts | 3 + react-icons/md/cloud-done.d.ts | 3 + react-icons/md/cloud-download.d.ts | 3 + react-icons/md/cloud-off.d.ts | 3 + react-icons/md/cloud-queue.d.ts | 3 + react-icons/md/cloud-upload.d.ts | 3 + react-icons/md/cloud.d.ts | 3 + react-icons/md/code.d.ts | 3 + react-icons/md/collections-bookmark.d.ts | 3 + react-icons/md/collections.d.ts | 3 + react-icons/md/color-lens.d.ts | 3 + react-icons/md/colorize.d.ts | 3 + react-icons/md/comment.d.ts | 3 + react-icons/md/compare-arrows.d.ts | 3 + react-icons/md/compare.d.ts | 3 + react-icons/md/computer.d.ts | 3 + react-icons/md/confirmation-number.d.ts | 3 + react-icons/md/contact-mail.d.ts | 3 + react-icons/md/contact-phone.d.ts | 3 + react-icons/md/contacts.d.ts | 3 + react-icons/md/content-copy.d.ts | 3 + react-icons/md/content-cut.d.ts | 3 + react-icons/md/content-paste.d.ts | 3 + react-icons/md/control-point-duplicate.d.ts | 3 + react-icons/md/control-point.d.ts | 3 + react-icons/md/copyright.d.ts | 3 + react-icons/md/create-new-folder.d.ts | 3 + react-icons/md/create.d.ts | 3 + react-icons/md/credit-card.d.ts | 3 + react-icons/md/crop-16-9.d.ts | 3 + react-icons/md/crop-3-2.d.ts | 3 + react-icons/md/crop-5-4.d.ts | 3 + react-icons/md/crop-7-5.d.ts | 3 + react-icons/md/crop-din.d.ts | 3 + react-icons/md/crop-free.d.ts | 3 + react-icons/md/crop-landscape.d.ts | 3 + react-icons/md/crop-original.d.ts | 3 + react-icons/md/crop-portrait.d.ts | 3 + react-icons/md/crop-rotate.d.ts | 3 + react-icons/md/crop-square.d.ts | 3 + react-icons/md/crop.d.ts | 3 + react-icons/md/dashboard.d.ts | 3 + react-icons/md/data-usage.d.ts | 3 + react-icons/md/date-range.d.ts | 3 + react-icons/md/dehaze.d.ts | 3 + react-icons/md/delete-forever.d.ts | 3 + react-icons/md/delete-sweep.d.ts | 3 + react-icons/md/delete.d.ts | 3 + react-icons/md/description.d.ts | 3 + react-icons/md/desktop-mac.d.ts | 3 + react-icons/md/desktop-windows.d.ts | 3 + react-icons/md/details.d.ts | 3 + react-icons/md/developer-board.d.ts | 3 + react-icons/md/developer-mode.d.ts | 3 + react-icons/md/device-hub.d.ts | 3 + react-icons/md/devices-other.d.ts | 3 + react-icons/md/devices.d.ts | 3 + react-icons/md/dialer-sip.d.ts | 3 + react-icons/md/dialpad.d.ts | 3 + react-icons/md/directions-bike.d.ts | 3 + react-icons/md/directions-boat.d.ts | 3 + react-icons/md/directions-bus.d.ts | 3 + react-icons/md/directions-car.d.ts | 3 + react-icons/md/directions-ferry.d.ts | 3 + react-icons/md/directions-railway.d.ts | 3 + react-icons/md/directions-run.d.ts | 3 + react-icons/md/directions-subway.d.ts | 3 + react-icons/md/directions-transit.d.ts | 3 + react-icons/md/directions-walk.d.ts | 3 + react-icons/md/directions.d.ts | 3 + react-icons/md/disc-full.d.ts | 3 + react-icons/md/dns.d.ts | 3 + react-icons/md/do-not-disturb-alt.d.ts | 3 + react-icons/md/do-not-disturb-off.d.ts | 3 + react-icons/md/do-not-disturb.d.ts | 3 + react-icons/md/dock.d.ts | 3 + react-icons/md/domain.d.ts | 3 + react-icons/md/done-all.d.ts | 3 + react-icons/md/done.d.ts | 3 + react-icons/md/donut-large.d.ts | 3 + react-icons/md/donut-small.d.ts | 3 + react-icons/md/drafts.d.ts | 3 + react-icons/md/drag-handle.d.ts | 3 + react-icons/md/drive-eta.d.ts | 3 + react-icons/md/dvr.d.ts | 3 + react-icons/md/edit-location.d.ts | 3 + react-icons/md/edit.d.ts | 3 + react-icons/md/eject.d.ts | 3 + react-icons/md/email.d.ts | 3 + react-icons/md/enhanced-encryption.d.ts | 3 + react-icons/md/equalizer.d.ts | 3 + react-icons/md/error-outline.d.ts | 3 + react-icons/md/error.d.ts | 3 + react-icons/md/euro-symbol.d.ts | 3 + react-icons/md/ev-station.d.ts | 3 + react-icons/md/event-available.d.ts | 3 + react-icons/md/event-busy.d.ts | 3 + react-icons/md/event-note.d.ts | 3 + react-icons/md/event-seat.d.ts | 3 + react-icons/md/event.d.ts | 3 + react-icons/md/exit-to-app.d.ts | 3 + react-icons/md/expand-less.d.ts | 3 + react-icons/md/expand-more.d.ts | 3 + react-icons/md/explicit.d.ts | 3 + react-icons/md/explore.d.ts | 3 + react-icons/md/exposure-minus-1.d.ts | 3 + react-icons/md/exposure-minus-2.d.ts | 3 + react-icons/md/exposure-neg-1.d.ts | 3 + react-icons/md/exposure-neg-2.d.ts | 3 + react-icons/md/exposure-plus-1.d.ts | 3 + react-icons/md/exposure-plus-2.d.ts | 3 + react-icons/md/exposure-zero.d.ts | 3 + react-icons/md/exposure.d.ts | 3 + react-icons/md/extension.d.ts | 3 + react-icons/md/face.d.ts | 3 + react-icons/md/fast-forward.d.ts | 3 + react-icons/md/fast-rewind.d.ts | 3 + react-icons/md/favorite-border.d.ts | 3 + react-icons/md/favorite-outline.d.ts | 3 + react-icons/md/favorite.d.ts | 3 + react-icons/md/featured-play-list.d.ts | 3 + react-icons/md/featured-video.d.ts | 3 + react-icons/md/feedback.d.ts | 3 + react-icons/md/fiber-dvr.d.ts | 3 + react-icons/md/fiber-manual-record.d.ts | 3 + react-icons/md/fiber-new.d.ts | 3 + react-icons/md/fiber-pin.d.ts | 3 + react-icons/md/fiber-smart-record.d.ts | 3 + react-icons/md/file-download.d.ts | 3 + react-icons/md/file-upload.d.ts | 3 + react-icons/md/filter-1.d.ts | 3 + react-icons/md/filter-2.d.ts | 3 + react-icons/md/filter-3.d.ts | 3 + react-icons/md/filter-4.d.ts | 3 + react-icons/md/filter-5.d.ts | 3 + react-icons/md/filter-6.d.ts | 3 + react-icons/md/filter-7.d.ts | 3 + react-icons/md/filter-8.d.ts | 3 + react-icons/md/filter-9-plus.d.ts | 3 + react-icons/md/filter-9.d.ts | 3 + react-icons/md/filter-b-and-w.d.ts | 3 + react-icons/md/filter-center-focus.d.ts | 3 + react-icons/md/filter-drama.d.ts | 3 + react-icons/md/filter-frames.d.ts | 3 + react-icons/md/filter-hdr.d.ts | 3 + react-icons/md/filter-list.d.ts | 3 + react-icons/md/filter-none.d.ts | 3 + react-icons/md/filter-tilt-shift.d.ts | 3 + react-icons/md/filter-vintage.d.ts | 3 + react-icons/md/filter.d.ts | 3 + react-icons/md/find-in-page.d.ts | 3 + react-icons/md/find-replace.d.ts | 3 + react-icons/md/fingerprint.d.ts | 3 + react-icons/md/first-page.d.ts | 3 + react-icons/md/fitness-center.d.ts | 3 + react-icons/md/flag.d.ts | 3 + react-icons/md/flare.d.ts | 3 + react-icons/md/flash-auto.d.ts | 3 + react-icons/md/flash-off.d.ts | 3 + react-icons/md/flash-on.d.ts | 3 + react-icons/md/flight-land.d.ts | 3 + react-icons/md/flight-takeoff.d.ts | 3 + react-icons/md/flight.d.ts | 3 + react-icons/md/flip-to-back.d.ts | 3 + react-icons/md/flip-to-front.d.ts | 3 + react-icons/md/flip.d.ts | 3 + react-icons/md/folder-open.d.ts | 3 + react-icons/md/folder-shared.d.ts | 3 + react-icons/md/folder-special.d.ts | 3 + react-icons/md/folder.d.ts | 3 + react-icons/md/font-download.d.ts | 3 + react-icons/md/format-align-center.d.ts | 3 + react-icons/md/format-align-justify.d.ts | 3 + react-icons/md/format-align-left.d.ts | 3 + react-icons/md/format-align-right.d.ts | 3 + react-icons/md/format-bold.d.ts | 3 + react-icons/md/format-clear.d.ts | 3 + react-icons/md/format-color-fill.d.ts | 3 + react-icons/md/format-color-reset.d.ts | 3 + react-icons/md/format-color-text.d.ts | 3 + react-icons/md/format-indent-decrease.d.ts | 3 + react-icons/md/format-indent-increase.d.ts | 3 + react-icons/md/format-italic.d.ts | 3 + react-icons/md/format-line-spacing.d.ts | 3 + react-icons/md/format-list-bulleted.d.ts | 3 + react-icons/md/format-list-numbered.d.ts | 3 + react-icons/md/format-paint.d.ts | 3 + react-icons/md/format-quote.d.ts | 3 + react-icons/md/format-shapes.d.ts | 3 + react-icons/md/format-size.d.ts | 3 + react-icons/md/format-strikethrough.d.ts | 3 + .../md/format-textdirection-l-to-r.d.ts | 3 + .../md/format-textdirection-r-to-l.d.ts | 3 + react-icons/md/format-underlined.d.ts | 3 + react-icons/md/forum.d.ts | 3 + react-icons/md/forward-10.d.ts | 3 + react-icons/md/forward-30.d.ts | 3 + react-icons/md/forward-5.d.ts | 3 + react-icons/md/forward.d.ts | 3 + react-icons/md/free-breakfast.d.ts | 3 + react-icons/md/fullscreen-exit.d.ts | 3 + react-icons/md/fullscreen.d.ts | 3 + react-icons/md/functions.d.ts | 3 + react-icons/md/g-translate.d.ts | 3 + react-icons/md/gamepad.d.ts | 3 + react-icons/md/games.d.ts | 3 + react-icons/md/gavel.d.ts | 3 + react-icons/md/gesture.d.ts | 3 + react-icons/md/get-app.d.ts | 3 + react-icons/md/gif.d.ts | 3 + react-icons/md/goat.d.ts | 3 + react-icons/md/golf-course.d.ts | 3 + react-icons/md/gps-fixed.d.ts | 3 + react-icons/md/gps-not-fixed.d.ts | 3 + react-icons/md/gps-off.d.ts | 3 + react-icons/md/grade.d.ts | 3 + react-icons/md/gradient.d.ts | 3 + react-icons/md/grain.d.ts | 3 + react-icons/md/graphic-eq.d.ts | 3 + react-icons/md/grid-off.d.ts | 3 + react-icons/md/grid-on.d.ts | 3 + react-icons/md/group-add.d.ts | 3 + react-icons/md/group-work.d.ts | 3 + react-icons/md/group.d.ts | 3 + react-icons/md/hd.d.ts | 3 + react-icons/md/hdr-off.d.ts | 3 + react-icons/md/hdr-on.d.ts | 3 + react-icons/md/hdr-strong.d.ts | 3 + react-icons/md/hdr-weak.d.ts | 3 + react-icons/md/headset-mic.d.ts | 3 + react-icons/md/headset.d.ts | 3 + react-icons/md/healing.d.ts | 3 + react-icons/md/hearing.d.ts | 3 + react-icons/md/help-outline.d.ts | 3 + react-icons/md/help.d.ts | 3 + react-icons/md/high-quality.d.ts | 3 + react-icons/md/highlight-off.d.ts | 3 + react-icons/md/highlight-remove.d.ts | 3 + react-icons/md/highlight.d.ts | 3 + react-icons/md/history.d.ts | 3 + react-icons/md/home.d.ts | 3 + react-icons/md/hot-tub.d.ts | 3 + react-icons/md/hotel.d.ts | 3 + react-icons/md/hourglass-empty.d.ts | 3 + react-icons/md/hourglass-full.d.ts | 3 + react-icons/md/http.d.ts | 3 + react-icons/md/https.d.ts | 3 + react-icons/md/image-aspect-ratio.d.ts | 3 + react-icons/md/image.d.ts | 3 + react-icons/md/import-contacts.d.ts | 3 + react-icons/md/import-export.d.ts | 3 + react-icons/md/important-devices.d.ts | 3 + react-icons/md/inbox.d.ts | 3 + react-icons/md/indeterminate-check-box.d.ts | 3 + react-icons/md/index.d.ts | 1892 +++++++++++ react-icons/md/info-outline.d.ts | 3 + react-icons/md/info.d.ts | 3 + react-icons/md/input.d.ts | 3 + react-icons/md/insert-chart.d.ts | 3 + react-icons/md/insert-comment.d.ts | 3 + react-icons/md/insert-drive-file.d.ts | 3 + react-icons/md/insert-emoticon.d.ts | 3 + react-icons/md/insert-invitation.d.ts | 3 + react-icons/md/insert-link.d.ts | 3 + react-icons/md/insert-photo.d.ts | 3 + react-icons/md/invert-colors-off.d.ts | 3 + react-icons/md/invert-colors-on.d.ts | 3 + react-icons/md/invert-colors.d.ts | 3 + react-icons/md/iso.d.ts | 3 + react-icons/md/keyboard-arrow-down.d.ts | 3 + react-icons/md/keyboard-arrow-left.d.ts | 3 + react-icons/md/keyboard-arrow-right.d.ts | 3 + react-icons/md/keyboard-arrow-up.d.ts | 3 + react-icons/md/keyboard-backspace.d.ts | 3 + react-icons/md/keyboard-capslock.d.ts | 3 + react-icons/md/keyboard-control.d.ts | 3 + react-icons/md/keyboard-hide.d.ts | 3 + react-icons/md/keyboard-return.d.ts | 3 + react-icons/md/keyboard-tab.d.ts | 3 + react-icons/md/keyboard-voice.d.ts | 3 + react-icons/md/keyboard.d.ts | 3 + react-icons/md/kitchen.d.ts | 3 + react-icons/md/label-outline.d.ts | 3 + react-icons/md/label.d.ts | 3 + react-icons/md/landscape.d.ts | 3 + react-icons/md/language.d.ts | 3 + react-icons/md/laptop-chromebook.d.ts | 3 + react-icons/md/laptop-mac.d.ts | 3 + react-icons/md/laptop-windows.d.ts | 3 + react-icons/md/laptop.d.ts | 3 + react-icons/md/last-page.d.ts | 3 + react-icons/md/launch.d.ts | 3 + react-icons/md/layers-clear.d.ts | 3 + react-icons/md/layers.d.ts | 3 + react-icons/md/leak-add.d.ts | 3 + react-icons/md/leak-remove.d.ts | 3 + react-icons/md/lens.d.ts | 3 + react-icons/md/library-add.d.ts | 3 + react-icons/md/library-books.d.ts | 3 + react-icons/md/library-music.d.ts | 3 + react-icons/md/lightbulb-outline.d.ts | 3 + react-icons/md/line-style.d.ts | 3 + react-icons/md/line-weight.d.ts | 3 + react-icons/md/linear-scale.d.ts | 3 + react-icons/md/link.d.ts | 3 + react-icons/md/linked-camera.d.ts | 3 + react-icons/md/list.d.ts | 3 + react-icons/md/live-help.d.ts | 3 + react-icons/md/live-tv.d.ts | 3 + react-icons/md/local-airport.d.ts | 3 + react-icons/md/local-atm.d.ts | 3 + react-icons/md/local-attraction.d.ts | 3 + react-icons/md/local-bar.d.ts | 3 + react-icons/md/local-cafe.d.ts | 3 + react-icons/md/local-car-wash.d.ts | 3 + react-icons/md/local-convenience-store.d.ts | 3 + react-icons/md/local-drink.d.ts | 3 + react-icons/md/local-florist.d.ts | 3 + react-icons/md/local-gas-station.d.ts | 3 + react-icons/md/local-grocery-store.d.ts | 3 + react-icons/md/local-hospital.d.ts | 3 + react-icons/md/local-hotel.d.ts | 3 + react-icons/md/local-laundry-service.d.ts | 3 + react-icons/md/local-library.d.ts | 3 + react-icons/md/local-mall.d.ts | 3 + react-icons/md/local-movies.d.ts | 3 + react-icons/md/local-offer.d.ts | 3 + react-icons/md/local-parking.d.ts | 3 + react-icons/md/local-pharmacy.d.ts | 3 + react-icons/md/local-phone.d.ts | 3 + react-icons/md/local-pizza.d.ts | 3 + react-icons/md/local-play.d.ts | 3 + react-icons/md/local-post-office.d.ts | 3 + react-icons/md/local-print-shop.d.ts | 3 + react-icons/md/local-restaurant.d.ts | 3 + react-icons/md/local-see.d.ts | 3 + react-icons/md/local-shipping.d.ts | 3 + react-icons/md/local-taxi.d.ts | 3 + react-icons/md/location-city.d.ts | 3 + react-icons/md/location-disabled.d.ts | 3 + react-icons/md/location-history.d.ts | 3 + react-icons/md/location-off.d.ts | 3 + react-icons/md/location-on.d.ts | 3 + react-icons/md/location-searching.d.ts | 3 + react-icons/md/lock-open.d.ts | 3 + react-icons/md/lock-outline.d.ts | 3 + react-icons/md/lock.d.ts | 3 + react-icons/md/looks-3.d.ts | 3 + react-icons/md/looks-4.d.ts | 3 + react-icons/md/looks-5.d.ts | 3 + react-icons/md/looks-6.d.ts | 3 + react-icons/md/looks-one.d.ts | 3 + react-icons/md/looks-two.d.ts | 3 + react-icons/md/looks.d.ts | 3 + react-icons/md/loop.d.ts | 3 + react-icons/md/loupe.d.ts | 3 + react-icons/md/low-priority.d.ts | 3 + react-icons/md/loyalty.d.ts | 3 + react-icons/md/mail-outline.d.ts | 3 + react-icons/md/mail.d.ts | 3 + react-icons/md/map.d.ts | 3 + react-icons/md/markunread-mailbox.d.ts | 3 + react-icons/md/markunread.d.ts | 3 + react-icons/md/memory.d.ts | 3 + react-icons/md/menu.d.ts | 3 + react-icons/md/merge-type.d.ts | 3 + react-icons/md/message.d.ts | 3 + react-icons/md/mic-none.d.ts | 3 + react-icons/md/mic-off.d.ts | 3 + react-icons/md/mic.d.ts | 3 + react-icons/md/mms.d.ts | 3 + react-icons/md/mode-comment.d.ts | 3 + react-icons/md/mode-edit.d.ts | 3 + react-icons/md/monetization-on.d.ts | 3 + react-icons/md/money-off.d.ts | 3 + react-icons/md/monochrome-photos.d.ts | 3 + react-icons/md/mood-bad.d.ts | 3 + react-icons/md/mood.d.ts | 3 + react-icons/md/more-horiz.d.ts | 3 + react-icons/md/more-vert.d.ts | 3 + react-icons/md/more.d.ts | 3 + react-icons/md/motorcycle.d.ts | 3 + react-icons/md/mouse.d.ts | 3 + react-icons/md/move-to-inbox.d.ts | 3 + react-icons/md/movie-creation.d.ts | 3 + react-icons/md/movie-filter.d.ts | 3 + react-icons/md/movie.d.ts | 3 + react-icons/md/multiline-chart.d.ts | 3 + react-icons/md/music-note.d.ts | 3 + react-icons/md/music-video.d.ts | 3 + react-icons/md/my-location.d.ts | 3 + react-icons/md/nature-people.d.ts | 3 + react-icons/md/nature.d.ts | 3 + react-icons/md/navigate-before.d.ts | 3 + react-icons/md/navigate-next.d.ts | 3 + react-icons/md/navigation.d.ts | 3 + react-icons/md/near-me.d.ts | 3 + react-icons/md/network-cell.d.ts | 3 + react-icons/md/network-check.d.ts | 3 + react-icons/md/network-locked.d.ts | 3 + react-icons/md/network-wifi.d.ts | 3 + react-icons/md/new-releases.d.ts | 3 + react-icons/md/next-week.d.ts | 3 + react-icons/md/nfc.d.ts | 3 + react-icons/md/no-encryption.d.ts | 3 + react-icons/md/no-sim.d.ts | 3 + react-icons/md/not-interested.d.ts | 3 + react-icons/md/note-add.d.ts | 3 + react-icons/md/note.d.ts | 3 + react-icons/md/notifications-active.d.ts | 3 + react-icons/md/notifications-none.d.ts | 3 + react-icons/md/notifications-off.d.ts | 3 + react-icons/md/notifications-paused.d.ts | 3 + react-icons/md/notifications.d.ts | 3 + react-icons/md/now-wallpaper.d.ts | 3 + react-icons/md/now-widgets.d.ts | 3 + react-icons/md/offline-pin.d.ts | 3 + react-icons/md/ondemand-video.d.ts | 3 + react-icons/md/opacity.d.ts | 3 + react-icons/md/open-in-browser.d.ts | 3 + react-icons/md/open-in-new.d.ts | 3 + react-icons/md/open-with.d.ts | 3 + react-icons/md/pages.d.ts | 3 + react-icons/md/pageview.d.ts | 3 + react-icons/md/palette.d.ts | 3 + react-icons/md/pan-tool.d.ts | 3 + react-icons/md/panorama-fish-eye.d.ts | 3 + react-icons/md/panorama-horizontal.d.ts | 3 + react-icons/md/panorama-vertical.d.ts | 3 + react-icons/md/panorama-wide-angle.d.ts | 3 + react-icons/md/panorama.d.ts | 3 + react-icons/md/party-mode.d.ts | 3 + react-icons/md/pause-circle-filled.d.ts | 3 + react-icons/md/pause-circle-outline.d.ts | 3 + react-icons/md/pause.d.ts | 3 + react-icons/md/payment.d.ts | 3 + react-icons/md/people-outline.d.ts | 3 + react-icons/md/people.d.ts | 3 + react-icons/md/perm-camera-mic.d.ts | 3 + react-icons/md/perm-contact-calendar.d.ts | 3 + react-icons/md/perm-data-setting.d.ts | 3 + react-icons/md/perm-device-information.d.ts | 3 + react-icons/md/perm-identity.d.ts | 3 + react-icons/md/perm-media.d.ts | 3 + react-icons/md/perm-phone-msg.d.ts | 3 + react-icons/md/perm-scan-wifi.d.ts | 3 + react-icons/md/person-add.d.ts | 3 + react-icons/md/person-outline.d.ts | 3 + react-icons/md/person-pin-circle.d.ts | 3 + react-icons/md/person-pin.d.ts | 3 + react-icons/md/person.d.ts | 3 + react-icons/md/personal-video.d.ts | 3 + react-icons/md/pets.d.ts | 3 + react-icons/md/phone-android.d.ts | 3 + react-icons/md/phone-bluetooth-speaker.d.ts | 3 + react-icons/md/phone-forwarded.d.ts | 3 + react-icons/md/phone-in-talk.d.ts | 3 + react-icons/md/phone-iphone.d.ts | 3 + react-icons/md/phone-locked.d.ts | 3 + react-icons/md/phone-missed.d.ts | 3 + react-icons/md/phone-paused.d.ts | 3 + react-icons/md/phone.d.ts | 3 + react-icons/md/phonelink-erase.d.ts | 3 + react-icons/md/phonelink-lock.d.ts | 3 + react-icons/md/phonelink-off.d.ts | 3 + react-icons/md/phonelink-ring.d.ts | 3 + react-icons/md/phonelink-setup.d.ts | 3 + react-icons/md/phonelink.d.ts | 3 + react-icons/md/photo-album.d.ts | 3 + react-icons/md/photo-camera.d.ts | 3 + react-icons/md/photo-filter.d.ts | 3 + react-icons/md/photo-library.d.ts | 3 + react-icons/md/photo-size-select-actual.d.ts | 3 + react-icons/md/photo-size-select-large.d.ts | 3 + react-icons/md/photo-size-select-small.d.ts | 3 + react-icons/md/photo.d.ts | 3 + react-icons/md/picture-as-pdf.d.ts | 3 + react-icons/md/picture-in-picture-alt.d.ts | 3 + react-icons/md/picture-in-picture.d.ts | 3 + react-icons/md/pie-chart-outlined.d.ts | 3 + react-icons/md/pie-chart.d.ts | 3 + react-icons/md/pin-drop.d.ts | 3 + react-icons/md/place.d.ts | 3 + react-icons/md/play-arrow.d.ts | 3 + react-icons/md/play-circle-filled.d.ts | 3 + react-icons/md/play-circle-outline.d.ts | 3 + react-icons/md/play-for-work.d.ts | 3 + react-icons/md/playlist-add-check.d.ts | 3 + react-icons/md/playlist-add.d.ts | 3 + react-icons/md/playlist-play.d.ts | 3 + react-icons/md/plus-one.d.ts | 3 + react-icons/md/poll.d.ts | 3 + react-icons/md/polymer.d.ts | 3 + react-icons/md/pool.d.ts | 3 + react-icons/md/portable-wifi-off.d.ts | 3 + react-icons/md/portrait.d.ts | 3 + react-icons/md/power-input.d.ts | 3 + react-icons/md/power-settings-new.d.ts | 3 + react-icons/md/power.d.ts | 3 + react-icons/md/pregnant-woman.d.ts | 3 + react-icons/md/present-to-all.d.ts | 3 + react-icons/md/print.d.ts | 3 + react-icons/md/priority-high.d.ts | 3 + react-icons/md/public.d.ts | 3 + react-icons/md/publish.d.ts | 3 + react-icons/md/query-builder.d.ts | 3 + react-icons/md/question-answer.d.ts | 3 + react-icons/md/queue-music.d.ts | 3 + react-icons/md/queue-play-next.d.ts | 3 + react-icons/md/queue.d.ts | 3 + react-icons/md/radio-button-checked.d.ts | 3 + react-icons/md/radio-button-unchecked.d.ts | 3 + react-icons/md/radio.d.ts | 3 + react-icons/md/rate-review.d.ts | 3 + react-icons/md/receipt.d.ts | 3 + react-icons/md/recent-actors.d.ts | 3 + react-icons/md/record-voice-over.d.ts | 3 + react-icons/md/redeem.d.ts | 3 + react-icons/md/redo.d.ts | 3 + react-icons/md/refresh.d.ts | 3 + react-icons/md/remove-circle-outline.d.ts | 3 + react-icons/md/remove-circle.d.ts | 3 + react-icons/md/remove-from-queue.d.ts | 3 + react-icons/md/remove-red-eye.d.ts | 3 + react-icons/md/remove-shopping-cart.d.ts | 3 + react-icons/md/remove.d.ts | 3 + react-icons/md/reorder.d.ts | 3 + react-icons/md/repeat-one.d.ts | 3 + react-icons/md/repeat.d.ts | 3 + react-icons/md/replay-10.d.ts | 3 + react-icons/md/replay-30.d.ts | 3 + react-icons/md/replay-5.d.ts | 3 + react-icons/md/replay.d.ts | 3 + react-icons/md/reply-all.d.ts | 3 + react-icons/md/reply.d.ts | 3 + react-icons/md/report-problem.d.ts | 3 + react-icons/md/report.d.ts | 3 + react-icons/md/restaurant-menu.d.ts | 3 + react-icons/md/restaurant.d.ts | 3 + react-icons/md/restore-page.d.ts | 3 + react-icons/md/restore.d.ts | 3 + react-icons/md/ring-volume.d.ts | 3 + react-icons/md/room-service.d.ts | 3 + react-icons/md/room.d.ts | 3 + react-icons/md/rotate-90-degrees-ccw.d.ts | 3 + react-icons/md/rotate-left.d.ts | 3 + react-icons/md/rotate-right.d.ts | 3 + react-icons/md/rounded-corner.d.ts | 3 + react-icons/md/router.d.ts | 3 + react-icons/md/rowing.d.ts | 3 + react-icons/md/rss-feed.d.ts | 3 + react-icons/md/rv-hookup.d.ts | 3 + react-icons/md/satellite.d.ts | 3 + react-icons/md/save.d.ts | 3 + react-icons/md/scanner.d.ts | 3 + react-icons/md/schedule.d.ts | 3 + react-icons/md/school.d.ts | 3 + react-icons/md/screen-lock-landscape.d.ts | 3 + react-icons/md/screen-lock-portrait.d.ts | 3 + react-icons/md/screen-lock-rotation.d.ts | 3 + react-icons/md/screen-rotation.d.ts | 3 + react-icons/md/screen-share.d.ts | 3 + react-icons/md/sd-card.d.ts | 3 + react-icons/md/sd-storage.d.ts | 3 + react-icons/md/search.d.ts | 3 + react-icons/md/security.d.ts | 3 + react-icons/md/select-all.d.ts | 3 + react-icons/md/send.d.ts | 3 + react-icons/md/sentiment-dissatisfied.d.ts | 3 + react-icons/md/sentiment-neutral.d.ts | 3 + react-icons/md/sentiment-satisfied.d.ts | 3 + .../md/sentiment-very-dissatisfied.d.ts | 3 + react-icons/md/sentiment-very-satisfied.d.ts | 3 + react-icons/md/settings-applications.d.ts | 3 + react-icons/md/settings-backup-restore.d.ts | 3 + react-icons/md/settings-bluetooth.d.ts | 3 + react-icons/md/settings-brightness.d.ts | 3 + react-icons/md/settings-cell.d.ts | 3 + react-icons/md/settings-ethernet.d.ts | 3 + react-icons/md/settings-input-antenna.d.ts | 3 + react-icons/md/settings-input-component.d.ts | 3 + react-icons/md/settings-input-composite.d.ts | 3 + react-icons/md/settings-input-hdmi.d.ts | 3 + react-icons/md/settings-input-svideo.d.ts | 3 + react-icons/md/settings-overscan.d.ts | 3 + react-icons/md/settings-phone.d.ts | 3 + react-icons/md/settings-power.d.ts | 3 + react-icons/md/settings-remote.d.ts | 3 + react-icons/md/settings-system-daydream.d.ts | 3 + react-icons/md/settings-voice.d.ts | 3 + react-icons/md/settings.d.ts | 3 + react-icons/md/share.d.ts | 3 + react-icons/md/shop-two.d.ts | 3 + react-icons/md/shop.d.ts | 3 + react-icons/md/shopping-basket.d.ts | 3 + react-icons/md/shopping-cart.d.ts | 3 + react-icons/md/short-text.d.ts | 3 + react-icons/md/show-chart.d.ts | 3 + react-icons/md/shuffle.d.ts | 3 + react-icons/md/signal-cellular-4-bar.d.ts | 3 + ...-cellular-connected-no-internet-4-bar.d.ts | 3 + react-icons/md/signal-cellular-no-sim.d.ts | 3 + react-icons/md/signal-cellular-null.d.ts | 3 + react-icons/md/signal-cellular-off.d.ts | 3 + react-icons/md/signal-wifi-4-bar-lock.d.ts | 3 + react-icons/md/signal-wifi-4-bar.d.ts | 3 + react-icons/md/signal-wifi-off.d.ts | 3 + react-icons/md/sim-card-alert.d.ts | 3 + react-icons/md/sim-card.d.ts | 3 + react-icons/md/skip-next.d.ts | 3 + react-icons/md/skip-previous.d.ts | 3 + react-icons/md/slideshow.d.ts | 3 + react-icons/md/slow-motion-video.d.ts | 3 + react-icons/md/smartphone.d.ts | 3 + react-icons/md/smoke-free.d.ts | 3 + react-icons/md/smoking-rooms.d.ts | 3 + react-icons/md/sms-failed.d.ts | 3 + react-icons/md/sms.d.ts | 3 + react-icons/md/snooze.d.ts | 3 + react-icons/md/sort-by-alpha.d.ts | 3 + react-icons/md/sort.d.ts | 3 + react-icons/md/spa.d.ts | 3 + react-icons/md/space-bar.d.ts | 3 + react-icons/md/speaker-group.d.ts | 3 + react-icons/md/speaker-notes-off.d.ts | 3 + react-icons/md/speaker-notes.d.ts | 3 + react-icons/md/speaker-phone.d.ts | 3 + react-icons/md/speaker.d.ts | 3 + react-icons/md/spellcheck.d.ts | 3 + react-icons/md/star-border.d.ts | 3 + react-icons/md/star-half.d.ts | 3 + react-icons/md/star-outline.d.ts | 3 + react-icons/md/star.d.ts | 3 + react-icons/md/stars.d.ts | 3 + react-icons/md/stay-current-landscape.d.ts | 3 + react-icons/md/stay-current-portrait.d.ts | 3 + react-icons/md/stay-primary-landscape.d.ts | 3 + react-icons/md/stay-primary-portrait.d.ts | 3 + react-icons/md/stop-screen-share.d.ts | 3 + react-icons/md/stop.d.ts | 3 + react-icons/md/storage.d.ts | 3 + react-icons/md/store-mall-directory.d.ts | 3 + react-icons/md/store.d.ts | 3 + react-icons/md/straighten.d.ts | 3 + react-icons/md/streetview.d.ts | 3 + react-icons/md/strikethrough-s.d.ts | 3 + react-icons/md/style.d.ts | 3 + react-icons/md/subdirectory-arrow-left.d.ts | 3 + react-icons/md/subdirectory-arrow-right.d.ts | 3 + react-icons/md/subject.d.ts | 3 + react-icons/md/subscriptions.d.ts | 3 + react-icons/md/subtitles.d.ts | 3 + react-icons/md/subway.d.ts | 3 + react-icons/md/supervisor-account.d.ts | 3 + react-icons/md/surround-sound.d.ts | 3 + react-icons/md/swap-calls.d.ts | 3 + react-icons/md/swap-horiz.d.ts | 3 + react-icons/md/swap-vert.d.ts | 3 + react-icons/md/swap-vertical-circle.d.ts | 3 + react-icons/md/switch-camera.d.ts | 3 + react-icons/md/switch-video.d.ts | 3 + react-icons/md/sync-disabled.d.ts | 3 + react-icons/md/sync-problem.d.ts | 3 + react-icons/md/sync.d.ts | 3 + react-icons/md/system-update-alt.d.ts | 3 + react-icons/md/system-update.d.ts | 3 + react-icons/md/tab-unselected.d.ts | 3 + react-icons/md/tab.d.ts | 3 + react-icons/md/tablet-android.d.ts | 3 + react-icons/md/tablet-mac.d.ts | 3 + react-icons/md/tablet.d.ts | 3 + react-icons/md/tag-faces.d.ts | 3 + react-icons/md/tap-and-play.d.ts | 3 + react-icons/md/terrain.d.ts | 3 + react-icons/md/text-fields.d.ts | 3 + react-icons/md/text-format.d.ts | 3 + react-icons/md/textsms.d.ts | 3 + react-icons/md/texture.d.ts | 3 + react-icons/md/theaters.d.ts | 3 + react-icons/md/thumb-down.d.ts | 3 + react-icons/md/thumb-up.d.ts | 3 + react-icons/md/thumbs-up-down.d.ts | 3 + react-icons/md/time-to-leave.d.ts | 3 + react-icons/md/timelapse.d.ts | 3 + react-icons/md/timeline.d.ts | 3 + react-icons/md/timer-10.d.ts | 3 + react-icons/md/timer-3.d.ts | 3 + react-icons/md/timer-off.d.ts | 3 + react-icons/md/timer.d.ts | 3 + react-icons/md/title.d.ts | 3 + react-icons/md/toc.d.ts | 3 + react-icons/md/today.d.ts | 3 + react-icons/md/toll.d.ts | 3 + react-icons/md/tonality.d.ts | 3 + react-icons/md/touch-app.d.ts | 3 + react-icons/md/toys.d.ts | 3 + react-icons/md/track-changes.d.ts | 3 + react-icons/md/traffic.d.ts | 3 + react-icons/md/train.d.ts | 3 + react-icons/md/tram.d.ts | 3 + react-icons/md/transfer-within-a-station.d.ts | 3 + react-icons/md/transform.d.ts | 3 + react-icons/md/translate.d.ts | 3 + react-icons/md/trending-down.d.ts | 3 + react-icons/md/trending-flat.d.ts | 3 + react-icons/md/trending-neutral.d.ts | 3 + react-icons/md/trending-up.d.ts | 3 + react-icons/md/tune.d.ts | 3 + react-icons/md/turned-in-not.d.ts | 3 + react-icons/md/turned-in.d.ts | 3 + react-icons/md/tv.d.ts | 3 + react-icons/md/unarchive.d.ts | 3 + react-icons/md/undo.d.ts | 3 + react-icons/md/unfold-less.d.ts | 3 + react-icons/md/unfold-more.d.ts | 3 + react-icons/md/update.d.ts | 3 + react-icons/md/usb.d.ts | 3 + react-icons/md/verified-user.d.ts | 3 + react-icons/md/vertical-align-bottom.d.ts | 3 + react-icons/md/vertical-align-center.d.ts | 3 + react-icons/md/vertical-align-top.d.ts | 3 + react-icons/md/vibration.d.ts | 3 + react-icons/md/video-call.d.ts | 3 + react-icons/md/video-collection.d.ts | 3 + react-icons/md/video-label.d.ts | 3 + react-icons/md/video-library.d.ts | 3 + react-icons/md/videocam-off.d.ts | 3 + react-icons/md/videocam.d.ts | 3 + react-icons/md/videogame-asset.d.ts | 3 + react-icons/md/view-agenda.d.ts | 3 + react-icons/md/view-array.d.ts | 3 + react-icons/md/view-carousel.d.ts | 3 + react-icons/md/view-column.d.ts | 3 + react-icons/md/view-comfortable.d.ts | 3 + react-icons/md/view-comfy.d.ts | 3 + react-icons/md/view-compact.d.ts | 3 + react-icons/md/view-day.d.ts | 3 + react-icons/md/view-headline.d.ts | 3 + react-icons/md/view-list.d.ts | 3 + react-icons/md/view-module.d.ts | 3 + react-icons/md/view-quilt.d.ts | 3 + react-icons/md/view-stream.d.ts | 3 + react-icons/md/view-week.d.ts | 3 + react-icons/md/vignette.d.ts | 3 + react-icons/md/visibility-off.d.ts | 3 + react-icons/md/visibility.d.ts | 3 + react-icons/md/voice-chat.d.ts | 3 + react-icons/md/voicemail.d.ts | 3 + react-icons/md/volume-down.d.ts | 3 + react-icons/md/volume-mute.d.ts | 3 + react-icons/md/volume-off.d.ts | 3 + react-icons/md/volume-up.d.ts | 3 + react-icons/md/vpn-key.d.ts | 3 + react-icons/md/vpn-lock.d.ts | 3 + react-icons/md/wallpaper.d.ts | 3 + react-icons/md/warning.d.ts | 3 + react-icons/md/watch-later.d.ts | 3 + react-icons/md/watch.d.ts | 3 + react-icons/md/wb-auto.d.ts | 3 + react-icons/md/wb-cloudy.d.ts | 3 + react-icons/md/wb-incandescent.d.ts | 3 + react-icons/md/wb-iridescent.d.ts | 3 + react-icons/md/wb-sunny.d.ts | 3 + react-icons/md/wc.d.ts | 3 + react-icons/md/web-asset.d.ts | 3 + react-icons/md/web.d.ts | 3 + react-icons/md/weekend.d.ts | 3 + react-icons/md/whatshot.d.ts | 3 + react-icons/md/widgets.d.ts | 3 + react-icons/md/wifi-lock.d.ts | 3 + react-icons/md/wifi-tethering.d.ts | 3 + react-icons/md/wifi.d.ts | 3 + react-icons/md/work.d.ts | 3 + react-icons/md/wrap-text.d.ts | 3 + react-icons/md/youtube-searched-for.d.ts | 3 + react-icons/md/zoom-in.d.ts | 3 + react-icons/md/zoom-out-map.d.ts | 3 + react-icons/md/zoom-out.d.ts | 3 + react-icons/react-icons-tests.tsx | 11 + react-icons/ti/adjust-brightness.d.ts | 3 + react-icons/ti/adjust-contrast.d.ts | 3 + react-icons/ti/anchor-outline.d.ts | 3 + react-icons/ti/anchor.d.ts | 3 + react-icons/ti/archive.d.ts | 3 + react-icons/ti/arrow-back-outline.d.ts | 3 + react-icons/ti/arrow-back.d.ts | 3 + react-icons/ti/arrow-down-outline.d.ts | 3 + react-icons/ti/arrow-down-thick.d.ts | 3 + react-icons/ti/arrow-down.d.ts | 3 + react-icons/ti/arrow-forward-outline.d.ts | 3 + react-icons/ti/arrow-forward.d.ts | 3 + react-icons/ti/arrow-left-outline.d.ts | 3 + react-icons/ti/arrow-left-thick.d.ts | 3 + react-icons/ti/arrow-left.d.ts | 3 + react-icons/ti/arrow-loop-outline.d.ts | 3 + react-icons/ti/arrow-loop.d.ts | 3 + react-icons/ti/arrow-maximise-outline.d.ts | 3 + react-icons/ti/arrow-maximise.d.ts | 3 + react-icons/ti/arrow-minimise-outline.d.ts | 3 + react-icons/ti/arrow-minimise.d.ts | 3 + react-icons/ti/arrow-move-outline.d.ts | 3 + react-icons/ti/arrow-move.d.ts | 3 + react-icons/ti/arrow-repeat-outline.d.ts | 3 + react-icons/ti/arrow-repeat.d.ts | 3 + react-icons/ti/arrow-right-outline.d.ts | 3 + react-icons/ti/arrow-right-thick.d.ts | 3 + react-icons/ti/arrow-right.d.ts | 3 + react-icons/ti/arrow-shuffle.d.ts | 3 + react-icons/ti/arrow-sorted-down.d.ts | 3 + react-icons/ti/arrow-sorted-up.d.ts | 3 + react-icons/ti/arrow-sync-outline.d.ts | 3 + react-icons/ti/arrow-sync.d.ts | 3 + react-icons/ti/arrow-unsorted.d.ts | 3 + react-icons/ti/arrow-up-outline.d.ts | 3 + react-icons/ti/arrow-up-thick.d.ts | 3 + react-icons/ti/arrow-up.d.ts | 3 + react-icons/ti/at.d.ts | 3 + react-icons/ti/attachment-outline.d.ts | 3 + react-icons/ti/attachment.d.ts | 3 + react-icons/ti/backspace-outline.d.ts | 3 + react-icons/ti/backspace.d.ts | 3 + react-icons/ti/battery-charge.d.ts | 3 + react-icons/ti/battery-full.d.ts | 3 + react-icons/ti/battery-high.d.ts | 3 + react-icons/ti/battery-low.d.ts | 3 + react-icons/ti/battery-mid.d.ts | 3 + react-icons/ti/beaker.d.ts | 3 + react-icons/ti/beer.d.ts | 3 + react-icons/ti/bell.d.ts | 3 + react-icons/ti/book.d.ts | 3 + react-icons/ti/bookmark.d.ts | 3 + react-icons/ti/briefcase.d.ts | 3 + react-icons/ti/brush.d.ts | 3 + react-icons/ti/business-card.d.ts | 3 + react-icons/ti/calculator.d.ts | 3 + react-icons/ti/calendar-outline.d.ts | 3 + react-icons/ti/calendar.d.ts | 3 + react-icons/ti/calender-outline.d.ts | 3 + react-icons/ti/calender.d.ts | 3 + react-icons/ti/camera-outline.d.ts | 3 + react-icons/ti/camera.d.ts | 3 + react-icons/ti/cancel-outline.d.ts | 3 + react-icons/ti/cancel.d.ts | 3 + react-icons/ti/chart-area-outline.d.ts | 3 + react-icons/ti/chart-area.d.ts | 3 + react-icons/ti/chart-bar-outline.d.ts | 3 + react-icons/ti/chart-bar.d.ts | 3 + react-icons/ti/chart-line-outline.d.ts | 3 + react-icons/ti/chart-line.d.ts | 3 + react-icons/ti/chart-pie-outline.d.ts | 3 + react-icons/ti/chart-pie.d.ts | 3 + react-icons/ti/chevron-left-outline.d.ts | 3 + react-icons/ti/chevron-left.d.ts | 3 + react-icons/ti/chevron-right-outline.d.ts | 3 + react-icons/ti/chevron-right.d.ts | 3 + react-icons/ti/clipboard.d.ts | 3 + react-icons/ti/cloud-storage-outline.d.ts | 3 + react-icons/ti/cloud-storage.d.ts | 3 + react-icons/ti/code-outline.d.ts | 3 + react-icons/ti/code.d.ts | 3 + react-icons/ti/coffee.d.ts | 3 + react-icons/ti/cog-outline.d.ts | 3 + react-icons/ti/cog.d.ts | 3 + react-icons/ti/compass.d.ts | 3 + react-icons/ti/contacts.d.ts | 3 + react-icons/ti/credit-card.d.ts | 3 + react-icons/ti/cross.d.ts | 3 + react-icons/ti/css3.d.ts | 3 + react-icons/ti/database.d.ts | 3 + react-icons/ti/delete-outline.d.ts | 3 + react-icons/ti/delete.d.ts | 3 + react-icons/ti/device-desktop.d.ts | 3 + react-icons/ti/device-laptop.d.ts | 3 + react-icons/ti/device-phone.d.ts | 3 + react-icons/ti/device-tablet.d.ts | 3 + react-icons/ti/directions.d.ts | 3 + react-icons/ti/divide-outline.d.ts | 3 + react-icons/ti/divide.d.ts | 3 + react-icons/ti/document-add.d.ts | 3 + react-icons/ti/document-delete.d.ts | 3 + react-icons/ti/document-text.d.ts | 3 + react-icons/ti/document.d.ts | 3 + react-icons/ti/download-outline.d.ts | 3 + react-icons/ti/download.d.ts | 3 + react-icons/ti/dropbox.d.ts | 3 + react-icons/ti/edit.d.ts | 3 + react-icons/ti/eject-outline.d.ts | 3 + react-icons/ti/eject.d.ts | 3 + react-icons/ti/equals-outline.d.ts | 3 + react-icons/ti/equals.d.ts | 3 + react-icons/ti/export-outline.d.ts | 3 + react-icons/ti/export.d.ts | 3 + react-icons/ti/eye-outline.d.ts | 3 + react-icons/ti/eye.d.ts | 3 + react-icons/ti/feather.d.ts | 3 + react-icons/ti/film.d.ts | 3 + react-icons/ti/filter.d.ts | 3 + react-icons/ti/flag-outline.d.ts | 3 + react-icons/ti/flag.d.ts | 3 + react-icons/ti/flash-outline.d.ts | 3 + react-icons/ti/flash.d.ts | 3 + react-icons/ti/flow-children.d.ts | 3 + react-icons/ti/flow-merge.d.ts | 3 + react-icons/ti/flow-parallel.d.ts | 3 + react-icons/ti/flow-switch.d.ts | 3 + react-icons/ti/folder-add.d.ts | 3 + react-icons/ti/folder-delete.d.ts | 3 + react-icons/ti/folder-open.d.ts | 3 + react-icons/ti/folder.d.ts | 3 + react-icons/ti/gift.d.ts | 3 + react-icons/ti/globe-outline.d.ts | 3 + react-icons/ti/globe.d.ts | 3 + react-icons/ti/group-outline.d.ts | 3 + react-icons/ti/group.d.ts | 3 + react-icons/ti/headphones.d.ts | 3 + react-icons/ti/heart-full-outline.d.ts | 3 + react-icons/ti/heart-half-outline.d.ts | 3 + react-icons/ti/heart-outline.d.ts | 3 + react-icons/ti/heart.d.ts | 3 + react-icons/ti/home-outline.d.ts | 3 + react-icons/ti/home.d.ts | 3 + react-icons/ti/html5.d.ts | 3 + react-icons/ti/image-outline.d.ts | 3 + react-icons/ti/image.d.ts | 3 + react-icons/ti/index.d.ts | 678 ++++ react-icons/ti/infinity-outline.d.ts | 3 + react-icons/ti/infinity.d.ts | 3 + react-icons/ti/info-large-outline.d.ts | 3 + react-icons/ti/info-large.d.ts | 3 + react-icons/ti/info-outline.d.ts | 3 + react-icons/ti/info.d.ts | 3 + react-icons/ti/input-checked-outline.d.ts | 3 + react-icons/ti/input-checked.d.ts | 3 + react-icons/ti/key-outline.d.ts | 3 + react-icons/ti/key.d.ts | 3 + react-icons/ti/keyboard.d.ts | 3 + react-icons/ti/leaf.d.ts | 3 + react-icons/ti/lightbulb.d.ts | 3 + react-icons/ti/link-outline.d.ts | 3 + react-icons/ti/link.d.ts | 3 + react-icons/ti/location-arrow-outline.d.ts | 3 + react-icons/ti/location-arrow.d.ts | 3 + react-icons/ti/location-outline.d.ts | 3 + react-icons/ti/location.d.ts | 3 + react-icons/ti/lock-closed-outline.d.ts | 3 + react-icons/ti/lock-closed.d.ts | 3 + react-icons/ti/lock-open-outline.d.ts | 3 + react-icons/ti/lock-open.d.ts | 3 + react-icons/ti/mail.d.ts | 3 + react-icons/ti/map.d.ts | 3 + react-icons/ti/media-eject-outline.d.ts | 3 + react-icons/ti/media-eject.d.ts | 3 + .../ti/media-fast-forward-outline.d.ts | 3 + react-icons/ti/media-fast-forward.d.ts | 3 + react-icons/ti/media-pause-outline.d.ts | 3 + react-icons/ti/media-pause.d.ts | 3 + react-icons/ti/media-play-outline.d.ts | 3 + .../ti/media-play-reverse-outline.d.ts | 3 + react-icons/ti/media-play-reverse.d.ts | 3 + react-icons/ti/media-play.d.ts | 3 + react-icons/ti/media-record-outline.d.ts | 3 + react-icons/ti/media-record.d.ts | 3 + react-icons/ti/media-rewind-outline.d.ts | 3 + react-icons/ti/media-rewind.d.ts | 3 + react-icons/ti/media-stop-outline.d.ts | 3 + react-icons/ti/media-stop.d.ts | 3 + react-icons/ti/message-typing.d.ts | 3 + react-icons/ti/message.d.ts | 3 + react-icons/ti/messages.d.ts | 3 + react-icons/ti/microphone-outline.d.ts | 3 + react-icons/ti/microphone.d.ts | 3 + react-icons/ti/minus-outline.d.ts | 3 + react-icons/ti/minus.d.ts | 3 + react-icons/ti/mortar-board.d.ts | 3 + react-icons/ti/news.d.ts | 3 + react-icons/ti/notes-outline.d.ts | 3 + react-icons/ti/notes.d.ts | 3 + react-icons/ti/pen.d.ts | 3 + react-icons/ti/pencil.d.ts | 3 + react-icons/ti/phone-outline.d.ts | 3 + react-icons/ti/phone.d.ts | 3 + react-icons/ti/pi-outline.d.ts | 3 + react-icons/ti/pi.d.ts | 3 + react-icons/ti/pin-outline.d.ts | 3 + react-icons/ti/pin.d.ts | 3 + react-icons/ti/pipette.d.ts | 3 + react-icons/ti/plane-outline.d.ts | 3 + react-icons/ti/plane.d.ts | 3 + react-icons/ti/plug.d.ts | 3 + react-icons/ti/plus-outline.d.ts | 3 + react-icons/ti/plus.d.ts | 3 + react-icons/ti/point-of-interest-outline.d.ts | 3 + react-icons/ti/point-of-interest.d.ts | 3 + react-icons/ti/power-outline.d.ts | 3 + react-icons/ti/power.d.ts | 3 + react-icons/ti/printer.d.ts | 3 + react-icons/ti/puzzle-outline.d.ts | 3 + react-icons/ti/puzzle.d.ts | 3 + react-icons/ti/radar-outline.d.ts | 3 + react-icons/ti/radar.d.ts | 3 + react-icons/ti/refresh-outline.d.ts | 3 + react-icons/ti/refresh.d.ts | 3 + react-icons/ti/rss-outline.d.ts | 3 + react-icons/ti/rss.d.ts | 3 + react-icons/ti/scissors-outline.d.ts | 3 + react-icons/ti/scissors.d.ts | 3 + react-icons/ti/shopping-bag.d.ts | 3 + react-icons/ti/shopping-cart.d.ts | 3 + react-icons/ti/social-at-circular.d.ts | 3 + react-icons/ti/social-dribbble-circular.d.ts | 3 + react-icons/ti/social-dribbble.d.ts | 3 + react-icons/ti/social-facebook-circular.d.ts | 3 + react-icons/ti/social-facebook.d.ts | 3 + react-icons/ti/social-flickr-circular.d.ts | 3 + react-icons/ti/social-flickr.d.ts | 3 + react-icons/ti/social-github-circular.d.ts | 3 + react-icons/ti/social-github.d.ts | 3 + .../ti/social-google-plus-circular.d.ts | 3 + react-icons/ti/social-google-plus.d.ts | 3 + react-icons/ti/social-instagram-circular.d.ts | 3 + react-icons/ti/social-instagram.d.ts | 3 + react-icons/ti/social-last-fm-circular.d.ts | 3 + react-icons/ti/social-last-fm.d.ts | 3 + react-icons/ti/social-linkedin-circular.d.ts | 3 + react-icons/ti/social-linkedin.d.ts | 3 + react-icons/ti/social-pinterest-circular.d.ts | 3 + react-icons/ti/social-pinterest.d.ts | 3 + react-icons/ti/social-skype-outline.d.ts | 3 + react-icons/ti/social-skype.d.ts | 3 + react-icons/ti/social-tumbler-circular.d.ts | 3 + react-icons/ti/social-tumbler.d.ts | 3 + react-icons/ti/social-twitter-circular.d.ts | 3 + react-icons/ti/social-twitter.d.ts | 3 + react-icons/ti/social-vimeo-circular.d.ts | 3 + react-icons/ti/social-vimeo.d.ts | 3 + react-icons/ti/social-youtube-circular.d.ts | 3 + react-icons/ti/social-youtube.d.ts | 3 + .../ti/sort-alphabetically-outline.d.ts | 3 + react-icons/ti/sort-alphabetically.d.ts | 3 + react-icons/ti/sort-numerically-outline.d.ts | 3 + react-icons/ti/sort-numerically.d.ts | 3 + react-icons/ti/spanner-outline.d.ts | 3 + react-icons/ti/spanner.d.ts | 3 + react-icons/ti/spiral.d.ts | 3 + react-icons/ti/star-full-outline.d.ts | 3 + react-icons/ti/star-half-outline.d.ts | 3 + react-icons/ti/star-half.d.ts | 3 + react-icons/ti/star-outline.d.ts | 3 + react-icons/ti/star.d.ts | 3 + react-icons/ti/starburst-outline.d.ts | 3 + react-icons/ti/starburst.d.ts | 3 + react-icons/ti/stopwatch.d.ts | 3 + react-icons/ti/support.d.ts | 3 + react-icons/ti/tabs-outline.d.ts | 3 + react-icons/ti/tag.d.ts | 3 + react-icons/ti/tags.d.ts | 3 + react-icons/ti/th-large-outline.d.ts | 3 + react-icons/ti/th-large.d.ts | 3 + react-icons/ti/th-list-outline.d.ts | 3 + react-icons/ti/th-list.d.ts | 3 + react-icons/ti/th-menu-outline.d.ts | 3 + react-icons/ti/th-menu.d.ts | 3 + react-icons/ti/th-small-outline.d.ts | 3 + react-icons/ti/th-small.d.ts | 3 + react-icons/ti/thermometer.d.ts | 3 + react-icons/ti/thumbs-down.d.ts | 3 + react-icons/ti/thumbs-ok.d.ts | 3 + react-icons/ti/thumbs-up.d.ts | 3 + react-icons/ti/tick-outline.d.ts | 3 + react-icons/ti/tick.d.ts | 3 + react-icons/ti/ticket.d.ts | 3 + react-icons/ti/time.d.ts | 3 + react-icons/ti/times-outline.d.ts | 3 + react-icons/ti/times.d.ts | 3 + react-icons/ti/trash.d.ts | 3 + react-icons/ti/tree.d.ts | 3 + react-icons/ti/upload-outline.d.ts | 3 + react-icons/ti/upload.d.ts | 3 + react-icons/ti/user-add-outline.d.ts | 3 + react-icons/ti/user-add.d.ts | 3 + react-icons/ti/user-delete-outline.d.ts | 3 + react-icons/ti/user-delete.d.ts | 3 + react-icons/ti/user-outline.d.ts | 3 + react-icons/ti/user.d.ts | 3 + react-icons/ti/vendor-android.d.ts | 3 + react-icons/ti/vendor-apple.d.ts | 3 + react-icons/ti/vendor-microsoft.d.ts | 3 + react-icons/ti/video-outline.d.ts | 3 + react-icons/ti/video.d.ts | 3 + react-icons/ti/volume-down.d.ts | 3 + react-icons/ti/volume-mute.d.ts | 3 + react-icons/ti/volume-up.d.ts | 3 + react-icons/ti/volume.d.ts | 3 + react-icons/ti/warning-outline.d.ts | 3 + react-icons/ti/warning.d.ts | 3 + react-icons/ti/watch.d.ts | 3 + react-icons/ti/waves-outline.d.ts | 3 + react-icons/ti/waves.d.ts | 3 + react-icons/ti/weather-cloudy.d.ts | 3 + react-icons/ti/weather-downpour.d.ts | 3 + react-icons/ti/weather-night.d.ts | 3 + react-icons/ti/weather-partly-sunny.d.ts | 3 + react-icons/ti/weather-shower.d.ts | 3 + react-icons/ti/weather-snow.d.ts | 3 + react-icons/ti/weather-stormy.d.ts | 3 + react-icons/ti/weather-sunny.d.ts | 3 + react-icons/ti/weather-windy-cloudy.d.ts | 3 + react-icons/ti/weather-windy.d.ts | 3 + react-icons/ti/wi-fi-outline.d.ts | 3 + react-icons/ti/wi-fi.d.ts | 3 + react-icons/ti/wine.d.ts | 3 + react-icons/ti/world-outline.d.ts | 3 + react-icons/ti/world.d.ts | 3 + react-icons/ti/zoom-in-outline.d.ts | 3 + react-icons/ti/zoom-in.d.ts | 3 + react-icons/ti/zoom-out-outline.d.ts | 3 + react-icons/ti/zoom-out.d.ts | 3 + react-icons/ti/zoom-outline.d.ts | 3 + react-icons/ti/zoom.d.ts | 3 + react-icons/tsconfig.json | 2849 +++++++++++++++++ react-icons/tslint.json | 1 + 2836 files changed, 17022 insertions(+) create mode 100644 react-icon-base/index.d.ts create mode 100644 react-icon-base/react-icon-base-tests.tsx create mode 100644 react-icon-base/tsconfig.json create mode 100644 react-icon-base/tslint.json create mode 100644 react-icons/fa/500px.d.ts create mode 100644 react-icons/fa/adjust.d.ts create mode 100644 react-icons/fa/adn.d.ts create mode 100644 react-icons/fa/align-center.d.ts create mode 100644 react-icons/fa/align-justify.d.ts create mode 100644 react-icons/fa/align-left.d.ts create mode 100644 react-icons/fa/align-right.d.ts create mode 100644 react-icons/fa/amazon.d.ts create mode 100644 react-icons/fa/ambulance.d.ts create mode 100644 react-icons/fa/american-sign-language-interpreting.d.ts create mode 100644 react-icons/fa/anchor.d.ts create mode 100644 react-icons/fa/android.d.ts create mode 100644 react-icons/fa/angellist.d.ts create mode 100644 react-icons/fa/angle-double-down.d.ts create mode 100644 react-icons/fa/angle-double-left.d.ts create mode 100644 react-icons/fa/angle-double-right.d.ts create mode 100644 react-icons/fa/angle-double-up.d.ts create mode 100644 react-icons/fa/angle-down.d.ts create mode 100644 react-icons/fa/angle-left.d.ts create mode 100644 react-icons/fa/angle-right.d.ts create mode 100644 react-icons/fa/angle-up.d.ts create mode 100644 react-icons/fa/apple.d.ts create mode 100644 react-icons/fa/archive.d.ts create mode 100644 react-icons/fa/area-chart.d.ts create mode 100644 react-icons/fa/arrow-circle-down.d.ts create mode 100644 react-icons/fa/arrow-circle-left.d.ts create mode 100644 react-icons/fa/arrow-circle-o-down.d.ts create mode 100644 react-icons/fa/arrow-circle-o-left.d.ts create mode 100644 react-icons/fa/arrow-circle-o-right.d.ts create mode 100644 react-icons/fa/arrow-circle-o-up.d.ts create mode 100644 react-icons/fa/arrow-circle-right.d.ts create mode 100644 react-icons/fa/arrow-circle-up.d.ts create mode 100644 react-icons/fa/arrow-down.d.ts create mode 100644 react-icons/fa/arrow-left.d.ts create mode 100644 react-icons/fa/arrow-right.d.ts create mode 100644 react-icons/fa/arrow-up.d.ts create mode 100644 react-icons/fa/arrows-alt.d.ts create mode 100644 react-icons/fa/arrows-h.d.ts create mode 100644 react-icons/fa/arrows-v.d.ts create mode 100644 react-icons/fa/arrows.d.ts create mode 100644 react-icons/fa/assistive-listening-systems.d.ts create mode 100644 react-icons/fa/asterisk.d.ts create mode 100644 react-icons/fa/at.d.ts create mode 100644 react-icons/fa/audio-description.d.ts create mode 100644 react-icons/fa/automobile.d.ts create mode 100644 react-icons/fa/backward.d.ts create mode 100644 react-icons/fa/balance-scale.d.ts create mode 100644 react-icons/fa/ban.d.ts create mode 100644 react-icons/fa/bank.d.ts create mode 100644 react-icons/fa/bar-chart.d.ts create mode 100644 react-icons/fa/barcode.d.ts create mode 100644 react-icons/fa/bars.d.ts create mode 100644 react-icons/fa/battery-0.d.ts create mode 100644 react-icons/fa/battery-1.d.ts create mode 100644 react-icons/fa/battery-2.d.ts create mode 100644 react-icons/fa/battery-3.d.ts create mode 100644 react-icons/fa/battery-4.d.ts create mode 100644 react-icons/fa/bed.d.ts create mode 100644 react-icons/fa/beer.d.ts create mode 100644 react-icons/fa/behance-square.d.ts create mode 100644 react-icons/fa/behance.d.ts create mode 100644 react-icons/fa/bell-o.d.ts create mode 100644 react-icons/fa/bell-slash-o.d.ts create mode 100644 react-icons/fa/bell-slash.d.ts create mode 100644 react-icons/fa/bell.d.ts create mode 100644 react-icons/fa/bicycle.d.ts create mode 100644 react-icons/fa/binoculars.d.ts create mode 100644 react-icons/fa/birthday-cake.d.ts create mode 100644 react-icons/fa/bitbucket-square.d.ts create mode 100644 react-icons/fa/bitbucket.d.ts create mode 100644 react-icons/fa/bitcoin.d.ts create mode 100644 react-icons/fa/black-tie.d.ts create mode 100644 react-icons/fa/blind.d.ts create mode 100644 react-icons/fa/bluetooth-b.d.ts create mode 100644 react-icons/fa/bluetooth.d.ts create mode 100644 react-icons/fa/bold.d.ts create mode 100644 react-icons/fa/bolt.d.ts create mode 100644 react-icons/fa/bomb.d.ts create mode 100644 react-icons/fa/book.d.ts create mode 100644 react-icons/fa/bookmark-o.d.ts create mode 100644 react-icons/fa/bookmark.d.ts create mode 100644 react-icons/fa/braille.d.ts create mode 100644 react-icons/fa/briefcase.d.ts create mode 100644 react-icons/fa/bug.d.ts create mode 100644 react-icons/fa/building-o.d.ts create mode 100644 react-icons/fa/building.d.ts create mode 100644 react-icons/fa/bullhorn.d.ts create mode 100644 react-icons/fa/bullseye.d.ts create mode 100644 react-icons/fa/bus.d.ts create mode 100644 react-icons/fa/buysellads.d.ts create mode 100644 react-icons/fa/cab.d.ts create mode 100644 react-icons/fa/calculator.d.ts create mode 100644 react-icons/fa/calendar-check-o.d.ts create mode 100644 react-icons/fa/calendar-minus-o.d.ts create mode 100644 react-icons/fa/calendar-o.d.ts create mode 100644 react-icons/fa/calendar-plus-o.d.ts create mode 100644 react-icons/fa/calendar-times-o.d.ts create mode 100644 react-icons/fa/calendar.d.ts create mode 100644 react-icons/fa/camera-retro.d.ts create mode 100644 react-icons/fa/camera.d.ts create mode 100644 react-icons/fa/caret-down.d.ts create mode 100644 react-icons/fa/caret-left.d.ts create mode 100644 react-icons/fa/caret-right.d.ts create mode 100644 react-icons/fa/caret-square-o-down.d.ts create mode 100644 react-icons/fa/caret-square-o-left.d.ts create mode 100644 react-icons/fa/caret-square-o-right.d.ts create mode 100644 react-icons/fa/caret-square-o-up.d.ts create mode 100644 react-icons/fa/caret-up.d.ts create mode 100644 react-icons/fa/cart-arrow-down.d.ts create mode 100644 react-icons/fa/cart-plus.d.ts create mode 100644 react-icons/fa/cc-amex.d.ts create mode 100644 react-icons/fa/cc-diners-club.d.ts create mode 100644 react-icons/fa/cc-discover.d.ts create mode 100644 react-icons/fa/cc-jcb.d.ts create mode 100644 react-icons/fa/cc-mastercard.d.ts create mode 100644 react-icons/fa/cc-paypal.d.ts create mode 100644 react-icons/fa/cc-stripe.d.ts create mode 100644 react-icons/fa/cc-visa.d.ts create mode 100644 react-icons/fa/cc.d.ts create mode 100644 react-icons/fa/certificate.d.ts create mode 100644 react-icons/fa/chain-broken.d.ts create mode 100644 react-icons/fa/chain.d.ts create mode 100644 react-icons/fa/check-circle-o.d.ts create mode 100644 react-icons/fa/check-circle.d.ts create mode 100644 react-icons/fa/check-square-o.d.ts create mode 100644 react-icons/fa/check-square.d.ts create mode 100644 react-icons/fa/check.d.ts create mode 100644 react-icons/fa/chevron-circle-down.d.ts create mode 100644 react-icons/fa/chevron-circle-left.d.ts create mode 100644 react-icons/fa/chevron-circle-right.d.ts create mode 100644 react-icons/fa/chevron-circle-up.d.ts create mode 100644 react-icons/fa/chevron-down.d.ts create mode 100644 react-icons/fa/chevron-left.d.ts create mode 100644 react-icons/fa/chevron-right.d.ts create mode 100644 react-icons/fa/chevron-up.d.ts create mode 100644 react-icons/fa/child.d.ts create mode 100644 react-icons/fa/chrome.d.ts create mode 100644 react-icons/fa/circle-o-notch.d.ts create mode 100644 react-icons/fa/circle-o.d.ts create mode 100644 react-icons/fa/circle-thin.d.ts create mode 100644 react-icons/fa/circle.d.ts create mode 100644 react-icons/fa/clipboard.d.ts create mode 100644 react-icons/fa/clock-o.d.ts create mode 100644 react-icons/fa/clone.d.ts create mode 100644 react-icons/fa/close.d.ts create mode 100644 react-icons/fa/cloud-download.d.ts create mode 100644 react-icons/fa/cloud-upload.d.ts create mode 100644 react-icons/fa/cloud.d.ts create mode 100644 react-icons/fa/cny.d.ts create mode 100644 react-icons/fa/code-fork.d.ts create mode 100644 react-icons/fa/code.d.ts create mode 100644 react-icons/fa/codepen.d.ts create mode 100644 react-icons/fa/codiepie.d.ts create mode 100644 react-icons/fa/coffee.d.ts create mode 100644 react-icons/fa/cog.d.ts create mode 100644 react-icons/fa/cogs.d.ts create mode 100644 react-icons/fa/columns.d.ts create mode 100644 react-icons/fa/comment-o.d.ts create mode 100644 react-icons/fa/comment.d.ts create mode 100644 react-icons/fa/commenting-o.d.ts create mode 100644 react-icons/fa/commenting.d.ts create mode 100644 react-icons/fa/comments-o.d.ts create mode 100644 react-icons/fa/comments.d.ts create mode 100644 react-icons/fa/compass.d.ts create mode 100644 react-icons/fa/compress.d.ts create mode 100644 react-icons/fa/connectdevelop.d.ts create mode 100644 react-icons/fa/contao.d.ts create mode 100644 react-icons/fa/copy.d.ts create mode 100644 react-icons/fa/copyright.d.ts create mode 100644 react-icons/fa/creative-commons.d.ts create mode 100644 react-icons/fa/credit-card-alt.d.ts create mode 100644 react-icons/fa/credit-card.d.ts create mode 100644 react-icons/fa/crop.d.ts create mode 100644 react-icons/fa/crosshairs.d.ts create mode 100644 react-icons/fa/css3.d.ts create mode 100644 react-icons/fa/cube.d.ts create mode 100644 react-icons/fa/cubes.d.ts create mode 100644 react-icons/fa/cut.d.ts create mode 100644 react-icons/fa/cutlery.d.ts create mode 100644 react-icons/fa/dashboard.d.ts create mode 100644 react-icons/fa/dashcube.d.ts create mode 100644 react-icons/fa/database.d.ts create mode 100644 react-icons/fa/deaf.d.ts create mode 100644 react-icons/fa/dedent.d.ts create mode 100644 react-icons/fa/delicious.d.ts create mode 100644 react-icons/fa/desktop.d.ts create mode 100644 react-icons/fa/deviantart.d.ts create mode 100644 react-icons/fa/diamond.d.ts create mode 100644 react-icons/fa/digg.d.ts create mode 100644 react-icons/fa/dollar.d.ts create mode 100644 react-icons/fa/dot-circle-o.d.ts create mode 100644 react-icons/fa/download.d.ts create mode 100644 react-icons/fa/dribbble.d.ts create mode 100644 react-icons/fa/dropbox.d.ts create mode 100644 react-icons/fa/drupal.d.ts create mode 100644 react-icons/fa/edge.d.ts create mode 100644 react-icons/fa/edit.d.ts create mode 100644 react-icons/fa/eject.d.ts create mode 100644 react-icons/fa/ellipsis-h.d.ts create mode 100644 react-icons/fa/ellipsis-v.d.ts create mode 100644 react-icons/fa/empire.d.ts create mode 100644 react-icons/fa/envelope-o.d.ts create mode 100644 react-icons/fa/envelope-square.d.ts create mode 100644 react-icons/fa/envelope.d.ts create mode 100644 react-icons/fa/envira.d.ts create mode 100644 react-icons/fa/eraser.d.ts create mode 100644 react-icons/fa/eur.d.ts create mode 100644 react-icons/fa/exchange.d.ts create mode 100644 react-icons/fa/exclamation-circle.d.ts create mode 100644 react-icons/fa/exclamation-triangle.d.ts create mode 100644 react-icons/fa/exclamation.d.ts create mode 100644 react-icons/fa/expand.d.ts create mode 100644 react-icons/fa/expeditedssl.d.ts create mode 100644 react-icons/fa/external-link-square.d.ts create mode 100644 react-icons/fa/external-link.d.ts create mode 100644 react-icons/fa/eye-slash.d.ts create mode 100644 react-icons/fa/eye.d.ts create mode 100644 react-icons/fa/eyedropper.d.ts create mode 100644 react-icons/fa/facebook-official.d.ts create mode 100644 react-icons/fa/facebook-square.d.ts create mode 100644 react-icons/fa/facebook.d.ts create mode 100644 react-icons/fa/fast-backward.d.ts create mode 100644 react-icons/fa/fast-forward.d.ts create mode 100644 react-icons/fa/fax.d.ts create mode 100644 react-icons/fa/feed.d.ts create mode 100644 react-icons/fa/female.d.ts create mode 100644 react-icons/fa/fighter-jet.d.ts create mode 100644 react-icons/fa/file-archive-o.d.ts create mode 100644 react-icons/fa/file-audio-o.d.ts create mode 100644 react-icons/fa/file-code-o.d.ts create mode 100644 react-icons/fa/file-excel-o.d.ts create mode 100644 react-icons/fa/file-image-o.d.ts create mode 100644 react-icons/fa/file-movie-o.d.ts create mode 100644 react-icons/fa/file-o.d.ts create mode 100644 react-icons/fa/file-pdf-o.d.ts create mode 100644 react-icons/fa/file-powerpoint-o.d.ts create mode 100644 react-icons/fa/file-text-o.d.ts create mode 100644 react-icons/fa/file-text.d.ts create mode 100644 react-icons/fa/file-word-o.d.ts create mode 100644 react-icons/fa/file.d.ts create mode 100644 react-icons/fa/film.d.ts create mode 100644 react-icons/fa/filter.d.ts create mode 100644 react-icons/fa/fire-extinguisher.d.ts create mode 100644 react-icons/fa/fire.d.ts create mode 100644 react-icons/fa/firefox.d.ts create mode 100644 react-icons/fa/flag-checkered.d.ts create mode 100644 react-icons/fa/flag-o.d.ts create mode 100644 react-icons/fa/flag.d.ts create mode 100644 react-icons/fa/flask.d.ts create mode 100644 react-icons/fa/flickr.d.ts create mode 100644 react-icons/fa/floppy-o.d.ts create mode 100644 react-icons/fa/folder-o.d.ts create mode 100644 react-icons/fa/folder-open-o.d.ts create mode 100644 react-icons/fa/folder-open.d.ts create mode 100644 react-icons/fa/folder.d.ts create mode 100644 react-icons/fa/font.d.ts create mode 100644 react-icons/fa/fonticons.d.ts create mode 100644 react-icons/fa/fort-awesome.d.ts create mode 100644 react-icons/fa/forumbee.d.ts create mode 100644 react-icons/fa/forward.d.ts create mode 100644 react-icons/fa/foursquare.d.ts create mode 100644 react-icons/fa/frown-o.d.ts create mode 100644 react-icons/fa/futbol-o.d.ts create mode 100644 react-icons/fa/gamepad.d.ts create mode 100644 react-icons/fa/gavel.d.ts create mode 100644 react-icons/fa/gbp.d.ts create mode 100644 react-icons/fa/genderless.d.ts create mode 100644 react-icons/fa/get-pocket.d.ts create mode 100644 react-icons/fa/gg-circle.d.ts create mode 100644 react-icons/fa/gg.d.ts create mode 100644 react-icons/fa/gift.d.ts create mode 100644 react-icons/fa/git-square.d.ts create mode 100644 react-icons/fa/git.d.ts create mode 100644 react-icons/fa/github-alt.d.ts create mode 100644 react-icons/fa/github-square.d.ts create mode 100644 react-icons/fa/github.d.ts create mode 100644 react-icons/fa/gitlab.d.ts create mode 100644 react-icons/fa/gittip.d.ts create mode 100644 react-icons/fa/glass.d.ts create mode 100644 react-icons/fa/glide-g.d.ts create mode 100644 react-icons/fa/glide.d.ts create mode 100644 react-icons/fa/globe.d.ts create mode 100644 react-icons/fa/google-plus-square.d.ts create mode 100644 react-icons/fa/google-plus.d.ts create mode 100644 react-icons/fa/google-wallet.d.ts create mode 100644 react-icons/fa/google.d.ts create mode 100644 react-icons/fa/graduation-cap.d.ts create mode 100644 react-icons/fa/group.d.ts create mode 100644 react-icons/fa/h-square.d.ts create mode 100644 react-icons/fa/hacker-news.d.ts create mode 100644 react-icons/fa/hand-grab-o.d.ts create mode 100644 react-icons/fa/hand-lizard-o.d.ts create mode 100644 react-icons/fa/hand-o-down.d.ts create mode 100644 react-icons/fa/hand-o-left.d.ts create mode 100644 react-icons/fa/hand-o-right.d.ts create mode 100644 react-icons/fa/hand-o-up.d.ts create mode 100644 react-icons/fa/hand-paper-o.d.ts create mode 100644 react-icons/fa/hand-peace-o.d.ts create mode 100644 react-icons/fa/hand-pointer-o.d.ts create mode 100644 react-icons/fa/hand-scissors-o.d.ts create mode 100644 react-icons/fa/hand-spock-o.d.ts create mode 100644 react-icons/fa/hashtag.d.ts create mode 100644 react-icons/fa/hdd-o.d.ts create mode 100644 react-icons/fa/header.d.ts create mode 100644 react-icons/fa/headphones.d.ts create mode 100644 react-icons/fa/heart-o.d.ts create mode 100644 react-icons/fa/heart.d.ts create mode 100644 react-icons/fa/heartbeat.d.ts create mode 100644 react-icons/fa/history.d.ts create mode 100644 react-icons/fa/home.d.ts create mode 100644 react-icons/fa/hospital-o.d.ts create mode 100644 react-icons/fa/hourglass-1.d.ts create mode 100644 react-icons/fa/hourglass-2.d.ts create mode 100644 react-icons/fa/hourglass-3.d.ts create mode 100644 react-icons/fa/hourglass-o.d.ts create mode 100644 react-icons/fa/hourglass.d.ts create mode 100644 react-icons/fa/houzz.d.ts create mode 100644 react-icons/fa/html5.d.ts create mode 100644 react-icons/fa/i-cursor.d.ts create mode 100644 react-icons/fa/ils.d.ts create mode 100644 react-icons/fa/image.d.ts create mode 100644 react-icons/fa/inbox.d.ts create mode 100644 react-icons/fa/indent.d.ts create mode 100644 react-icons/fa/index.d.ts create mode 100644 react-icons/fa/industry.d.ts create mode 100644 react-icons/fa/info-circle.d.ts create mode 100644 react-icons/fa/info.d.ts create mode 100644 react-icons/fa/inr.d.ts create mode 100644 react-icons/fa/instagram.d.ts create mode 100644 react-icons/fa/internet-explorer.d.ts create mode 100644 react-icons/fa/intersex.d.ts create mode 100644 react-icons/fa/ioxhost.d.ts create mode 100644 react-icons/fa/italic.d.ts create mode 100644 react-icons/fa/joomla.d.ts create mode 100644 react-icons/fa/jsfiddle.d.ts create mode 100644 react-icons/fa/key.d.ts create mode 100644 react-icons/fa/keyboard-o.d.ts create mode 100644 react-icons/fa/krw.d.ts create mode 100644 react-icons/fa/language.d.ts create mode 100644 react-icons/fa/laptop.d.ts create mode 100644 react-icons/fa/lastfm-square.d.ts create mode 100644 react-icons/fa/lastfm.d.ts create mode 100644 react-icons/fa/leaf.d.ts create mode 100644 react-icons/fa/leanpub.d.ts create mode 100644 react-icons/fa/lemon-o.d.ts create mode 100644 react-icons/fa/level-down.d.ts create mode 100644 react-icons/fa/level-up.d.ts create mode 100644 react-icons/fa/life-bouy.d.ts create mode 100644 react-icons/fa/lightbulb-o.d.ts create mode 100644 react-icons/fa/line-chart.d.ts create mode 100644 react-icons/fa/linkedin-square.d.ts create mode 100644 react-icons/fa/linkedin.d.ts create mode 100644 react-icons/fa/linux.d.ts create mode 100644 react-icons/fa/list-alt.d.ts create mode 100644 react-icons/fa/list-ol.d.ts create mode 100644 react-icons/fa/list-ul.d.ts create mode 100644 react-icons/fa/list.d.ts create mode 100644 react-icons/fa/location-arrow.d.ts create mode 100644 react-icons/fa/lock.d.ts create mode 100644 react-icons/fa/long-arrow-down.d.ts create mode 100644 react-icons/fa/long-arrow-left.d.ts create mode 100644 react-icons/fa/long-arrow-right.d.ts create mode 100644 react-icons/fa/long-arrow-up.d.ts create mode 100644 react-icons/fa/low-vision.d.ts create mode 100644 react-icons/fa/magic.d.ts create mode 100644 react-icons/fa/magnet.d.ts create mode 100644 react-icons/fa/mail-forward.d.ts create mode 100644 react-icons/fa/mail-reply-all.d.ts create mode 100644 react-icons/fa/mail-reply.d.ts create mode 100644 react-icons/fa/male.d.ts create mode 100644 react-icons/fa/map-marker.d.ts create mode 100644 react-icons/fa/map-o.d.ts create mode 100644 react-icons/fa/map-pin.d.ts create mode 100644 react-icons/fa/map-signs.d.ts create mode 100644 react-icons/fa/map.d.ts create mode 100644 react-icons/fa/mars-double.d.ts create mode 100644 react-icons/fa/mars-stroke-h.d.ts create mode 100644 react-icons/fa/mars-stroke-v.d.ts create mode 100644 react-icons/fa/mars-stroke.d.ts create mode 100644 react-icons/fa/mars.d.ts create mode 100644 react-icons/fa/maxcdn.d.ts create mode 100644 react-icons/fa/meanpath.d.ts create mode 100644 react-icons/fa/medium.d.ts create mode 100644 react-icons/fa/medkit.d.ts create mode 100644 react-icons/fa/meh-o.d.ts create mode 100644 react-icons/fa/mercury.d.ts create mode 100644 react-icons/fa/microphone-slash.d.ts create mode 100644 react-icons/fa/microphone.d.ts create mode 100644 react-icons/fa/minus-circle.d.ts create mode 100644 react-icons/fa/minus-square-o.d.ts create mode 100644 react-icons/fa/minus-square.d.ts create mode 100644 react-icons/fa/minus.d.ts create mode 100644 react-icons/fa/mixcloud.d.ts create mode 100644 react-icons/fa/mobile.d.ts create mode 100644 react-icons/fa/modx.d.ts create mode 100644 react-icons/fa/money.d.ts create mode 100644 react-icons/fa/moon-o.d.ts create mode 100644 react-icons/fa/motorcycle.d.ts create mode 100644 react-icons/fa/mouse-pointer.d.ts create mode 100644 react-icons/fa/music.d.ts create mode 100644 react-icons/fa/neuter.d.ts create mode 100644 react-icons/fa/newspaper-o.d.ts create mode 100644 react-icons/fa/object-group.d.ts create mode 100644 react-icons/fa/object-ungroup.d.ts create mode 100644 react-icons/fa/odnoklassniki-square.d.ts create mode 100644 react-icons/fa/odnoklassniki.d.ts create mode 100644 react-icons/fa/opencart.d.ts create mode 100644 react-icons/fa/openid.d.ts create mode 100644 react-icons/fa/opera.d.ts create mode 100644 react-icons/fa/optin-monster.d.ts create mode 100644 react-icons/fa/pagelines.d.ts create mode 100644 react-icons/fa/paint-brush.d.ts create mode 100644 react-icons/fa/paper-plane-o.d.ts create mode 100644 react-icons/fa/paper-plane.d.ts create mode 100644 react-icons/fa/paperclip.d.ts create mode 100644 react-icons/fa/paragraph.d.ts create mode 100644 react-icons/fa/pause-circle-o.d.ts create mode 100644 react-icons/fa/pause-circle.d.ts create mode 100644 react-icons/fa/pause.d.ts create mode 100644 react-icons/fa/paw.d.ts create mode 100644 react-icons/fa/paypal.d.ts create mode 100644 react-icons/fa/pencil-square.d.ts create mode 100644 react-icons/fa/pencil.d.ts create mode 100644 react-icons/fa/percent.d.ts create mode 100644 react-icons/fa/phone-square.d.ts create mode 100644 react-icons/fa/phone.d.ts create mode 100644 react-icons/fa/pie-chart.d.ts create mode 100644 react-icons/fa/pied-piper-alt.d.ts create mode 100644 react-icons/fa/pied-piper.d.ts create mode 100644 react-icons/fa/pinterest-p.d.ts create mode 100644 react-icons/fa/pinterest-square.d.ts create mode 100644 react-icons/fa/pinterest.d.ts create mode 100644 react-icons/fa/plane.d.ts create mode 100644 react-icons/fa/play-circle-o.d.ts create mode 100644 react-icons/fa/play-circle.d.ts create mode 100644 react-icons/fa/play.d.ts create mode 100644 react-icons/fa/plug.d.ts create mode 100644 react-icons/fa/plus-circle.d.ts create mode 100644 react-icons/fa/plus-square-o.d.ts create mode 100644 react-icons/fa/plus-square.d.ts create mode 100644 react-icons/fa/plus.d.ts create mode 100644 react-icons/fa/power-off.d.ts create mode 100644 react-icons/fa/print.d.ts create mode 100644 react-icons/fa/product-hunt.d.ts create mode 100644 react-icons/fa/puzzle-piece.d.ts create mode 100644 react-icons/fa/qq.d.ts create mode 100644 react-icons/fa/qrcode.d.ts create mode 100644 react-icons/fa/question-circle-o.d.ts create mode 100644 react-icons/fa/question-circle.d.ts create mode 100644 react-icons/fa/question.d.ts create mode 100644 react-icons/fa/quote-left.d.ts create mode 100644 react-icons/fa/quote-right.d.ts create mode 100644 react-icons/fa/ra.d.ts create mode 100644 react-icons/fa/random.d.ts create mode 100644 react-icons/fa/recycle.d.ts create mode 100644 react-icons/fa/reddit-alien.d.ts create mode 100644 react-icons/fa/reddit-square.d.ts create mode 100644 react-icons/fa/reddit.d.ts create mode 100644 react-icons/fa/refresh.d.ts create mode 100644 react-icons/fa/registered.d.ts create mode 100644 react-icons/fa/renren.d.ts create mode 100644 react-icons/fa/repeat.d.ts create mode 100644 react-icons/fa/retweet.d.ts create mode 100644 react-icons/fa/road.d.ts create mode 100644 react-icons/fa/rocket.d.ts create mode 100644 react-icons/fa/rotate-left.d.ts create mode 100644 react-icons/fa/rouble.d.ts create mode 100644 react-icons/fa/rss-square.d.ts create mode 100644 react-icons/fa/safari.d.ts create mode 100644 react-icons/fa/scribd.d.ts create mode 100644 react-icons/fa/search-minus.d.ts create mode 100644 react-icons/fa/search-plus.d.ts create mode 100644 react-icons/fa/search.d.ts create mode 100644 react-icons/fa/sellsy.d.ts create mode 100644 react-icons/fa/server.d.ts create mode 100644 react-icons/fa/share-alt-square.d.ts create mode 100644 react-icons/fa/share-alt.d.ts create mode 100644 react-icons/fa/share-square-o.d.ts create mode 100644 react-icons/fa/share-square.d.ts create mode 100644 react-icons/fa/shield.d.ts create mode 100644 react-icons/fa/ship.d.ts create mode 100644 react-icons/fa/shirtsinbulk.d.ts create mode 100644 react-icons/fa/shopping-bag.d.ts create mode 100644 react-icons/fa/shopping-basket.d.ts create mode 100644 react-icons/fa/shopping-cart.d.ts create mode 100644 react-icons/fa/sign-in.d.ts create mode 100644 react-icons/fa/sign-language.d.ts create mode 100644 react-icons/fa/sign-out.d.ts create mode 100644 react-icons/fa/signal.d.ts create mode 100644 react-icons/fa/simplybuilt.d.ts create mode 100644 react-icons/fa/sitemap.d.ts create mode 100644 react-icons/fa/skyatlas.d.ts create mode 100644 react-icons/fa/skype.d.ts create mode 100644 react-icons/fa/slack.d.ts create mode 100644 react-icons/fa/sliders.d.ts create mode 100644 react-icons/fa/slideshare.d.ts create mode 100644 react-icons/fa/smile-o.d.ts create mode 100644 react-icons/fa/snapchat-ghost.d.ts create mode 100644 react-icons/fa/snapchat-square.d.ts create mode 100644 react-icons/fa/snapchat.d.ts create mode 100644 react-icons/fa/sort-alpha-asc.d.ts create mode 100644 react-icons/fa/sort-alpha-desc.d.ts create mode 100644 react-icons/fa/sort-amount-asc.d.ts create mode 100644 react-icons/fa/sort-amount-desc.d.ts create mode 100644 react-icons/fa/sort-asc.d.ts create mode 100644 react-icons/fa/sort-desc.d.ts create mode 100644 react-icons/fa/sort-numeric-asc.d.ts create mode 100644 react-icons/fa/sort-numeric-desc.d.ts create mode 100644 react-icons/fa/sort.d.ts create mode 100644 react-icons/fa/soundcloud.d.ts create mode 100644 react-icons/fa/space-shuttle.d.ts create mode 100644 react-icons/fa/spinner.d.ts create mode 100644 react-icons/fa/spoon.d.ts create mode 100644 react-icons/fa/spotify.d.ts create mode 100644 react-icons/fa/square-o.d.ts create mode 100644 react-icons/fa/square.d.ts create mode 100644 react-icons/fa/stack-exchange.d.ts create mode 100644 react-icons/fa/stack-overflow.d.ts create mode 100644 react-icons/fa/star-half-empty.d.ts create mode 100644 react-icons/fa/star-half.d.ts create mode 100644 react-icons/fa/star-o.d.ts create mode 100644 react-icons/fa/star.d.ts create mode 100644 react-icons/fa/steam-square.d.ts create mode 100644 react-icons/fa/steam.d.ts create mode 100644 react-icons/fa/step-backward.d.ts create mode 100644 react-icons/fa/step-forward.d.ts create mode 100644 react-icons/fa/stethoscope.d.ts create mode 100644 react-icons/fa/sticky-note-o.d.ts create mode 100644 react-icons/fa/sticky-note.d.ts create mode 100644 react-icons/fa/stop-circle-o.d.ts create mode 100644 react-icons/fa/stop-circle.d.ts create mode 100644 react-icons/fa/stop.d.ts create mode 100644 react-icons/fa/street-view.d.ts create mode 100644 react-icons/fa/strikethrough.d.ts create mode 100644 react-icons/fa/stumbleupon-circle.d.ts create mode 100644 react-icons/fa/stumbleupon.d.ts create mode 100644 react-icons/fa/subscript.d.ts create mode 100644 react-icons/fa/subway.d.ts create mode 100644 react-icons/fa/suitcase.d.ts create mode 100644 react-icons/fa/sun-o.d.ts create mode 100644 react-icons/fa/superscript.d.ts create mode 100644 react-icons/fa/table.d.ts create mode 100644 react-icons/fa/tablet.d.ts create mode 100644 react-icons/fa/tag.d.ts create mode 100644 react-icons/fa/tags.d.ts create mode 100644 react-icons/fa/tasks.d.ts create mode 100644 react-icons/fa/television.d.ts create mode 100644 react-icons/fa/tencent-weibo.d.ts create mode 100644 react-icons/fa/terminal.d.ts create mode 100644 react-icons/fa/text-height.d.ts create mode 100644 react-icons/fa/text-width.d.ts create mode 100644 react-icons/fa/th-large.d.ts create mode 100644 react-icons/fa/th-list.d.ts create mode 100644 react-icons/fa/th.d.ts create mode 100644 react-icons/fa/thumb-tack.d.ts create mode 100644 react-icons/fa/thumbs-down.d.ts create mode 100644 react-icons/fa/thumbs-o-down.d.ts create mode 100644 react-icons/fa/thumbs-o-up.d.ts create mode 100644 react-icons/fa/thumbs-up.d.ts create mode 100644 react-icons/fa/ticket.d.ts create mode 100644 react-icons/fa/times-circle-o.d.ts create mode 100644 react-icons/fa/times-circle.d.ts create mode 100644 react-icons/fa/tint.d.ts create mode 100644 react-icons/fa/toggle-off.d.ts create mode 100644 react-icons/fa/toggle-on.d.ts create mode 100644 react-icons/fa/trademark.d.ts create mode 100644 react-icons/fa/train.d.ts create mode 100644 react-icons/fa/transgender-alt.d.ts create mode 100644 react-icons/fa/trash-o.d.ts create mode 100644 react-icons/fa/trash.d.ts create mode 100644 react-icons/fa/tree.d.ts create mode 100644 react-icons/fa/trello.d.ts create mode 100644 react-icons/fa/tripadvisor.d.ts create mode 100644 react-icons/fa/trophy.d.ts create mode 100644 react-icons/fa/truck.d.ts create mode 100644 react-icons/fa/try.d.ts create mode 100644 react-icons/fa/tty.d.ts create mode 100644 react-icons/fa/tumblr-square.d.ts create mode 100644 react-icons/fa/tumblr.d.ts create mode 100644 react-icons/fa/twitch.d.ts create mode 100644 react-icons/fa/twitter-square.d.ts create mode 100644 react-icons/fa/twitter.d.ts create mode 100644 react-icons/fa/umbrella.d.ts create mode 100644 react-icons/fa/underline.d.ts create mode 100644 react-icons/fa/universal-access.d.ts create mode 100644 react-icons/fa/unlock-alt.d.ts create mode 100644 react-icons/fa/unlock.d.ts create mode 100644 react-icons/fa/upload.d.ts create mode 100644 react-icons/fa/usb.d.ts create mode 100644 react-icons/fa/user-md.d.ts create mode 100644 react-icons/fa/user-plus.d.ts create mode 100644 react-icons/fa/user-secret.d.ts create mode 100644 react-icons/fa/user-times.d.ts create mode 100644 react-icons/fa/user.d.ts create mode 100644 react-icons/fa/venus-double.d.ts create mode 100644 react-icons/fa/venus-mars.d.ts create mode 100644 react-icons/fa/venus.d.ts create mode 100644 react-icons/fa/viacoin.d.ts create mode 100644 react-icons/fa/viadeo-square.d.ts create mode 100644 react-icons/fa/viadeo.d.ts create mode 100644 react-icons/fa/video-camera.d.ts create mode 100644 react-icons/fa/vimeo-square.d.ts create mode 100644 react-icons/fa/vimeo.d.ts create mode 100644 react-icons/fa/vine.d.ts create mode 100644 react-icons/fa/vk.d.ts create mode 100644 react-icons/fa/volume-control-phone.d.ts create mode 100644 react-icons/fa/volume-down.d.ts create mode 100644 react-icons/fa/volume-off.d.ts create mode 100644 react-icons/fa/volume-up.d.ts create mode 100644 react-icons/fa/wechat.d.ts create mode 100644 react-icons/fa/weibo.d.ts create mode 100644 react-icons/fa/whatsapp.d.ts create mode 100644 react-icons/fa/wheelchair-alt.d.ts create mode 100644 react-icons/fa/wheelchair.d.ts create mode 100644 react-icons/fa/wifi.d.ts create mode 100644 react-icons/fa/wikipedia-w.d.ts create mode 100644 react-icons/fa/windows.d.ts create mode 100644 react-icons/fa/wordpress.d.ts create mode 100644 react-icons/fa/wpbeginner.d.ts create mode 100644 react-icons/fa/wpforms.d.ts create mode 100644 react-icons/fa/wrench.d.ts create mode 100644 react-icons/fa/xing-square.d.ts create mode 100644 react-icons/fa/xing.d.ts create mode 100644 react-icons/fa/y-combinator.d.ts create mode 100644 react-icons/fa/yahoo.d.ts create mode 100644 react-icons/fa/yelp.d.ts create mode 100644 react-icons/fa/youtube-play.d.ts create mode 100644 react-icons/fa/youtube-square.d.ts create mode 100644 react-icons/fa/youtube.d.ts create mode 100644 react-icons/go/alert.d.ts create mode 100644 react-icons/go/alignment-align.d.ts create mode 100644 react-icons/go/alignment-aligned-to.d.ts create mode 100644 react-icons/go/alignment-unalign.d.ts create mode 100644 react-icons/go/arrow-down.d.ts create mode 100644 react-icons/go/arrow-left.d.ts create mode 100644 react-icons/go/arrow-right.d.ts create mode 100644 react-icons/go/arrow-small-down.d.ts create mode 100644 react-icons/go/arrow-small-left.d.ts create mode 100644 react-icons/go/arrow-small-right.d.ts create mode 100644 react-icons/go/arrow-small-up.d.ts create mode 100644 react-icons/go/arrow-up.d.ts create mode 100644 react-icons/go/beer.d.ts create mode 100644 react-icons/go/book.d.ts create mode 100644 react-icons/go/bookmark.d.ts create mode 100644 react-icons/go/briefcase.d.ts create mode 100644 react-icons/go/broadcast.d.ts create mode 100644 react-icons/go/browser.d.ts create mode 100644 react-icons/go/bug.d.ts create mode 100644 react-icons/go/calendar.d.ts create mode 100644 react-icons/go/check.d.ts create mode 100644 react-icons/go/checklist.d.ts create mode 100644 react-icons/go/chevron-down.d.ts create mode 100644 react-icons/go/chevron-left.d.ts create mode 100644 react-icons/go/chevron-right.d.ts create mode 100644 react-icons/go/chevron-up.d.ts create mode 100644 react-icons/go/circle-slash.d.ts create mode 100644 react-icons/go/circuit-board.d.ts create mode 100644 react-icons/go/clippy.d.ts create mode 100644 react-icons/go/clock.d.ts create mode 100644 react-icons/go/cloud-download.d.ts create mode 100644 react-icons/go/cloud-upload.d.ts create mode 100644 react-icons/go/code.d.ts create mode 100644 react-icons/go/color-mode.d.ts create mode 100644 react-icons/go/comment-discussion.d.ts create mode 100644 react-icons/go/comment.d.ts create mode 100644 react-icons/go/credit-card.d.ts create mode 100644 react-icons/go/dash.d.ts create mode 100644 react-icons/go/dashboard.d.ts create mode 100644 react-icons/go/database.d.ts create mode 100644 react-icons/go/device-camera-video.d.ts create mode 100644 react-icons/go/device-camera.d.ts create mode 100644 react-icons/go/device-desktop.d.ts create mode 100644 react-icons/go/device-mobile.d.ts create mode 100644 react-icons/go/diff-added.d.ts create mode 100644 react-icons/go/diff-ignored.d.ts create mode 100644 react-icons/go/diff-modified.d.ts create mode 100644 react-icons/go/diff-removed.d.ts create mode 100644 react-icons/go/diff-renamed.d.ts create mode 100644 react-icons/go/diff.d.ts create mode 100644 react-icons/go/ellipsis.d.ts create mode 100644 react-icons/go/eye.d.ts create mode 100644 react-icons/go/file-binary.d.ts create mode 100644 react-icons/go/file-code.d.ts create mode 100644 react-icons/go/file-directory.d.ts create mode 100644 react-icons/go/file-media.d.ts create mode 100644 react-icons/go/file-pdf.d.ts create mode 100644 react-icons/go/file-submodule.d.ts create mode 100644 react-icons/go/file-symlink-directory.d.ts create mode 100644 react-icons/go/file-symlink-file.d.ts create mode 100644 react-icons/go/file-text.d.ts create mode 100644 react-icons/go/file-zip.d.ts create mode 100644 react-icons/go/flame.d.ts create mode 100644 react-icons/go/fold.d.ts create mode 100644 react-icons/go/gear.d.ts create mode 100644 react-icons/go/gift.d.ts create mode 100644 react-icons/go/gist-secret.d.ts create mode 100644 react-icons/go/gist.d.ts create mode 100644 react-icons/go/git-branch.d.ts create mode 100644 react-icons/go/git-commit.d.ts create mode 100644 react-icons/go/git-compare.d.ts create mode 100644 react-icons/go/git-merge.d.ts create mode 100644 react-icons/go/git-pull-request.d.ts create mode 100644 react-icons/go/globe.d.ts create mode 100644 react-icons/go/graph.d.ts create mode 100644 react-icons/go/heart.d.ts create mode 100644 react-icons/go/history.d.ts create mode 100644 react-icons/go/home.d.ts create mode 100644 react-icons/go/horizontal-rule.d.ts create mode 100644 react-icons/go/hourglass.d.ts create mode 100644 react-icons/go/hubot.d.ts create mode 100644 react-icons/go/inbox.d.ts create mode 100644 react-icons/go/index.d.ts create mode 100644 react-icons/go/info.d.ts create mode 100644 react-icons/go/issue-closed.d.ts create mode 100644 react-icons/go/issue-opened.d.ts create mode 100644 react-icons/go/issue-reopened.d.ts create mode 100644 react-icons/go/jersey.d.ts create mode 100644 react-icons/go/jump-down.d.ts create mode 100644 react-icons/go/jump-left.d.ts create mode 100644 react-icons/go/jump-right.d.ts create mode 100644 react-icons/go/jump-up.d.ts create mode 100644 react-icons/go/key.d.ts create mode 100644 react-icons/go/keyboard.d.ts create mode 100644 react-icons/go/law.d.ts create mode 100644 react-icons/go/light-bulb.d.ts create mode 100644 react-icons/go/link-external.d.ts create mode 100644 react-icons/go/link.d.ts create mode 100644 react-icons/go/list-ordered.d.ts create mode 100644 react-icons/go/list-unordered.d.ts create mode 100644 react-icons/go/location.d.ts create mode 100644 react-icons/go/lock.d.ts create mode 100644 react-icons/go/logo-github.d.ts create mode 100644 react-icons/go/mail-read.d.ts create mode 100644 react-icons/go/mail-reply.d.ts create mode 100644 react-icons/go/mail.d.ts create mode 100644 react-icons/go/mark-github.d.ts create mode 100644 react-icons/go/markdown.d.ts create mode 100644 react-icons/go/megaphone.d.ts create mode 100644 react-icons/go/mention.d.ts create mode 100644 react-icons/go/microscope.d.ts create mode 100644 react-icons/go/milestone.d.ts create mode 100644 react-icons/go/mirror.d.ts create mode 100644 react-icons/go/mortar-board.d.ts create mode 100644 react-icons/go/move-down.d.ts create mode 100644 react-icons/go/move-left.d.ts create mode 100644 react-icons/go/move-right.d.ts create mode 100644 react-icons/go/move-up.d.ts create mode 100644 react-icons/go/mute.d.ts create mode 100644 react-icons/go/no-newline.d.ts create mode 100644 react-icons/go/octoface.d.ts create mode 100644 react-icons/go/organization.d.ts create mode 100644 react-icons/go/package.d.ts create mode 100644 react-icons/go/paintcan.d.ts create mode 100644 react-icons/go/pencil.d.ts create mode 100644 react-icons/go/person.d.ts create mode 100644 react-icons/go/pin.d.ts create mode 100644 react-icons/go/playback-fast-forward.d.ts create mode 100644 react-icons/go/playback-pause.d.ts create mode 100644 react-icons/go/playback-play.d.ts create mode 100644 react-icons/go/playback-rewind.d.ts create mode 100644 react-icons/go/plug.d.ts create mode 100644 react-icons/go/plus.d.ts create mode 100644 react-icons/go/podium.d.ts create mode 100644 react-icons/go/primitive-dot.d.ts create mode 100644 react-icons/go/primitive-square.d.ts create mode 100644 react-icons/go/pulse.d.ts create mode 100644 react-icons/go/puzzle.d.ts create mode 100644 react-icons/go/question.d.ts create mode 100644 react-icons/go/quote.d.ts create mode 100644 react-icons/go/radio-tower.d.ts create mode 100644 react-icons/go/repo-clone.d.ts create mode 100644 react-icons/go/repo-force-push.d.ts create mode 100644 react-icons/go/repo-forked.d.ts create mode 100644 react-icons/go/repo-pull.d.ts create mode 100644 react-icons/go/repo-push.d.ts create mode 100644 react-icons/go/repo.d.ts create mode 100644 react-icons/go/rocket.d.ts create mode 100644 react-icons/go/rss.d.ts create mode 100644 react-icons/go/ruby.d.ts create mode 100644 react-icons/go/screen-full.d.ts create mode 100644 react-icons/go/screen-normal.d.ts create mode 100644 react-icons/go/search.d.ts create mode 100644 react-icons/go/server.d.ts create mode 100644 react-icons/go/settings.d.ts create mode 100644 react-icons/go/sign-in.d.ts create mode 100644 react-icons/go/sign-out.d.ts create mode 100644 react-icons/go/split.d.ts create mode 100644 react-icons/go/squirrel.d.ts create mode 100644 react-icons/go/star.d.ts create mode 100644 react-icons/go/steps.d.ts create mode 100644 react-icons/go/stop.d.ts create mode 100644 react-icons/go/sync.d.ts create mode 100644 react-icons/go/tag.d.ts create mode 100644 react-icons/go/telescope.d.ts create mode 100644 react-icons/go/terminal.d.ts create mode 100644 react-icons/go/three-bars.d.ts create mode 100644 react-icons/go/tools.d.ts create mode 100644 react-icons/go/trashcan.d.ts create mode 100644 react-icons/go/triangle-down.d.ts create mode 100644 react-icons/go/triangle-left.d.ts create mode 100644 react-icons/go/triangle-right.d.ts create mode 100644 react-icons/go/triangle-up.d.ts create mode 100644 react-icons/go/unfold.d.ts create mode 100644 react-icons/go/unmute.d.ts create mode 100644 react-icons/go/versions.d.ts create mode 100644 react-icons/go/x.d.ts create mode 100644 react-icons/go/zap.d.ts create mode 100644 react-icons/index.d.ts create mode 100644 react-icons/io/alert-circled.d.ts create mode 100644 react-icons/io/alert.d.ts create mode 100644 react-icons/io/android-add-circle.d.ts create mode 100644 react-icons/io/android-add.d.ts create mode 100644 react-icons/io/android-alarm-clock.d.ts create mode 100644 react-icons/io/android-alert.d.ts create mode 100644 react-icons/io/android-apps.d.ts create mode 100644 react-icons/io/android-archive.d.ts create mode 100644 react-icons/io/android-arrow-back.d.ts create mode 100644 react-icons/io/android-arrow-down.d.ts create mode 100644 react-icons/io/android-arrow-dropdown-circle.d.ts create mode 100644 react-icons/io/android-arrow-dropdown.d.ts create mode 100644 react-icons/io/android-arrow-dropleft-circle.d.ts create mode 100644 react-icons/io/android-arrow-dropleft.d.ts create mode 100644 react-icons/io/android-arrow-dropright-circle.d.ts create mode 100644 react-icons/io/android-arrow-dropright.d.ts create mode 100644 react-icons/io/android-arrow-dropup-circle.d.ts create mode 100644 react-icons/io/android-arrow-dropup.d.ts create mode 100644 react-icons/io/android-arrow-forward.d.ts create mode 100644 react-icons/io/android-arrow-up.d.ts create mode 100644 react-icons/io/android-attach.d.ts create mode 100644 react-icons/io/android-bar.d.ts create mode 100644 react-icons/io/android-bicycle.d.ts create mode 100644 react-icons/io/android-boat.d.ts create mode 100644 react-icons/io/android-bookmark.d.ts create mode 100644 react-icons/io/android-bulb.d.ts create mode 100644 react-icons/io/android-bus.d.ts create mode 100644 react-icons/io/android-calendar.d.ts create mode 100644 react-icons/io/android-call.d.ts create mode 100644 react-icons/io/android-camera.d.ts create mode 100644 react-icons/io/android-cancel.d.ts create mode 100644 react-icons/io/android-car.d.ts create mode 100644 react-icons/io/android-cart.d.ts create mode 100644 react-icons/io/android-chat.d.ts create mode 100644 react-icons/io/android-checkbox-blank.d.ts create mode 100644 react-icons/io/android-checkbox-outline-blank.d.ts create mode 100644 react-icons/io/android-checkbox-outline.d.ts create mode 100644 react-icons/io/android-checkbox.d.ts create mode 100644 react-icons/io/android-checkmark-circle.d.ts create mode 100644 react-icons/io/android-clipboard.d.ts create mode 100644 react-icons/io/android-close.d.ts create mode 100644 react-icons/io/android-cloud-circle.d.ts create mode 100644 react-icons/io/android-cloud-done.d.ts create mode 100644 react-icons/io/android-cloud-outline.d.ts create mode 100644 react-icons/io/android-cloud.d.ts create mode 100644 react-icons/io/android-color-palette.d.ts create mode 100644 react-icons/io/android-compass.d.ts create mode 100644 react-icons/io/android-contact.d.ts create mode 100644 react-icons/io/android-contacts.d.ts create mode 100644 react-icons/io/android-contract.d.ts create mode 100644 react-icons/io/android-create.d.ts create mode 100644 react-icons/io/android-delete.d.ts create mode 100644 react-icons/io/android-desktop.d.ts create mode 100644 react-icons/io/android-document.d.ts create mode 100644 react-icons/io/android-done-all.d.ts create mode 100644 react-icons/io/android-done.d.ts create mode 100644 react-icons/io/android-download.d.ts create mode 100644 react-icons/io/android-drafts.d.ts create mode 100644 react-icons/io/android-exit.d.ts create mode 100644 react-icons/io/android-expand.d.ts create mode 100644 react-icons/io/android-favorite-outline.d.ts create mode 100644 react-icons/io/android-favorite.d.ts create mode 100644 react-icons/io/android-film.d.ts create mode 100644 react-icons/io/android-folder-open.d.ts create mode 100644 react-icons/io/android-folder.d.ts create mode 100644 react-icons/io/android-funnel.d.ts create mode 100644 react-icons/io/android-globe.d.ts create mode 100644 react-icons/io/android-hand.d.ts create mode 100644 react-icons/io/android-hangout.d.ts create mode 100644 react-icons/io/android-happy.d.ts create mode 100644 react-icons/io/android-home.d.ts create mode 100644 react-icons/io/android-image.d.ts create mode 100644 react-icons/io/android-laptop.d.ts create mode 100644 react-icons/io/android-list.d.ts create mode 100644 react-icons/io/android-locate.d.ts create mode 100644 react-icons/io/android-lock.d.ts create mode 100644 react-icons/io/android-mail.d.ts create mode 100644 react-icons/io/android-map.d.ts create mode 100644 react-icons/io/android-menu.d.ts create mode 100644 react-icons/io/android-microphone-off.d.ts create mode 100644 react-icons/io/android-microphone.d.ts create mode 100644 react-icons/io/android-more-horizontal.d.ts create mode 100644 react-icons/io/android-more-vertical.d.ts create mode 100644 react-icons/io/android-navigate.d.ts create mode 100644 react-icons/io/android-notifications-none.d.ts create mode 100644 react-icons/io/android-notifications-off.d.ts create mode 100644 react-icons/io/android-notifications.d.ts create mode 100644 react-icons/io/android-open.d.ts create mode 100644 react-icons/io/android-options.d.ts create mode 100644 react-icons/io/android-people.d.ts create mode 100644 react-icons/io/android-person-add.d.ts create mode 100644 react-icons/io/android-person.d.ts create mode 100644 react-icons/io/android-phone-landscape.d.ts create mode 100644 react-icons/io/android-phone-portrait.d.ts create mode 100644 react-icons/io/android-pin.d.ts create mode 100644 react-icons/io/android-plane.d.ts create mode 100644 react-icons/io/android-playstore.d.ts create mode 100644 react-icons/io/android-print.d.ts create mode 100644 react-icons/io/android-radio-button-off.d.ts create mode 100644 react-icons/io/android-radio-button-on.d.ts create mode 100644 react-icons/io/android-refresh.d.ts create mode 100644 react-icons/io/android-remove-circle.d.ts create mode 100644 react-icons/io/android-remove.d.ts create mode 100644 react-icons/io/android-restaurant.d.ts create mode 100644 react-icons/io/android-sad.d.ts create mode 100644 react-icons/io/android-search.d.ts create mode 100644 react-icons/io/android-send.d.ts create mode 100644 react-icons/io/android-settings.d.ts create mode 100644 react-icons/io/android-share-alt.d.ts create mode 100644 react-icons/io/android-share.d.ts create mode 100644 react-icons/io/android-star-half.d.ts create mode 100644 react-icons/io/android-star-outline.d.ts create mode 100644 react-icons/io/android-star.d.ts create mode 100644 react-icons/io/android-stopwatch.d.ts create mode 100644 react-icons/io/android-subway.d.ts create mode 100644 react-icons/io/android-sunny.d.ts create mode 100644 react-icons/io/android-sync.d.ts create mode 100644 react-icons/io/android-textsms.d.ts create mode 100644 react-icons/io/android-time.d.ts create mode 100644 react-icons/io/android-train.d.ts create mode 100644 react-icons/io/android-unlock.d.ts create mode 100644 react-icons/io/android-upload.d.ts create mode 100644 react-icons/io/android-volume-down.d.ts create mode 100644 react-icons/io/android-volume-mute.d.ts create mode 100644 react-icons/io/android-volume-off.d.ts create mode 100644 react-icons/io/android-volume-up.d.ts create mode 100644 react-icons/io/android-walk.d.ts create mode 100644 react-icons/io/android-warning.d.ts create mode 100644 react-icons/io/android-watch.d.ts create mode 100644 react-icons/io/android-wifi.d.ts create mode 100644 react-icons/io/aperture.d.ts create mode 100644 react-icons/io/archive.d.ts create mode 100644 react-icons/io/arrow-down-a.d.ts create mode 100644 react-icons/io/arrow-down-b.d.ts create mode 100644 react-icons/io/arrow-down-c.d.ts create mode 100644 react-icons/io/arrow-expand.d.ts create mode 100644 react-icons/io/arrow-graph-down-left.d.ts create mode 100644 react-icons/io/arrow-graph-down-right.d.ts create mode 100644 react-icons/io/arrow-graph-up-left.d.ts create mode 100644 react-icons/io/arrow-graph-up-right.d.ts create mode 100644 react-icons/io/arrow-left-a.d.ts create mode 100644 react-icons/io/arrow-left-b.d.ts create mode 100644 react-icons/io/arrow-left-c.d.ts create mode 100644 react-icons/io/arrow-move.d.ts create mode 100644 react-icons/io/arrow-resize.d.ts create mode 100644 react-icons/io/arrow-return-left.d.ts create mode 100644 react-icons/io/arrow-return-right.d.ts create mode 100644 react-icons/io/arrow-right-a.d.ts create mode 100644 react-icons/io/arrow-right-b.d.ts create mode 100644 react-icons/io/arrow-right-c.d.ts create mode 100644 react-icons/io/arrow-shrink.d.ts create mode 100644 react-icons/io/arrow-swap.d.ts create mode 100644 react-icons/io/arrow-up-a.d.ts create mode 100644 react-icons/io/arrow-up-b.d.ts create mode 100644 react-icons/io/arrow-up-c.d.ts create mode 100644 react-icons/io/asterisk.d.ts create mode 100644 react-icons/io/at.d.ts create mode 100644 react-icons/io/backspace-outline.d.ts create mode 100644 react-icons/io/backspace.d.ts create mode 100644 react-icons/io/bag.d.ts create mode 100644 react-icons/io/battery-charging.d.ts create mode 100644 react-icons/io/battery-empty.d.ts create mode 100644 react-icons/io/battery-full.d.ts create mode 100644 react-icons/io/battery-half.d.ts create mode 100644 react-icons/io/battery-low.d.ts create mode 100644 react-icons/io/beaker.d.ts create mode 100644 react-icons/io/beer.d.ts create mode 100644 react-icons/io/bluetooth.d.ts create mode 100644 react-icons/io/bonfire.d.ts create mode 100644 react-icons/io/bookmark.d.ts create mode 100644 react-icons/io/bowtie.d.ts create mode 100644 react-icons/io/briefcase.d.ts create mode 100644 react-icons/io/bug.d.ts create mode 100644 react-icons/io/calculator.d.ts create mode 100644 react-icons/io/calendar.d.ts create mode 100644 react-icons/io/camera.d.ts create mode 100644 react-icons/io/card.d.ts create mode 100644 react-icons/io/cash.d.ts create mode 100644 react-icons/io/chatbox-working.d.ts create mode 100644 react-icons/io/chatbox.d.ts create mode 100644 react-icons/io/chatboxes.d.ts create mode 100644 react-icons/io/chatbubble-working.d.ts create mode 100644 react-icons/io/chatbubble.d.ts create mode 100644 react-icons/io/chatbubbles.d.ts create mode 100644 react-icons/io/checkmark-circled.d.ts create mode 100644 react-icons/io/checkmark-round.d.ts create mode 100644 react-icons/io/checkmark.d.ts create mode 100644 react-icons/io/chevron-down.d.ts create mode 100644 react-icons/io/chevron-left.d.ts create mode 100644 react-icons/io/chevron-right.d.ts create mode 100644 react-icons/io/chevron-up.d.ts create mode 100644 react-icons/io/clipboard.d.ts create mode 100644 react-icons/io/clock.d.ts create mode 100644 react-icons/io/close-circled.d.ts create mode 100644 react-icons/io/close-round.d.ts create mode 100644 react-icons/io/close.d.ts create mode 100644 react-icons/io/closed-captioning.d.ts create mode 100644 react-icons/io/cloud.d.ts create mode 100644 react-icons/io/code-download.d.ts create mode 100644 react-icons/io/code-working.d.ts create mode 100644 react-icons/io/code.d.ts create mode 100644 react-icons/io/coffee.d.ts create mode 100644 react-icons/io/compass.d.ts create mode 100644 react-icons/io/compose.d.ts create mode 100644 react-icons/io/connectbars.d.ts create mode 100644 react-icons/io/contrast.d.ts create mode 100644 react-icons/io/crop.d.ts create mode 100644 react-icons/io/cube.d.ts create mode 100644 react-icons/io/disc.d.ts create mode 100644 react-icons/io/document-text.d.ts create mode 100644 react-icons/io/document.d.ts create mode 100644 react-icons/io/drag.d.ts create mode 100644 react-icons/io/earth.d.ts create mode 100644 react-icons/io/easel.d.ts create mode 100644 react-icons/io/edit.d.ts create mode 100644 react-icons/io/egg.d.ts create mode 100644 react-icons/io/eject.d.ts create mode 100644 react-icons/io/email-unread.d.ts create mode 100644 react-icons/io/email.d.ts create mode 100644 react-icons/io/erlenmeyer-flask-bubbles.d.ts create mode 100644 react-icons/io/erlenmeyer-flask.d.ts create mode 100644 react-icons/io/eye-disabled.d.ts create mode 100644 react-icons/io/eye.d.ts create mode 100644 react-icons/io/female.d.ts create mode 100644 react-icons/io/filing.d.ts create mode 100644 react-icons/io/film-marker.d.ts create mode 100644 react-icons/io/fireball.d.ts create mode 100644 react-icons/io/flag.d.ts create mode 100644 react-icons/io/flame.d.ts create mode 100644 react-icons/io/flash-off.d.ts create mode 100644 react-icons/io/flash.d.ts create mode 100644 react-icons/io/folder.d.ts create mode 100644 react-icons/io/fork-repo.d.ts create mode 100644 react-icons/io/fork.d.ts create mode 100644 react-icons/io/forward.d.ts create mode 100644 react-icons/io/funnel.d.ts create mode 100644 react-icons/io/gear-a.d.ts create mode 100644 react-icons/io/gear-b.d.ts create mode 100644 react-icons/io/grid.d.ts create mode 100644 react-icons/io/hammer.d.ts create mode 100644 react-icons/io/happy-outline.d.ts create mode 100644 react-icons/io/happy.d.ts create mode 100644 react-icons/io/headphone.d.ts create mode 100644 react-icons/io/heart-broken.d.ts create mode 100644 react-icons/io/heart.d.ts create mode 100644 react-icons/io/help-buoy.d.ts create mode 100644 react-icons/io/help-circled.d.ts create mode 100644 react-icons/io/help.d.ts create mode 100644 react-icons/io/home.d.ts create mode 100644 react-icons/io/icecream.d.ts create mode 100644 react-icons/io/image.d.ts create mode 100644 react-icons/io/images.d.ts create mode 100644 react-icons/io/index.d.ts create mode 100644 react-icons/io/informatcircled.d.ts create mode 100644 react-icons/io/information.d.ts create mode 100644 react-icons/io/ionic.d.ts create mode 100644 react-icons/io/ios-alarm-outline.d.ts create mode 100644 react-icons/io/ios-alarm.d.ts create mode 100644 react-icons/io/ios-albums-outline.d.ts create mode 100644 react-icons/io/ios-albums.d.ts create mode 100644 react-icons/io/ios-americanfootball-outline.d.ts create mode 100644 react-icons/io/ios-americanfootball.d.ts create mode 100644 react-icons/io/ios-analytics-outline.d.ts create mode 100644 react-icons/io/ios-analytics.d.ts create mode 100644 react-icons/io/ios-arrow-back.d.ts create mode 100644 react-icons/io/ios-arrow-down.d.ts create mode 100644 react-icons/io/ios-arrow-forward.d.ts create mode 100644 react-icons/io/ios-arrow-left.d.ts create mode 100644 react-icons/io/ios-arrow-right.d.ts create mode 100644 react-icons/io/ios-arrow-thin-down.d.ts create mode 100644 react-icons/io/ios-arrow-thin-left.d.ts create mode 100644 react-icons/io/ios-arrow-thin-right.d.ts create mode 100644 react-icons/io/ios-arrow-thin-up.d.ts create mode 100644 react-icons/io/ios-arrow-up.d.ts create mode 100644 react-icons/io/ios-at-outline.d.ts create mode 100644 react-icons/io/ios-at.d.ts create mode 100644 react-icons/io/ios-barcode-outline.d.ts create mode 100644 react-icons/io/ios-barcode.d.ts create mode 100644 react-icons/io/ios-baseball-outline.d.ts create mode 100644 react-icons/io/ios-baseball.d.ts create mode 100644 react-icons/io/ios-basketball-outline.d.ts create mode 100644 react-icons/io/ios-basketball.d.ts create mode 100644 react-icons/io/ios-bell-outline.d.ts create mode 100644 react-icons/io/ios-bell.d.ts create mode 100644 react-icons/io/ios-body-outline.d.ts create mode 100644 react-icons/io/ios-body.d.ts create mode 100644 react-icons/io/ios-bolt-outline.d.ts create mode 100644 react-icons/io/ios-bolt.d.ts create mode 100644 react-icons/io/ios-book-outline.d.ts create mode 100644 react-icons/io/ios-book.d.ts create mode 100644 react-icons/io/ios-bookmarks-outline.d.ts create mode 100644 react-icons/io/ios-bookmarks.d.ts create mode 100644 react-icons/io/ios-box-outline.d.ts create mode 100644 react-icons/io/ios-box.d.ts create mode 100644 react-icons/io/ios-briefcase-outline.d.ts create mode 100644 react-icons/io/ios-briefcase.d.ts create mode 100644 react-icons/io/ios-browsers-outline.d.ts create mode 100644 react-icons/io/ios-browsers.d.ts create mode 100644 react-icons/io/ios-calculator-outline.d.ts create mode 100644 react-icons/io/ios-calculator.d.ts create mode 100644 react-icons/io/ios-calendar-outline.d.ts create mode 100644 react-icons/io/ios-calendar.d.ts create mode 100644 react-icons/io/ios-camera-outline.d.ts create mode 100644 react-icons/io/ios-camera.d.ts create mode 100644 react-icons/io/ios-cart-outline.d.ts create mode 100644 react-icons/io/ios-cart.d.ts create mode 100644 react-icons/io/ios-chatboxes-outline.d.ts create mode 100644 react-icons/io/ios-chatboxes.d.ts create mode 100644 react-icons/io/ios-chatbubble-outline.d.ts create mode 100644 react-icons/io/ios-chatbubble.d.ts create mode 100644 react-icons/io/ios-checkmark-empty.d.ts create mode 100644 react-icons/io/ios-checkmark-outline.d.ts create mode 100644 react-icons/io/ios-checkmark.d.ts create mode 100644 react-icons/io/ios-circle-filled.d.ts create mode 100644 react-icons/io/ios-circle-outline.d.ts create mode 100644 react-icons/io/ios-clock-outline.d.ts create mode 100644 react-icons/io/ios-clock.d.ts create mode 100644 react-icons/io/ios-close-empty.d.ts create mode 100644 react-icons/io/ios-close-outline.d.ts create mode 100644 react-icons/io/ios-close.d.ts create mode 100644 react-icons/io/ios-cloud-download-outline.d.ts create mode 100644 react-icons/io/ios-cloud-download.d.ts create mode 100644 react-icons/io/ios-cloud-outline.d.ts create mode 100644 react-icons/io/ios-cloud-upload-outline.d.ts create mode 100644 react-icons/io/ios-cloud-upload.d.ts create mode 100644 react-icons/io/ios-cloud.d.ts create mode 100644 react-icons/io/ios-cloudy-night-outline.d.ts create mode 100644 react-icons/io/ios-cloudy-night.d.ts create mode 100644 react-icons/io/ios-cloudy-outline.d.ts create mode 100644 react-icons/io/ios-cloudy.d.ts create mode 100644 react-icons/io/ios-cog-outline.d.ts create mode 100644 react-icons/io/ios-cog.d.ts create mode 100644 react-icons/io/ios-color-filter-outline.d.ts create mode 100644 react-icons/io/ios-color-filter.d.ts create mode 100644 react-icons/io/ios-color-wand-outline.d.ts create mode 100644 react-icons/io/ios-color-wand.d.ts create mode 100644 react-icons/io/ios-compose-outline.d.ts create mode 100644 react-icons/io/ios-compose.d.ts create mode 100644 react-icons/io/ios-contact-outline.d.ts create mode 100644 react-icons/io/ios-contact.d.ts create mode 100644 react-icons/io/ios-copy-outline.d.ts create mode 100644 react-icons/io/ios-copy.d.ts create mode 100644 react-icons/io/ios-crop-strong.d.ts create mode 100644 react-icons/io/ios-crop.d.ts create mode 100644 react-icons/io/ios-download-outline.d.ts create mode 100644 react-icons/io/ios-download.d.ts create mode 100644 react-icons/io/ios-drag.d.ts create mode 100644 react-icons/io/ios-email-outline.d.ts create mode 100644 react-icons/io/ios-email.d.ts create mode 100644 react-icons/io/ios-eye-outline.d.ts create mode 100644 react-icons/io/ios-eye.d.ts create mode 100644 react-icons/io/ios-fastforward-outline.d.ts create mode 100644 react-icons/io/ios-fastforward.d.ts create mode 100644 react-icons/io/ios-filing-outline.d.ts create mode 100644 react-icons/io/ios-filing.d.ts create mode 100644 react-icons/io/ios-film-outline.d.ts create mode 100644 react-icons/io/ios-film.d.ts create mode 100644 react-icons/io/ios-flag-outline.d.ts create mode 100644 react-icons/io/ios-flag.d.ts create mode 100644 react-icons/io/ios-flame-outline.d.ts create mode 100644 react-icons/io/ios-flame.d.ts create mode 100644 react-icons/io/ios-flask-outline.d.ts create mode 100644 react-icons/io/ios-flask.d.ts create mode 100644 react-icons/io/ios-flower-outline.d.ts create mode 100644 react-icons/io/ios-flower.d.ts create mode 100644 react-icons/io/ios-folder-outline.d.ts create mode 100644 react-icons/io/ios-folder.d.ts create mode 100644 react-icons/io/ios-football-outline.d.ts create mode 100644 react-icons/io/ios-football.d.ts create mode 100644 react-icons/io/ios-game-controller-a-outline.d.ts create mode 100644 react-icons/io/ios-game-controller-a.d.ts create mode 100644 react-icons/io/ios-game-controller-b-outline.d.ts create mode 100644 react-icons/io/ios-game-controller-b.d.ts create mode 100644 react-icons/io/ios-gear-outline.d.ts create mode 100644 react-icons/io/ios-gear.d.ts create mode 100644 react-icons/io/ios-glasses-outline.d.ts create mode 100644 react-icons/io/ios-glasses.d.ts create mode 100644 react-icons/io/ios-grid-view-outline.d.ts create mode 100644 react-icons/io/ios-grid-view.d.ts create mode 100644 react-icons/io/ios-heart-outline.d.ts create mode 100644 react-icons/io/ios-heart.d.ts create mode 100644 react-icons/io/ios-help-empty.d.ts create mode 100644 react-icons/io/ios-help-outline.d.ts create mode 100644 react-icons/io/ios-help.d.ts create mode 100644 react-icons/io/ios-home-outline.d.ts create mode 100644 react-icons/io/ios-home.d.ts create mode 100644 react-icons/io/ios-infinite-outline.d.ts create mode 100644 react-icons/io/ios-infinite.d.ts create mode 100644 react-icons/io/ios-informatempty.d.ts create mode 100644 react-icons/io/ios-information.d.ts create mode 100644 react-icons/io/ios-informatoutline.d.ts create mode 100644 react-icons/io/ios-ionic-outline.d.ts create mode 100644 react-icons/io/ios-keypad-outline.d.ts create mode 100644 react-icons/io/ios-keypad.d.ts create mode 100644 react-icons/io/ios-lightbulb-outline.d.ts create mode 100644 react-icons/io/ios-lightbulb.d.ts create mode 100644 react-icons/io/ios-list-outline.d.ts create mode 100644 react-icons/io/ios-list.d.ts create mode 100644 react-icons/io/ios-location.d.ts create mode 100644 react-icons/io/ios-locatoutline.d.ts create mode 100644 react-icons/io/ios-locked-outline.d.ts create mode 100644 react-icons/io/ios-locked.d.ts create mode 100644 react-icons/io/ios-loop-strong.d.ts create mode 100644 react-icons/io/ios-loop.d.ts create mode 100644 react-icons/io/ios-medical-outline.d.ts create mode 100644 react-icons/io/ios-medical.d.ts create mode 100644 react-icons/io/ios-medkit-outline.d.ts create mode 100644 react-icons/io/ios-medkit.d.ts create mode 100644 react-icons/io/ios-mic-off.d.ts create mode 100644 react-icons/io/ios-mic-outline.d.ts create mode 100644 react-icons/io/ios-mic.d.ts create mode 100644 react-icons/io/ios-minus-empty.d.ts create mode 100644 react-icons/io/ios-minus-outline.d.ts create mode 100644 react-icons/io/ios-minus.d.ts create mode 100644 react-icons/io/ios-monitor-outline.d.ts create mode 100644 react-icons/io/ios-monitor.d.ts create mode 100644 react-icons/io/ios-moon-outline.d.ts create mode 100644 react-icons/io/ios-moon.d.ts create mode 100644 react-icons/io/ios-more-outline.d.ts create mode 100644 react-icons/io/ios-more.d.ts create mode 100644 react-icons/io/ios-musical-note.d.ts create mode 100644 react-icons/io/ios-musical-notes.d.ts create mode 100644 react-icons/io/ios-navigate-outline.d.ts create mode 100644 react-icons/io/ios-navigate.d.ts create mode 100644 react-icons/io/ios-nutrition.d.ts create mode 100644 react-icons/io/ios-nutritoutline.d.ts create mode 100644 react-icons/io/ios-paper-outline.d.ts create mode 100644 react-icons/io/ios-paper.d.ts create mode 100644 react-icons/io/ios-paperplane-outline.d.ts create mode 100644 react-icons/io/ios-paperplane.d.ts create mode 100644 react-icons/io/ios-partlysunny-outline.d.ts create mode 100644 react-icons/io/ios-partlysunny.d.ts create mode 100644 react-icons/io/ios-pause-outline.d.ts create mode 100644 react-icons/io/ios-pause.d.ts create mode 100644 react-icons/io/ios-paw-outline.d.ts create mode 100644 react-icons/io/ios-paw.d.ts create mode 100644 react-icons/io/ios-people-outline.d.ts create mode 100644 react-icons/io/ios-people.d.ts create mode 100644 react-icons/io/ios-person-outline.d.ts create mode 100644 react-icons/io/ios-person.d.ts create mode 100644 react-icons/io/ios-personadd-outline.d.ts create mode 100644 react-icons/io/ios-personadd.d.ts create mode 100644 react-icons/io/ios-photos-outline.d.ts create mode 100644 react-icons/io/ios-photos.d.ts create mode 100644 react-icons/io/ios-pie-outline.d.ts create mode 100644 react-icons/io/ios-pie.d.ts create mode 100644 react-icons/io/ios-pint-outline.d.ts create mode 100644 react-icons/io/ios-pint.d.ts create mode 100644 react-icons/io/ios-play-outline.d.ts create mode 100644 react-icons/io/ios-play.d.ts create mode 100644 react-icons/io/ios-plus-empty.d.ts create mode 100644 react-icons/io/ios-plus-outline.d.ts create mode 100644 react-icons/io/ios-plus.d.ts create mode 100644 react-icons/io/ios-pricetag-outline.d.ts create mode 100644 react-icons/io/ios-pricetag.d.ts create mode 100644 react-icons/io/ios-pricetags-outline.d.ts create mode 100644 react-icons/io/ios-pricetags.d.ts create mode 100644 react-icons/io/ios-printer-outline.d.ts create mode 100644 react-icons/io/ios-printer.d.ts create mode 100644 react-icons/io/ios-pulse-strong.d.ts create mode 100644 react-icons/io/ios-pulse.d.ts create mode 100644 react-icons/io/ios-rainy-outline.d.ts create mode 100644 react-icons/io/ios-rainy.d.ts create mode 100644 react-icons/io/ios-recording-outline.d.ts create mode 100644 react-icons/io/ios-recording.d.ts create mode 100644 react-icons/io/ios-redo-outline.d.ts create mode 100644 react-icons/io/ios-redo.d.ts create mode 100644 react-icons/io/ios-refresh-empty.d.ts create mode 100644 react-icons/io/ios-refresh-outline.d.ts create mode 100644 react-icons/io/ios-refresh.d.ts create mode 100644 react-icons/io/ios-reload.d.ts create mode 100644 react-icons/io/ios-reverse-camera-outline.d.ts create mode 100644 react-icons/io/ios-reverse-camera.d.ts create mode 100644 react-icons/io/ios-rewind-outline.d.ts create mode 100644 react-icons/io/ios-rewind.d.ts create mode 100644 react-icons/io/ios-rose-outline.d.ts create mode 100644 react-icons/io/ios-rose.d.ts create mode 100644 react-icons/io/ios-search-strong.d.ts create mode 100644 react-icons/io/ios-search.d.ts create mode 100644 react-icons/io/ios-settings-strong.d.ts create mode 100644 react-icons/io/ios-settings.d.ts create mode 100644 react-icons/io/ios-shuffle-strong.d.ts create mode 100644 react-icons/io/ios-shuffle.d.ts create mode 100644 react-icons/io/ios-skipbackward-outline.d.ts create mode 100644 react-icons/io/ios-skipbackward.d.ts create mode 100644 react-icons/io/ios-skipforward-outline.d.ts create mode 100644 react-icons/io/ios-skipforward.d.ts create mode 100644 react-icons/io/ios-snowy.d.ts create mode 100644 react-icons/io/ios-speedometer-outline.d.ts create mode 100644 react-icons/io/ios-speedometer.d.ts create mode 100644 react-icons/io/ios-star-half.d.ts create mode 100644 react-icons/io/ios-star-outline.d.ts create mode 100644 react-icons/io/ios-star.d.ts create mode 100644 react-icons/io/ios-stopwatch-outline.d.ts create mode 100644 react-icons/io/ios-stopwatch.d.ts create mode 100644 react-icons/io/ios-sunny-outline.d.ts create mode 100644 react-icons/io/ios-sunny.d.ts create mode 100644 react-icons/io/ios-telephone-outline.d.ts create mode 100644 react-icons/io/ios-telephone.d.ts create mode 100644 react-icons/io/ios-tennisball-outline.d.ts create mode 100644 react-icons/io/ios-tennisball.d.ts create mode 100644 react-icons/io/ios-thunderstorm-outline.d.ts create mode 100644 react-icons/io/ios-thunderstorm.d.ts create mode 100644 react-icons/io/ios-time-outline.d.ts create mode 100644 react-icons/io/ios-time.d.ts create mode 100644 react-icons/io/ios-timer-outline.d.ts create mode 100644 react-icons/io/ios-timer.d.ts create mode 100644 react-icons/io/ios-toggle-outline.d.ts create mode 100644 react-icons/io/ios-toggle.d.ts create mode 100644 react-icons/io/ios-trash-outline.d.ts create mode 100644 react-icons/io/ios-trash.d.ts create mode 100644 react-icons/io/ios-undo-outline.d.ts create mode 100644 react-icons/io/ios-undo.d.ts create mode 100644 react-icons/io/ios-unlocked-outline.d.ts create mode 100644 react-icons/io/ios-unlocked.d.ts create mode 100644 react-icons/io/ios-upload-outline.d.ts create mode 100644 react-icons/io/ios-upload.d.ts create mode 100644 react-icons/io/ios-videocam-outline.d.ts create mode 100644 react-icons/io/ios-videocam.d.ts create mode 100644 react-icons/io/ios-volume-high.d.ts create mode 100644 react-icons/io/ios-volume-low.d.ts create mode 100644 react-icons/io/ios-wineglass-outline.d.ts create mode 100644 react-icons/io/ios-wineglass.d.ts create mode 100644 react-icons/io/ios-world-outline.d.ts create mode 100644 react-icons/io/ios-world.d.ts create mode 100644 react-icons/io/ipad.d.ts create mode 100644 react-icons/io/iphone.d.ts create mode 100644 react-icons/io/ipod.d.ts create mode 100644 react-icons/io/jet.d.ts create mode 100644 react-icons/io/key.d.ts create mode 100644 react-icons/io/knife.d.ts create mode 100644 react-icons/io/laptop.d.ts create mode 100644 react-icons/io/leaf.d.ts create mode 100644 react-icons/io/levels.d.ts create mode 100644 react-icons/io/lightbulb.d.ts create mode 100644 react-icons/io/link.d.ts create mode 100644 react-icons/io/load-a.d.ts create mode 100644 react-icons/io/load-b.d.ts create mode 100644 react-icons/io/load-c.d.ts create mode 100644 react-icons/io/load-d.d.ts create mode 100644 react-icons/io/location.d.ts create mode 100644 react-icons/io/lock-combination.d.ts create mode 100644 react-icons/io/locked.d.ts create mode 100644 react-icons/io/log-in.d.ts create mode 100644 react-icons/io/log-out.d.ts create mode 100644 react-icons/io/loop.d.ts create mode 100644 react-icons/io/magnet.d.ts create mode 100644 react-icons/io/male.d.ts create mode 100644 react-icons/io/man.d.ts create mode 100644 react-icons/io/map.d.ts create mode 100644 react-icons/io/medkit.d.ts create mode 100644 react-icons/io/merge.d.ts create mode 100644 react-icons/io/mic-a.d.ts create mode 100644 react-icons/io/mic-b.d.ts create mode 100644 react-icons/io/mic-c.d.ts create mode 100644 react-icons/io/minus-circled.d.ts create mode 100644 react-icons/io/minus-round.d.ts create mode 100644 react-icons/io/minus.d.ts create mode 100644 react-icons/io/model-s.d.ts create mode 100644 react-icons/io/monitor.d.ts create mode 100644 react-icons/io/more.d.ts create mode 100644 react-icons/io/mouse.d.ts create mode 100644 react-icons/io/music-note.d.ts create mode 100644 react-icons/io/navicon-round.d.ts create mode 100644 react-icons/io/navicon.d.ts create mode 100644 react-icons/io/navigate.d.ts create mode 100644 react-icons/io/network.d.ts create mode 100644 react-icons/io/no-smoking.d.ts create mode 100644 react-icons/io/nuclear.d.ts create mode 100644 react-icons/io/outlet.d.ts create mode 100644 react-icons/io/paintbrush.d.ts create mode 100644 react-icons/io/paintbucket.d.ts create mode 100644 react-icons/io/paper-airplane.d.ts create mode 100644 react-icons/io/paperclip.d.ts create mode 100644 react-icons/io/pause.d.ts create mode 100644 react-icons/io/person-add.d.ts create mode 100644 react-icons/io/person-stalker.d.ts create mode 100644 react-icons/io/person.d.ts create mode 100644 react-icons/io/pie-graph.d.ts create mode 100644 react-icons/io/pin.d.ts create mode 100644 react-icons/io/pinpoint.d.ts create mode 100644 react-icons/io/pizza.d.ts create mode 100644 react-icons/io/plane.d.ts create mode 100644 react-icons/io/planet.d.ts create mode 100644 react-icons/io/play.d.ts create mode 100644 react-icons/io/playstation.d.ts create mode 100644 react-icons/io/plus-circled.d.ts create mode 100644 react-icons/io/plus-round.d.ts create mode 100644 react-icons/io/plus.d.ts create mode 100644 react-icons/io/podium.d.ts create mode 100644 react-icons/io/pound.d.ts create mode 100644 react-icons/io/power.d.ts create mode 100644 react-icons/io/pricetag.d.ts create mode 100644 react-icons/io/pricetags.d.ts create mode 100644 react-icons/io/printer.d.ts create mode 100644 react-icons/io/pull-request.d.ts create mode 100644 react-icons/io/qr-scanner.d.ts create mode 100644 react-icons/io/quote.d.ts create mode 100644 react-icons/io/radio-waves.d.ts create mode 100644 react-icons/io/record.d.ts create mode 100644 react-icons/io/refresh.d.ts create mode 100644 react-icons/io/reply-all.d.ts create mode 100644 react-icons/io/reply.d.ts create mode 100644 react-icons/io/ribbon-a.d.ts create mode 100644 react-icons/io/ribbon-b.d.ts create mode 100644 react-icons/io/sad-outline.d.ts create mode 100644 react-icons/io/sad.d.ts create mode 100644 react-icons/io/scissors.d.ts create mode 100644 react-icons/io/search.d.ts create mode 100644 react-icons/io/settings.d.ts create mode 100644 react-icons/io/share.d.ts create mode 100644 react-icons/io/shuffle.d.ts create mode 100644 react-icons/io/skip-backward.d.ts create mode 100644 react-icons/io/skip-forward.d.ts create mode 100644 react-icons/io/social-android-outline.d.ts create mode 100644 react-icons/io/social-android.d.ts create mode 100644 react-icons/io/social-angular-outline.d.ts create mode 100644 react-icons/io/social-angular.d.ts create mode 100644 react-icons/io/social-apple-outline.d.ts create mode 100644 react-icons/io/social-apple.d.ts create mode 100644 react-icons/io/social-bitcoin-outline.d.ts create mode 100644 react-icons/io/social-bitcoin.d.ts create mode 100644 react-icons/io/social-buffer-outline.d.ts create mode 100644 react-icons/io/social-buffer.d.ts create mode 100644 react-icons/io/social-chrome-outline.d.ts create mode 100644 react-icons/io/social-chrome.d.ts create mode 100644 react-icons/io/social-codepen-outline.d.ts create mode 100644 react-icons/io/social-codepen.d.ts create mode 100644 react-icons/io/social-css3-outline.d.ts create mode 100644 react-icons/io/social-css3.d.ts create mode 100644 react-icons/io/social-designernews-outline.d.ts create mode 100644 react-icons/io/social-designernews.d.ts create mode 100644 react-icons/io/social-dribbble-outline.d.ts create mode 100644 react-icons/io/social-dribbble.d.ts create mode 100644 react-icons/io/social-dropbox-outline.d.ts create mode 100644 react-icons/io/social-dropbox.d.ts create mode 100644 react-icons/io/social-euro-outline.d.ts create mode 100644 react-icons/io/social-euro.d.ts create mode 100644 react-icons/io/social-facebook-outline.d.ts create mode 100644 react-icons/io/social-facebook.d.ts create mode 100644 react-icons/io/social-foursquare-outline.d.ts create mode 100644 react-icons/io/social-foursquare.d.ts create mode 100644 react-icons/io/social-freebsd-devil.d.ts create mode 100644 react-icons/io/social-github-outline.d.ts create mode 100644 react-icons/io/social-github.d.ts create mode 100644 react-icons/io/social-google-outline.d.ts create mode 100644 react-icons/io/social-google.d.ts create mode 100644 react-icons/io/social-googleplus-outline.d.ts create mode 100644 react-icons/io/social-googleplus.d.ts create mode 100644 react-icons/io/social-hackernews-outline.d.ts create mode 100644 react-icons/io/social-hackernews.d.ts create mode 100644 react-icons/io/social-html5-outline.d.ts create mode 100644 react-icons/io/social-html5.d.ts create mode 100644 react-icons/io/social-instagram-outline.d.ts create mode 100644 react-icons/io/social-instagram.d.ts create mode 100644 react-icons/io/social-javascript-outline.d.ts create mode 100644 react-icons/io/social-javascript.d.ts create mode 100644 react-icons/io/social-linkedin-outline.d.ts create mode 100644 react-icons/io/social-linkedin.d.ts create mode 100644 react-icons/io/social-markdown.d.ts create mode 100644 react-icons/io/social-nodejs.d.ts create mode 100644 react-icons/io/social-octocat.d.ts create mode 100644 react-icons/io/social-pinterest-outline.d.ts create mode 100644 react-icons/io/social-pinterest.d.ts create mode 100644 react-icons/io/social-python.d.ts create mode 100644 react-icons/io/social-reddit-outline.d.ts create mode 100644 react-icons/io/social-reddit.d.ts create mode 100644 react-icons/io/social-rss-outline.d.ts create mode 100644 react-icons/io/social-rss.d.ts create mode 100644 react-icons/io/social-sass.d.ts create mode 100644 react-icons/io/social-skype-outline.d.ts create mode 100644 react-icons/io/social-skype.d.ts create mode 100644 react-icons/io/social-snapchat-outline.d.ts create mode 100644 react-icons/io/social-snapchat.d.ts create mode 100644 react-icons/io/social-tumblr-outline.d.ts create mode 100644 react-icons/io/social-tumblr.d.ts create mode 100644 react-icons/io/social-tux.d.ts create mode 100644 react-icons/io/social-twitch-outline.d.ts create mode 100644 react-icons/io/social-twitch.d.ts create mode 100644 react-icons/io/social-twitter-outline.d.ts create mode 100644 react-icons/io/social-twitter.d.ts create mode 100644 react-icons/io/social-usd-outline.d.ts create mode 100644 react-icons/io/social-usd.d.ts create mode 100644 react-icons/io/social-vimeo-outline.d.ts create mode 100644 react-icons/io/social-vimeo.d.ts create mode 100644 react-icons/io/social-whatsapp-outline.d.ts create mode 100644 react-icons/io/social-whatsapp.d.ts create mode 100644 react-icons/io/social-windows-outline.d.ts create mode 100644 react-icons/io/social-windows.d.ts create mode 100644 react-icons/io/social-wordpress-outline.d.ts create mode 100644 react-icons/io/social-wordpress.d.ts create mode 100644 react-icons/io/social-yahoo-outline.d.ts create mode 100644 react-icons/io/social-yahoo.d.ts create mode 100644 react-icons/io/social-yen-outline.d.ts create mode 100644 react-icons/io/social-yen.d.ts create mode 100644 react-icons/io/social-youtube-outline.d.ts create mode 100644 react-icons/io/social-youtube.d.ts create mode 100644 react-icons/io/soup-can-outline.d.ts create mode 100644 react-icons/io/soup-can.d.ts create mode 100644 react-icons/io/speakerphone.d.ts create mode 100644 react-icons/io/speedometer.d.ts create mode 100644 react-icons/io/spoon.d.ts create mode 100644 react-icons/io/star.d.ts create mode 100644 react-icons/io/stats-bars.d.ts create mode 100644 react-icons/io/steam.d.ts create mode 100644 react-icons/io/stop.d.ts create mode 100644 react-icons/io/thermometer.d.ts create mode 100644 react-icons/io/thumbsdown.d.ts create mode 100644 react-icons/io/thumbsup.d.ts create mode 100644 react-icons/io/toggle-filled.d.ts create mode 100644 react-icons/io/toggle.d.ts create mode 100644 react-icons/io/transgender.d.ts create mode 100644 react-icons/io/trash-a.d.ts create mode 100644 react-icons/io/trash-b.d.ts create mode 100644 react-icons/io/trophy.d.ts create mode 100644 react-icons/io/tshirt-outline.d.ts create mode 100644 react-icons/io/tshirt.d.ts create mode 100644 react-icons/io/umbrella.d.ts create mode 100644 react-icons/io/university.d.ts create mode 100644 react-icons/io/unlocked.d.ts create mode 100644 react-icons/io/upload.d.ts create mode 100644 react-icons/io/usb.d.ts create mode 100644 react-icons/io/videocamera.d.ts create mode 100644 react-icons/io/volume-high.d.ts create mode 100644 react-icons/io/volume-low.d.ts create mode 100644 react-icons/io/volume-medium.d.ts create mode 100644 react-icons/io/volume-mute.d.ts create mode 100644 react-icons/io/wand.d.ts create mode 100644 react-icons/io/waterdrop.d.ts create mode 100644 react-icons/io/wifi.d.ts create mode 100644 react-icons/io/wineglass.d.ts create mode 100644 react-icons/io/woman.d.ts create mode 100644 react-icons/io/wrench.d.ts create mode 100644 react-icons/io/xbox.d.ts create mode 100644 react-icons/md/3d-rotation.d.ts create mode 100644 react-icons/md/ac-unit.d.ts create mode 100644 react-icons/md/access-alarm.d.ts create mode 100644 react-icons/md/access-alarms.d.ts create mode 100644 react-icons/md/access-time.d.ts create mode 100644 react-icons/md/accessibility.d.ts create mode 100644 react-icons/md/accessible.d.ts create mode 100644 react-icons/md/account-balance-wallet.d.ts create mode 100644 react-icons/md/account-balance.d.ts create mode 100644 react-icons/md/account-box.d.ts create mode 100644 react-icons/md/account-circle.d.ts create mode 100644 react-icons/md/adb.d.ts create mode 100644 react-icons/md/add-a-photo.d.ts create mode 100644 react-icons/md/add-alarm.d.ts create mode 100644 react-icons/md/add-alert.d.ts create mode 100644 react-icons/md/add-box.d.ts create mode 100644 react-icons/md/add-circle-outline.d.ts create mode 100644 react-icons/md/add-circle.d.ts create mode 100644 react-icons/md/add-location.d.ts create mode 100644 react-icons/md/add-shopping-cart.d.ts create mode 100644 react-icons/md/add-to-photos.d.ts create mode 100644 react-icons/md/add-to-queue.d.ts create mode 100644 react-icons/md/add.d.ts create mode 100644 react-icons/md/adjust.d.ts create mode 100644 react-icons/md/airline-seat-flat-angled.d.ts create mode 100644 react-icons/md/airline-seat-flat.d.ts create mode 100644 react-icons/md/airline-seat-individual-suite.d.ts create mode 100644 react-icons/md/airline-seat-legroom-extra.d.ts create mode 100644 react-icons/md/airline-seat-legroom-normal.d.ts create mode 100644 react-icons/md/airline-seat-legroom-reduced.d.ts create mode 100644 react-icons/md/airline-seat-recline-extra.d.ts create mode 100644 react-icons/md/airline-seat-recline-normal.d.ts create mode 100644 react-icons/md/airplanemode-active.d.ts create mode 100644 react-icons/md/airplanemode-inactive.d.ts create mode 100644 react-icons/md/airplay.d.ts create mode 100644 react-icons/md/airport-shuttle.d.ts create mode 100644 react-icons/md/alarm-add.d.ts create mode 100644 react-icons/md/alarm-off.d.ts create mode 100644 react-icons/md/alarm-on.d.ts create mode 100644 react-icons/md/alarm.d.ts create mode 100644 react-icons/md/album.d.ts create mode 100644 react-icons/md/all-inclusive.d.ts create mode 100644 react-icons/md/all-out.d.ts create mode 100644 react-icons/md/android.d.ts create mode 100644 react-icons/md/announcement.d.ts create mode 100644 react-icons/md/apps.d.ts create mode 100644 react-icons/md/archive.d.ts create mode 100644 react-icons/md/arrow-back.d.ts create mode 100644 react-icons/md/arrow-downward.d.ts create mode 100644 react-icons/md/arrow-drop-down-circle.d.ts create mode 100644 react-icons/md/arrow-drop-down.d.ts create mode 100644 react-icons/md/arrow-drop-up.d.ts create mode 100644 react-icons/md/arrow-forward.d.ts create mode 100644 react-icons/md/arrow-upward.d.ts create mode 100644 react-icons/md/art-track.d.ts create mode 100644 react-icons/md/aspect-ratio.d.ts create mode 100644 react-icons/md/assessment.d.ts create mode 100644 react-icons/md/assignment-ind.d.ts create mode 100644 react-icons/md/assignment-late.d.ts create mode 100644 react-icons/md/assignment-return.d.ts create mode 100644 react-icons/md/assignment-returned.d.ts create mode 100644 react-icons/md/assignment-turned-in.d.ts create mode 100644 react-icons/md/assignment.d.ts create mode 100644 react-icons/md/assistant-photo.d.ts create mode 100644 react-icons/md/assistant.d.ts create mode 100644 react-icons/md/attach-file.d.ts create mode 100644 react-icons/md/attach-money.d.ts create mode 100644 react-icons/md/attachment.d.ts create mode 100644 react-icons/md/audiotrack.d.ts create mode 100644 react-icons/md/autorenew.d.ts create mode 100644 react-icons/md/av-timer.d.ts create mode 100644 react-icons/md/backspace.d.ts create mode 100644 react-icons/md/backup.d.ts create mode 100644 react-icons/md/battery-alert.d.ts create mode 100644 react-icons/md/battery-charging-full.d.ts create mode 100644 react-icons/md/battery-full.d.ts create mode 100644 react-icons/md/battery-std.d.ts create mode 100644 react-icons/md/battery-unknown.d.ts create mode 100644 react-icons/md/beach-access.d.ts create mode 100644 react-icons/md/beenhere.d.ts create mode 100644 react-icons/md/block.d.ts create mode 100644 react-icons/md/bluetooth-audio.d.ts create mode 100644 react-icons/md/bluetooth-connected.d.ts create mode 100644 react-icons/md/bluetooth-disabled.d.ts create mode 100644 react-icons/md/bluetooth-searching.d.ts create mode 100644 react-icons/md/bluetooth.d.ts create mode 100644 react-icons/md/blur-circular.d.ts create mode 100644 react-icons/md/blur-linear.d.ts create mode 100644 react-icons/md/blur-off.d.ts create mode 100644 react-icons/md/blur-on.d.ts create mode 100644 react-icons/md/book.d.ts create mode 100644 react-icons/md/bookmark-outline.d.ts create mode 100644 react-icons/md/bookmark.d.ts create mode 100644 react-icons/md/border-all.d.ts create mode 100644 react-icons/md/border-bottom.d.ts create mode 100644 react-icons/md/border-clear.d.ts create mode 100644 react-icons/md/border-color.d.ts create mode 100644 react-icons/md/border-horizontal.d.ts create mode 100644 react-icons/md/border-inner.d.ts create mode 100644 react-icons/md/border-left.d.ts create mode 100644 react-icons/md/border-outer.d.ts create mode 100644 react-icons/md/border-right.d.ts create mode 100644 react-icons/md/border-style.d.ts create mode 100644 react-icons/md/border-top.d.ts create mode 100644 react-icons/md/border-vertical.d.ts create mode 100644 react-icons/md/branding-watermark.d.ts create mode 100644 react-icons/md/brightness-1.d.ts create mode 100644 react-icons/md/brightness-2.d.ts create mode 100644 react-icons/md/brightness-3.d.ts create mode 100644 react-icons/md/brightness-4.d.ts create mode 100644 react-icons/md/brightness-5.d.ts create mode 100644 react-icons/md/brightness-6.d.ts create mode 100644 react-icons/md/brightness-7.d.ts create mode 100644 react-icons/md/brightness-auto.d.ts create mode 100644 react-icons/md/brightness-high.d.ts create mode 100644 react-icons/md/brightness-low.d.ts create mode 100644 react-icons/md/brightness-medium.d.ts create mode 100644 react-icons/md/broken-image.d.ts create mode 100644 react-icons/md/brush.d.ts create mode 100644 react-icons/md/bubble-chart.d.ts create mode 100644 react-icons/md/bug-report.d.ts create mode 100644 react-icons/md/build.d.ts create mode 100644 react-icons/md/burst-mode.d.ts create mode 100644 react-icons/md/business-center.d.ts create mode 100644 react-icons/md/business.d.ts create mode 100644 react-icons/md/cached.d.ts create mode 100644 react-icons/md/cake.d.ts create mode 100644 react-icons/md/call-end.d.ts create mode 100644 react-icons/md/call-made.d.ts create mode 100644 react-icons/md/call-merge.d.ts create mode 100644 react-icons/md/call-missed-outgoing.d.ts create mode 100644 react-icons/md/call-missed.d.ts create mode 100644 react-icons/md/call-received.d.ts create mode 100644 react-icons/md/call-split.d.ts create mode 100644 react-icons/md/call-to-action.d.ts create mode 100644 react-icons/md/call.d.ts create mode 100644 react-icons/md/camera-alt.d.ts create mode 100644 react-icons/md/camera-enhance.d.ts create mode 100644 react-icons/md/camera-front.d.ts create mode 100644 react-icons/md/camera-rear.d.ts create mode 100644 react-icons/md/camera-roll.d.ts create mode 100644 react-icons/md/camera.d.ts create mode 100644 react-icons/md/cancel.d.ts create mode 100644 react-icons/md/card-giftcard.d.ts create mode 100644 react-icons/md/card-membership.d.ts create mode 100644 react-icons/md/card-travel.d.ts create mode 100644 react-icons/md/casino.d.ts create mode 100644 react-icons/md/cast-connected.d.ts create mode 100644 react-icons/md/cast.d.ts create mode 100644 react-icons/md/center-focus-strong.d.ts create mode 100644 react-icons/md/center-focus-weak.d.ts create mode 100644 react-icons/md/change-history.d.ts create mode 100644 react-icons/md/chat-bubble-outline.d.ts create mode 100644 react-icons/md/chat-bubble.d.ts create mode 100644 react-icons/md/chat.d.ts create mode 100644 react-icons/md/check-box-outline-blank.d.ts create mode 100644 react-icons/md/check-box.d.ts create mode 100644 react-icons/md/check-circle.d.ts create mode 100644 react-icons/md/check.d.ts create mode 100644 react-icons/md/chevron-left.d.ts create mode 100644 react-icons/md/chevron-right.d.ts create mode 100644 react-icons/md/child-care.d.ts create mode 100644 react-icons/md/child-friendly.d.ts create mode 100644 react-icons/md/chrome-reader-mode.d.ts create mode 100644 react-icons/md/class.d.ts create mode 100644 react-icons/md/clear-all.d.ts create mode 100644 react-icons/md/clear.d.ts create mode 100644 react-icons/md/close.d.ts create mode 100644 react-icons/md/closed-caption.d.ts create mode 100644 react-icons/md/cloud-circle.d.ts create mode 100644 react-icons/md/cloud-done.d.ts create mode 100644 react-icons/md/cloud-download.d.ts create mode 100644 react-icons/md/cloud-off.d.ts create mode 100644 react-icons/md/cloud-queue.d.ts create mode 100644 react-icons/md/cloud-upload.d.ts create mode 100644 react-icons/md/cloud.d.ts create mode 100644 react-icons/md/code.d.ts create mode 100644 react-icons/md/collections-bookmark.d.ts create mode 100644 react-icons/md/collections.d.ts create mode 100644 react-icons/md/color-lens.d.ts create mode 100644 react-icons/md/colorize.d.ts create mode 100644 react-icons/md/comment.d.ts create mode 100644 react-icons/md/compare-arrows.d.ts create mode 100644 react-icons/md/compare.d.ts create mode 100644 react-icons/md/computer.d.ts create mode 100644 react-icons/md/confirmation-number.d.ts create mode 100644 react-icons/md/contact-mail.d.ts create mode 100644 react-icons/md/contact-phone.d.ts create mode 100644 react-icons/md/contacts.d.ts create mode 100644 react-icons/md/content-copy.d.ts create mode 100644 react-icons/md/content-cut.d.ts create mode 100644 react-icons/md/content-paste.d.ts create mode 100644 react-icons/md/control-point-duplicate.d.ts create mode 100644 react-icons/md/control-point.d.ts create mode 100644 react-icons/md/copyright.d.ts create mode 100644 react-icons/md/create-new-folder.d.ts create mode 100644 react-icons/md/create.d.ts create mode 100644 react-icons/md/credit-card.d.ts create mode 100644 react-icons/md/crop-16-9.d.ts create mode 100644 react-icons/md/crop-3-2.d.ts create mode 100644 react-icons/md/crop-5-4.d.ts create mode 100644 react-icons/md/crop-7-5.d.ts create mode 100644 react-icons/md/crop-din.d.ts create mode 100644 react-icons/md/crop-free.d.ts create mode 100644 react-icons/md/crop-landscape.d.ts create mode 100644 react-icons/md/crop-original.d.ts create mode 100644 react-icons/md/crop-portrait.d.ts create mode 100644 react-icons/md/crop-rotate.d.ts create mode 100644 react-icons/md/crop-square.d.ts create mode 100644 react-icons/md/crop.d.ts create mode 100644 react-icons/md/dashboard.d.ts create mode 100644 react-icons/md/data-usage.d.ts create mode 100644 react-icons/md/date-range.d.ts create mode 100644 react-icons/md/dehaze.d.ts create mode 100644 react-icons/md/delete-forever.d.ts create mode 100644 react-icons/md/delete-sweep.d.ts create mode 100644 react-icons/md/delete.d.ts create mode 100644 react-icons/md/description.d.ts create mode 100644 react-icons/md/desktop-mac.d.ts create mode 100644 react-icons/md/desktop-windows.d.ts create mode 100644 react-icons/md/details.d.ts create mode 100644 react-icons/md/developer-board.d.ts create mode 100644 react-icons/md/developer-mode.d.ts create mode 100644 react-icons/md/device-hub.d.ts create mode 100644 react-icons/md/devices-other.d.ts create mode 100644 react-icons/md/devices.d.ts create mode 100644 react-icons/md/dialer-sip.d.ts create mode 100644 react-icons/md/dialpad.d.ts create mode 100644 react-icons/md/directions-bike.d.ts create mode 100644 react-icons/md/directions-boat.d.ts create mode 100644 react-icons/md/directions-bus.d.ts create mode 100644 react-icons/md/directions-car.d.ts create mode 100644 react-icons/md/directions-ferry.d.ts create mode 100644 react-icons/md/directions-railway.d.ts create mode 100644 react-icons/md/directions-run.d.ts create mode 100644 react-icons/md/directions-subway.d.ts create mode 100644 react-icons/md/directions-transit.d.ts create mode 100644 react-icons/md/directions-walk.d.ts create mode 100644 react-icons/md/directions.d.ts create mode 100644 react-icons/md/disc-full.d.ts create mode 100644 react-icons/md/dns.d.ts create mode 100644 react-icons/md/do-not-disturb-alt.d.ts create mode 100644 react-icons/md/do-not-disturb-off.d.ts create mode 100644 react-icons/md/do-not-disturb.d.ts create mode 100644 react-icons/md/dock.d.ts create mode 100644 react-icons/md/domain.d.ts create mode 100644 react-icons/md/done-all.d.ts create mode 100644 react-icons/md/done.d.ts create mode 100644 react-icons/md/donut-large.d.ts create mode 100644 react-icons/md/donut-small.d.ts create mode 100644 react-icons/md/drafts.d.ts create mode 100644 react-icons/md/drag-handle.d.ts create mode 100644 react-icons/md/drive-eta.d.ts create mode 100644 react-icons/md/dvr.d.ts create mode 100644 react-icons/md/edit-location.d.ts create mode 100644 react-icons/md/edit.d.ts create mode 100644 react-icons/md/eject.d.ts create mode 100644 react-icons/md/email.d.ts create mode 100644 react-icons/md/enhanced-encryption.d.ts create mode 100644 react-icons/md/equalizer.d.ts create mode 100644 react-icons/md/error-outline.d.ts create mode 100644 react-icons/md/error.d.ts create mode 100644 react-icons/md/euro-symbol.d.ts create mode 100644 react-icons/md/ev-station.d.ts create mode 100644 react-icons/md/event-available.d.ts create mode 100644 react-icons/md/event-busy.d.ts create mode 100644 react-icons/md/event-note.d.ts create mode 100644 react-icons/md/event-seat.d.ts create mode 100644 react-icons/md/event.d.ts create mode 100644 react-icons/md/exit-to-app.d.ts create mode 100644 react-icons/md/expand-less.d.ts create mode 100644 react-icons/md/expand-more.d.ts create mode 100644 react-icons/md/explicit.d.ts create mode 100644 react-icons/md/explore.d.ts create mode 100644 react-icons/md/exposure-minus-1.d.ts create mode 100644 react-icons/md/exposure-minus-2.d.ts create mode 100644 react-icons/md/exposure-neg-1.d.ts create mode 100644 react-icons/md/exposure-neg-2.d.ts create mode 100644 react-icons/md/exposure-plus-1.d.ts create mode 100644 react-icons/md/exposure-plus-2.d.ts create mode 100644 react-icons/md/exposure-zero.d.ts create mode 100644 react-icons/md/exposure.d.ts create mode 100644 react-icons/md/extension.d.ts create mode 100644 react-icons/md/face.d.ts create mode 100644 react-icons/md/fast-forward.d.ts create mode 100644 react-icons/md/fast-rewind.d.ts create mode 100644 react-icons/md/favorite-border.d.ts create mode 100644 react-icons/md/favorite-outline.d.ts create mode 100644 react-icons/md/favorite.d.ts create mode 100644 react-icons/md/featured-play-list.d.ts create mode 100644 react-icons/md/featured-video.d.ts create mode 100644 react-icons/md/feedback.d.ts create mode 100644 react-icons/md/fiber-dvr.d.ts create mode 100644 react-icons/md/fiber-manual-record.d.ts create mode 100644 react-icons/md/fiber-new.d.ts create mode 100644 react-icons/md/fiber-pin.d.ts create mode 100644 react-icons/md/fiber-smart-record.d.ts create mode 100644 react-icons/md/file-download.d.ts create mode 100644 react-icons/md/file-upload.d.ts create mode 100644 react-icons/md/filter-1.d.ts create mode 100644 react-icons/md/filter-2.d.ts create mode 100644 react-icons/md/filter-3.d.ts create mode 100644 react-icons/md/filter-4.d.ts create mode 100644 react-icons/md/filter-5.d.ts create mode 100644 react-icons/md/filter-6.d.ts create mode 100644 react-icons/md/filter-7.d.ts create mode 100644 react-icons/md/filter-8.d.ts create mode 100644 react-icons/md/filter-9-plus.d.ts create mode 100644 react-icons/md/filter-9.d.ts create mode 100644 react-icons/md/filter-b-and-w.d.ts create mode 100644 react-icons/md/filter-center-focus.d.ts create mode 100644 react-icons/md/filter-drama.d.ts create mode 100644 react-icons/md/filter-frames.d.ts create mode 100644 react-icons/md/filter-hdr.d.ts create mode 100644 react-icons/md/filter-list.d.ts create mode 100644 react-icons/md/filter-none.d.ts create mode 100644 react-icons/md/filter-tilt-shift.d.ts create mode 100644 react-icons/md/filter-vintage.d.ts create mode 100644 react-icons/md/filter.d.ts create mode 100644 react-icons/md/find-in-page.d.ts create mode 100644 react-icons/md/find-replace.d.ts create mode 100644 react-icons/md/fingerprint.d.ts create mode 100644 react-icons/md/first-page.d.ts create mode 100644 react-icons/md/fitness-center.d.ts create mode 100644 react-icons/md/flag.d.ts create mode 100644 react-icons/md/flare.d.ts create mode 100644 react-icons/md/flash-auto.d.ts create mode 100644 react-icons/md/flash-off.d.ts create mode 100644 react-icons/md/flash-on.d.ts create mode 100644 react-icons/md/flight-land.d.ts create mode 100644 react-icons/md/flight-takeoff.d.ts create mode 100644 react-icons/md/flight.d.ts create mode 100644 react-icons/md/flip-to-back.d.ts create mode 100644 react-icons/md/flip-to-front.d.ts create mode 100644 react-icons/md/flip.d.ts create mode 100644 react-icons/md/folder-open.d.ts create mode 100644 react-icons/md/folder-shared.d.ts create mode 100644 react-icons/md/folder-special.d.ts create mode 100644 react-icons/md/folder.d.ts create mode 100644 react-icons/md/font-download.d.ts create mode 100644 react-icons/md/format-align-center.d.ts create mode 100644 react-icons/md/format-align-justify.d.ts create mode 100644 react-icons/md/format-align-left.d.ts create mode 100644 react-icons/md/format-align-right.d.ts create mode 100644 react-icons/md/format-bold.d.ts create mode 100644 react-icons/md/format-clear.d.ts create mode 100644 react-icons/md/format-color-fill.d.ts create mode 100644 react-icons/md/format-color-reset.d.ts create mode 100644 react-icons/md/format-color-text.d.ts create mode 100644 react-icons/md/format-indent-decrease.d.ts create mode 100644 react-icons/md/format-indent-increase.d.ts create mode 100644 react-icons/md/format-italic.d.ts create mode 100644 react-icons/md/format-line-spacing.d.ts create mode 100644 react-icons/md/format-list-bulleted.d.ts create mode 100644 react-icons/md/format-list-numbered.d.ts create mode 100644 react-icons/md/format-paint.d.ts create mode 100644 react-icons/md/format-quote.d.ts create mode 100644 react-icons/md/format-shapes.d.ts create mode 100644 react-icons/md/format-size.d.ts create mode 100644 react-icons/md/format-strikethrough.d.ts create mode 100644 react-icons/md/format-textdirection-l-to-r.d.ts create mode 100644 react-icons/md/format-textdirection-r-to-l.d.ts create mode 100644 react-icons/md/format-underlined.d.ts create mode 100644 react-icons/md/forum.d.ts create mode 100644 react-icons/md/forward-10.d.ts create mode 100644 react-icons/md/forward-30.d.ts create mode 100644 react-icons/md/forward-5.d.ts create mode 100644 react-icons/md/forward.d.ts create mode 100644 react-icons/md/free-breakfast.d.ts create mode 100644 react-icons/md/fullscreen-exit.d.ts create mode 100644 react-icons/md/fullscreen.d.ts create mode 100644 react-icons/md/functions.d.ts create mode 100644 react-icons/md/g-translate.d.ts create mode 100644 react-icons/md/gamepad.d.ts create mode 100644 react-icons/md/games.d.ts create mode 100644 react-icons/md/gavel.d.ts create mode 100644 react-icons/md/gesture.d.ts create mode 100644 react-icons/md/get-app.d.ts create mode 100644 react-icons/md/gif.d.ts create mode 100644 react-icons/md/goat.d.ts create mode 100644 react-icons/md/golf-course.d.ts create mode 100644 react-icons/md/gps-fixed.d.ts create mode 100644 react-icons/md/gps-not-fixed.d.ts create mode 100644 react-icons/md/gps-off.d.ts create mode 100644 react-icons/md/grade.d.ts create mode 100644 react-icons/md/gradient.d.ts create mode 100644 react-icons/md/grain.d.ts create mode 100644 react-icons/md/graphic-eq.d.ts create mode 100644 react-icons/md/grid-off.d.ts create mode 100644 react-icons/md/grid-on.d.ts create mode 100644 react-icons/md/group-add.d.ts create mode 100644 react-icons/md/group-work.d.ts create mode 100644 react-icons/md/group.d.ts create mode 100644 react-icons/md/hd.d.ts create mode 100644 react-icons/md/hdr-off.d.ts create mode 100644 react-icons/md/hdr-on.d.ts create mode 100644 react-icons/md/hdr-strong.d.ts create mode 100644 react-icons/md/hdr-weak.d.ts create mode 100644 react-icons/md/headset-mic.d.ts create mode 100644 react-icons/md/headset.d.ts create mode 100644 react-icons/md/healing.d.ts create mode 100644 react-icons/md/hearing.d.ts create mode 100644 react-icons/md/help-outline.d.ts create mode 100644 react-icons/md/help.d.ts create mode 100644 react-icons/md/high-quality.d.ts create mode 100644 react-icons/md/highlight-off.d.ts create mode 100644 react-icons/md/highlight-remove.d.ts create mode 100644 react-icons/md/highlight.d.ts create mode 100644 react-icons/md/history.d.ts create mode 100644 react-icons/md/home.d.ts create mode 100644 react-icons/md/hot-tub.d.ts create mode 100644 react-icons/md/hotel.d.ts create mode 100644 react-icons/md/hourglass-empty.d.ts create mode 100644 react-icons/md/hourglass-full.d.ts create mode 100644 react-icons/md/http.d.ts create mode 100644 react-icons/md/https.d.ts create mode 100644 react-icons/md/image-aspect-ratio.d.ts create mode 100644 react-icons/md/image.d.ts create mode 100644 react-icons/md/import-contacts.d.ts create mode 100644 react-icons/md/import-export.d.ts create mode 100644 react-icons/md/important-devices.d.ts create mode 100644 react-icons/md/inbox.d.ts create mode 100644 react-icons/md/indeterminate-check-box.d.ts create mode 100644 react-icons/md/index.d.ts create mode 100644 react-icons/md/info-outline.d.ts create mode 100644 react-icons/md/info.d.ts create mode 100644 react-icons/md/input.d.ts create mode 100644 react-icons/md/insert-chart.d.ts create mode 100644 react-icons/md/insert-comment.d.ts create mode 100644 react-icons/md/insert-drive-file.d.ts create mode 100644 react-icons/md/insert-emoticon.d.ts create mode 100644 react-icons/md/insert-invitation.d.ts create mode 100644 react-icons/md/insert-link.d.ts create mode 100644 react-icons/md/insert-photo.d.ts create mode 100644 react-icons/md/invert-colors-off.d.ts create mode 100644 react-icons/md/invert-colors-on.d.ts create mode 100644 react-icons/md/invert-colors.d.ts create mode 100644 react-icons/md/iso.d.ts create mode 100644 react-icons/md/keyboard-arrow-down.d.ts create mode 100644 react-icons/md/keyboard-arrow-left.d.ts create mode 100644 react-icons/md/keyboard-arrow-right.d.ts create mode 100644 react-icons/md/keyboard-arrow-up.d.ts create mode 100644 react-icons/md/keyboard-backspace.d.ts create mode 100644 react-icons/md/keyboard-capslock.d.ts create mode 100644 react-icons/md/keyboard-control.d.ts create mode 100644 react-icons/md/keyboard-hide.d.ts create mode 100644 react-icons/md/keyboard-return.d.ts create mode 100644 react-icons/md/keyboard-tab.d.ts create mode 100644 react-icons/md/keyboard-voice.d.ts create mode 100644 react-icons/md/keyboard.d.ts create mode 100644 react-icons/md/kitchen.d.ts create mode 100644 react-icons/md/label-outline.d.ts create mode 100644 react-icons/md/label.d.ts create mode 100644 react-icons/md/landscape.d.ts create mode 100644 react-icons/md/language.d.ts create mode 100644 react-icons/md/laptop-chromebook.d.ts create mode 100644 react-icons/md/laptop-mac.d.ts create mode 100644 react-icons/md/laptop-windows.d.ts create mode 100644 react-icons/md/laptop.d.ts create mode 100644 react-icons/md/last-page.d.ts create mode 100644 react-icons/md/launch.d.ts create mode 100644 react-icons/md/layers-clear.d.ts create mode 100644 react-icons/md/layers.d.ts create mode 100644 react-icons/md/leak-add.d.ts create mode 100644 react-icons/md/leak-remove.d.ts create mode 100644 react-icons/md/lens.d.ts create mode 100644 react-icons/md/library-add.d.ts create mode 100644 react-icons/md/library-books.d.ts create mode 100644 react-icons/md/library-music.d.ts create mode 100644 react-icons/md/lightbulb-outline.d.ts create mode 100644 react-icons/md/line-style.d.ts create mode 100644 react-icons/md/line-weight.d.ts create mode 100644 react-icons/md/linear-scale.d.ts create mode 100644 react-icons/md/link.d.ts create mode 100644 react-icons/md/linked-camera.d.ts create mode 100644 react-icons/md/list.d.ts create mode 100644 react-icons/md/live-help.d.ts create mode 100644 react-icons/md/live-tv.d.ts create mode 100644 react-icons/md/local-airport.d.ts create mode 100644 react-icons/md/local-atm.d.ts create mode 100644 react-icons/md/local-attraction.d.ts create mode 100644 react-icons/md/local-bar.d.ts create mode 100644 react-icons/md/local-cafe.d.ts create mode 100644 react-icons/md/local-car-wash.d.ts create mode 100644 react-icons/md/local-convenience-store.d.ts create mode 100644 react-icons/md/local-drink.d.ts create mode 100644 react-icons/md/local-florist.d.ts create mode 100644 react-icons/md/local-gas-station.d.ts create mode 100644 react-icons/md/local-grocery-store.d.ts create mode 100644 react-icons/md/local-hospital.d.ts create mode 100644 react-icons/md/local-hotel.d.ts create mode 100644 react-icons/md/local-laundry-service.d.ts create mode 100644 react-icons/md/local-library.d.ts create mode 100644 react-icons/md/local-mall.d.ts create mode 100644 react-icons/md/local-movies.d.ts create mode 100644 react-icons/md/local-offer.d.ts create mode 100644 react-icons/md/local-parking.d.ts create mode 100644 react-icons/md/local-pharmacy.d.ts create mode 100644 react-icons/md/local-phone.d.ts create mode 100644 react-icons/md/local-pizza.d.ts create mode 100644 react-icons/md/local-play.d.ts create mode 100644 react-icons/md/local-post-office.d.ts create mode 100644 react-icons/md/local-print-shop.d.ts create mode 100644 react-icons/md/local-restaurant.d.ts create mode 100644 react-icons/md/local-see.d.ts create mode 100644 react-icons/md/local-shipping.d.ts create mode 100644 react-icons/md/local-taxi.d.ts create mode 100644 react-icons/md/location-city.d.ts create mode 100644 react-icons/md/location-disabled.d.ts create mode 100644 react-icons/md/location-history.d.ts create mode 100644 react-icons/md/location-off.d.ts create mode 100644 react-icons/md/location-on.d.ts create mode 100644 react-icons/md/location-searching.d.ts create mode 100644 react-icons/md/lock-open.d.ts create mode 100644 react-icons/md/lock-outline.d.ts create mode 100644 react-icons/md/lock.d.ts create mode 100644 react-icons/md/looks-3.d.ts create mode 100644 react-icons/md/looks-4.d.ts create mode 100644 react-icons/md/looks-5.d.ts create mode 100644 react-icons/md/looks-6.d.ts create mode 100644 react-icons/md/looks-one.d.ts create mode 100644 react-icons/md/looks-two.d.ts create mode 100644 react-icons/md/looks.d.ts create mode 100644 react-icons/md/loop.d.ts create mode 100644 react-icons/md/loupe.d.ts create mode 100644 react-icons/md/low-priority.d.ts create mode 100644 react-icons/md/loyalty.d.ts create mode 100644 react-icons/md/mail-outline.d.ts create mode 100644 react-icons/md/mail.d.ts create mode 100644 react-icons/md/map.d.ts create mode 100644 react-icons/md/markunread-mailbox.d.ts create mode 100644 react-icons/md/markunread.d.ts create mode 100644 react-icons/md/memory.d.ts create mode 100644 react-icons/md/menu.d.ts create mode 100644 react-icons/md/merge-type.d.ts create mode 100644 react-icons/md/message.d.ts create mode 100644 react-icons/md/mic-none.d.ts create mode 100644 react-icons/md/mic-off.d.ts create mode 100644 react-icons/md/mic.d.ts create mode 100644 react-icons/md/mms.d.ts create mode 100644 react-icons/md/mode-comment.d.ts create mode 100644 react-icons/md/mode-edit.d.ts create mode 100644 react-icons/md/monetization-on.d.ts create mode 100644 react-icons/md/money-off.d.ts create mode 100644 react-icons/md/monochrome-photos.d.ts create mode 100644 react-icons/md/mood-bad.d.ts create mode 100644 react-icons/md/mood.d.ts create mode 100644 react-icons/md/more-horiz.d.ts create mode 100644 react-icons/md/more-vert.d.ts create mode 100644 react-icons/md/more.d.ts create mode 100644 react-icons/md/motorcycle.d.ts create mode 100644 react-icons/md/mouse.d.ts create mode 100644 react-icons/md/move-to-inbox.d.ts create mode 100644 react-icons/md/movie-creation.d.ts create mode 100644 react-icons/md/movie-filter.d.ts create mode 100644 react-icons/md/movie.d.ts create mode 100644 react-icons/md/multiline-chart.d.ts create mode 100644 react-icons/md/music-note.d.ts create mode 100644 react-icons/md/music-video.d.ts create mode 100644 react-icons/md/my-location.d.ts create mode 100644 react-icons/md/nature-people.d.ts create mode 100644 react-icons/md/nature.d.ts create mode 100644 react-icons/md/navigate-before.d.ts create mode 100644 react-icons/md/navigate-next.d.ts create mode 100644 react-icons/md/navigation.d.ts create mode 100644 react-icons/md/near-me.d.ts create mode 100644 react-icons/md/network-cell.d.ts create mode 100644 react-icons/md/network-check.d.ts create mode 100644 react-icons/md/network-locked.d.ts create mode 100644 react-icons/md/network-wifi.d.ts create mode 100644 react-icons/md/new-releases.d.ts create mode 100644 react-icons/md/next-week.d.ts create mode 100644 react-icons/md/nfc.d.ts create mode 100644 react-icons/md/no-encryption.d.ts create mode 100644 react-icons/md/no-sim.d.ts create mode 100644 react-icons/md/not-interested.d.ts create mode 100644 react-icons/md/note-add.d.ts create mode 100644 react-icons/md/note.d.ts create mode 100644 react-icons/md/notifications-active.d.ts create mode 100644 react-icons/md/notifications-none.d.ts create mode 100644 react-icons/md/notifications-off.d.ts create mode 100644 react-icons/md/notifications-paused.d.ts create mode 100644 react-icons/md/notifications.d.ts create mode 100644 react-icons/md/now-wallpaper.d.ts create mode 100644 react-icons/md/now-widgets.d.ts create mode 100644 react-icons/md/offline-pin.d.ts create mode 100644 react-icons/md/ondemand-video.d.ts create mode 100644 react-icons/md/opacity.d.ts create mode 100644 react-icons/md/open-in-browser.d.ts create mode 100644 react-icons/md/open-in-new.d.ts create mode 100644 react-icons/md/open-with.d.ts create mode 100644 react-icons/md/pages.d.ts create mode 100644 react-icons/md/pageview.d.ts create mode 100644 react-icons/md/palette.d.ts create mode 100644 react-icons/md/pan-tool.d.ts create mode 100644 react-icons/md/panorama-fish-eye.d.ts create mode 100644 react-icons/md/panorama-horizontal.d.ts create mode 100644 react-icons/md/panorama-vertical.d.ts create mode 100644 react-icons/md/panorama-wide-angle.d.ts create mode 100644 react-icons/md/panorama.d.ts create mode 100644 react-icons/md/party-mode.d.ts create mode 100644 react-icons/md/pause-circle-filled.d.ts create mode 100644 react-icons/md/pause-circle-outline.d.ts create mode 100644 react-icons/md/pause.d.ts create mode 100644 react-icons/md/payment.d.ts create mode 100644 react-icons/md/people-outline.d.ts create mode 100644 react-icons/md/people.d.ts create mode 100644 react-icons/md/perm-camera-mic.d.ts create mode 100644 react-icons/md/perm-contact-calendar.d.ts create mode 100644 react-icons/md/perm-data-setting.d.ts create mode 100644 react-icons/md/perm-device-information.d.ts create mode 100644 react-icons/md/perm-identity.d.ts create mode 100644 react-icons/md/perm-media.d.ts create mode 100644 react-icons/md/perm-phone-msg.d.ts create mode 100644 react-icons/md/perm-scan-wifi.d.ts create mode 100644 react-icons/md/person-add.d.ts create mode 100644 react-icons/md/person-outline.d.ts create mode 100644 react-icons/md/person-pin-circle.d.ts create mode 100644 react-icons/md/person-pin.d.ts create mode 100644 react-icons/md/person.d.ts create mode 100644 react-icons/md/personal-video.d.ts create mode 100644 react-icons/md/pets.d.ts create mode 100644 react-icons/md/phone-android.d.ts create mode 100644 react-icons/md/phone-bluetooth-speaker.d.ts create mode 100644 react-icons/md/phone-forwarded.d.ts create mode 100644 react-icons/md/phone-in-talk.d.ts create mode 100644 react-icons/md/phone-iphone.d.ts create mode 100644 react-icons/md/phone-locked.d.ts create mode 100644 react-icons/md/phone-missed.d.ts create mode 100644 react-icons/md/phone-paused.d.ts create mode 100644 react-icons/md/phone.d.ts create mode 100644 react-icons/md/phonelink-erase.d.ts create mode 100644 react-icons/md/phonelink-lock.d.ts create mode 100644 react-icons/md/phonelink-off.d.ts create mode 100644 react-icons/md/phonelink-ring.d.ts create mode 100644 react-icons/md/phonelink-setup.d.ts create mode 100644 react-icons/md/phonelink.d.ts create mode 100644 react-icons/md/photo-album.d.ts create mode 100644 react-icons/md/photo-camera.d.ts create mode 100644 react-icons/md/photo-filter.d.ts create mode 100644 react-icons/md/photo-library.d.ts create mode 100644 react-icons/md/photo-size-select-actual.d.ts create mode 100644 react-icons/md/photo-size-select-large.d.ts create mode 100644 react-icons/md/photo-size-select-small.d.ts create mode 100644 react-icons/md/photo.d.ts create mode 100644 react-icons/md/picture-as-pdf.d.ts create mode 100644 react-icons/md/picture-in-picture-alt.d.ts create mode 100644 react-icons/md/picture-in-picture.d.ts create mode 100644 react-icons/md/pie-chart-outlined.d.ts create mode 100644 react-icons/md/pie-chart.d.ts create mode 100644 react-icons/md/pin-drop.d.ts create mode 100644 react-icons/md/place.d.ts create mode 100644 react-icons/md/play-arrow.d.ts create mode 100644 react-icons/md/play-circle-filled.d.ts create mode 100644 react-icons/md/play-circle-outline.d.ts create mode 100644 react-icons/md/play-for-work.d.ts create mode 100644 react-icons/md/playlist-add-check.d.ts create mode 100644 react-icons/md/playlist-add.d.ts create mode 100644 react-icons/md/playlist-play.d.ts create mode 100644 react-icons/md/plus-one.d.ts create mode 100644 react-icons/md/poll.d.ts create mode 100644 react-icons/md/polymer.d.ts create mode 100644 react-icons/md/pool.d.ts create mode 100644 react-icons/md/portable-wifi-off.d.ts create mode 100644 react-icons/md/portrait.d.ts create mode 100644 react-icons/md/power-input.d.ts create mode 100644 react-icons/md/power-settings-new.d.ts create mode 100644 react-icons/md/power.d.ts create mode 100644 react-icons/md/pregnant-woman.d.ts create mode 100644 react-icons/md/present-to-all.d.ts create mode 100644 react-icons/md/print.d.ts create mode 100644 react-icons/md/priority-high.d.ts create mode 100644 react-icons/md/public.d.ts create mode 100644 react-icons/md/publish.d.ts create mode 100644 react-icons/md/query-builder.d.ts create mode 100644 react-icons/md/question-answer.d.ts create mode 100644 react-icons/md/queue-music.d.ts create mode 100644 react-icons/md/queue-play-next.d.ts create mode 100644 react-icons/md/queue.d.ts create mode 100644 react-icons/md/radio-button-checked.d.ts create mode 100644 react-icons/md/radio-button-unchecked.d.ts create mode 100644 react-icons/md/radio.d.ts create mode 100644 react-icons/md/rate-review.d.ts create mode 100644 react-icons/md/receipt.d.ts create mode 100644 react-icons/md/recent-actors.d.ts create mode 100644 react-icons/md/record-voice-over.d.ts create mode 100644 react-icons/md/redeem.d.ts create mode 100644 react-icons/md/redo.d.ts create mode 100644 react-icons/md/refresh.d.ts create mode 100644 react-icons/md/remove-circle-outline.d.ts create mode 100644 react-icons/md/remove-circle.d.ts create mode 100644 react-icons/md/remove-from-queue.d.ts create mode 100644 react-icons/md/remove-red-eye.d.ts create mode 100644 react-icons/md/remove-shopping-cart.d.ts create mode 100644 react-icons/md/remove.d.ts create mode 100644 react-icons/md/reorder.d.ts create mode 100644 react-icons/md/repeat-one.d.ts create mode 100644 react-icons/md/repeat.d.ts create mode 100644 react-icons/md/replay-10.d.ts create mode 100644 react-icons/md/replay-30.d.ts create mode 100644 react-icons/md/replay-5.d.ts create mode 100644 react-icons/md/replay.d.ts create mode 100644 react-icons/md/reply-all.d.ts create mode 100644 react-icons/md/reply.d.ts create mode 100644 react-icons/md/report-problem.d.ts create mode 100644 react-icons/md/report.d.ts create mode 100644 react-icons/md/restaurant-menu.d.ts create mode 100644 react-icons/md/restaurant.d.ts create mode 100644 react-icons/md/restore-page.d.ts create mode 100644 react-icons/md/restore.d.ts create mode 100644 react-icons/md/ring-volume.d.ts create mode 100644 react-icons/md/room-service.d.ts create mode 100644 react-icons/md/room.d.ts create mode 100644 react-icons/md/rotate-90-degrees-ccw.d.ts create mode 100644 react-icons/md/rotate-left.d.ts create mode 100644 react-icons/md/rotate-right.d.ts create mode 100644 react-icons/md/rounded-corner.d.ts create mode 100644 react-icons/md/router.d.ts create mode 100644 react-icons/md/rowing.d.ts create mode 100644 react-icons/md/rss-feed.d.ts create mode 100644 react-icons/md/rv-hookup.d.ts create mode 100644 react-icons/md/satellite.d.ts create mode 100644 react-icons/md/save.d.ts create mode 100644 react-icons/md/scanner.d.ts create mode 100644 react-icons/md/schedule.d.ts create mode 100644 react-icons/md/school.d.ts create mode 100644 react-icons/md/screen-lock-landscape.d.ts create mode 100644 react-icons/md/screen-lock-portrait.d.ts create mode 100644 react-icons/md/screen-lock-rotation.d.ts create mode 100644 react-icons/md/screen-rotation.d.ts create mode 100644 react-icons/md/screen-share.d.ts create mode 100644 react-icons/md/sd-card.d.ts create mode 100644 react-icons/md/sd-storage.d.ts create mode 100644 react-icons/md/search.d.ts create mode 100644 react-icons/md/security.d.ts create mode 100644 react-icons/md/select-all.d.ts create mode 100644 react-icons/md/send.d.ts create mode 100644 react-icons/md/sentiment-dissatisfied.d.ts create mode 100644 react-icons/md/sentiment-neutral.d.ts create mode 100644 react-icons/md/sentiment-satisfied.d.ts create mode 100644 react-icons/md/sentiment-very-dissatisfied.d.ts create mode 100644 react-icons/md/sentiment-very-satisfied.d.ts create mode 100644 react-icons/md/settings-applications.d.ts create mode 100644 react-icons/md/settings-backup-restore.d.ts create mode 100644 react-icons/md/settings-bluetooth.d.ts create mode 100644 react-icons/md/settings-brightness.d.ts create mode 100644 react-icons/md/settings-cell.d.ts create mode 100644 react-icons/md/settings-ethernet.d.ts create mode 100644 react-icons/md/settings-input-antenna.d.ts create mode 100644 react-icons/md/settings-input-component.d.ts create mode 100644 react-icons/md/settings-input-composite.d.ts create mode 100644 react-icons/md/settings-input-hdmi.d.ts create mode 100644 react-icons/md/settings-input-svideo.d.ts create mode 100644 react-icons/md/settings-overscan.d.ts create mode 100644 react-icons/md/settings-phone.d.ts create mode 100644 react-icons/md/settings-power.d.ts create mode 100644 react-icons/md/settings-remote.d.ts create mode 100644 react-icons/md/settings-system-daydream.d.ts create mode 100644 react-icons/md/settings-voice.d.ts create mode 100644 react-icons/md/settings.d.ts create mode 100644 react-icons/md/share.d.ts create mode 100644 react-icons/md/shop-two.d.ts create mode 100644 react-icons/md/shop.d.ts create mode 100644 react-icons/md/shopping-basket.d.ts create mode 100644 react-icons/md/shopping-cart.d.ts create mode 100644 react-icons/md/short-text.d.ts create mode 100644 react-icons/md/show-chart.d.ts create mode 100644 react-icons/md/shuffle.d.ts create mode 100644 react-icons/md/signal-cellular-4-bar.d.ts create mode 100644 react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts create mode 100644 react-icons/md/signal-cellular-no-sim.d.ts create mode 100644 react-icons/md/signal-cellular-null.d.ts create mode 100644 react-icons/md/signal-cellular-off.d.ts create mode 100644 react-icons/md/signal-wifi-4-bar-lock.d.ts create mode 100644 react-icons/md/signal-wifi-4-bar.d.ts create mode 100644 react-icons/md/signal-wifi-off.d.ts create mode 100644 react-icons/md/sim-card-alert.d.ts create mode 100644 react-icons/md/sim-card.d.ts create mode 100644 react-icons/md/skip-next.d.ts create mode 100644 react-icons/md/skip-previous.d.ts create mode 100644 react-icons/md/slideshow.d.ts create mode 100644 react-icons/md/slow-motion-video.d.ts create mode 100644 react-icons/md/smartphone.d.ts create mode 100644 react-icons/md/smoke-free.d.ts create mode 100644 react-icons/md/smoking-rooms.d.ts create mode 100644 react-icons/md/sms-failed.d.ts create mode 100644 react-icons/md/sms.d.ts create mode 100644 react-icons/md/snooze.d.ts create mode 100644 react-icons/md/sort-by-alpha.d.ts create mode 100644 react-icons/md/sort.d.ts create mode 100644 react-icons/md/spa.d.ts create mode 100644 react-icons/md/space-bar.d.ts create mode 100644 react-icons/md/speaker-group.d.ts create mode 100644 react-icons/md/speaker-notes-off.d.ts create mode 100644 react-icons/md/speaker-notes.d.ts create mode 100644 react-icons/md/speaker-phone.d.ts create mode 100644 react-icons/md/speaker.d.ts create mode 100644 react-icons/md/spellcheck.d.ts create mode 100644 react-icons/md/star-border.d.ts create mode 100644 react-icons/md/star-half.d.ts create mode 100644 react-icons/md/star-outline.d.ts create mode 100644 react-icons/md/star.d.ts create mode 100644 react-icons/md/stars.d.ts create mode 100644 react-icons/md/stay-current-landscape.d.ts create mode 100644 react-icons/md/stay-current-portrait.d.ts create mode 100644 react-icons/md/stay-primary-landscape.d.ts create mode 100644 react-icons/md/stay-primary-portrait.d.ts create mode 100644 react-icons/md/stop-screen-share.d.ts create mode 100644 react-icons/md/stop.d.ts create mode 100644 react-icons/md/storage.d.ts create mode 100644 react-icons/md/store-mall-directory.d.ts create mode 100644 react-icons/md/store.d.ts create mode 100644 react-icons/md/straighten.d.ts create mode 100644 react-icons/md/streetview.d.ts create mode 100644 react-icons/md/strikethrough-s.d.ts create mode 100644 react-icons/md/style.d.ts create mode 100644 react-icons/md/subdirectory-arrow-left.d.ts create mode 100644 react-icons/md/subdirectory-arrow-right.d.ts create mode 100644 react-icons/md/subject.d.ts create mode 100644 react-icons/md/subscriptions.d.ts create mode 100644 react-icons/md/subtitles.d.ts create mode 100644 react-icons/md/subway.d.ts create mode 100644 react-icons/md/supervisor-account.d.ts create mode 100644 react-icons/md/surround-sound.d.ts create mode 100644 react-icons/md/swap-calls.d.ts create mode 100644 react-icons/md/swap-horiz.d.ts create mode 100644 react-icons/md/swap-vert.d.ts create mode 100644 react-icons/md/swap-vertical-circle.d.ts create mode 100644 react-icons/md/switch-camera.d.ts create mode 100644 react-icons/md/switch-video.d.ts create mode 100644 react-icons/md/sync-disabled.d.ts create mode 100644 react-icons/md/sync-problem.d.ts create mode 100644 react-icons/md/sync.d.ts create mode 100644 react-icons/md/system-update-alt.d.ts create mode 100644 react-icons/md/system-update.d.ts create mode 100644 react-icons/md/tab-unselected.d.ts create mode 100644 react-icons/md/tab.d.ts create mode 100644 react-icons/md/tablet-android.d.ts create mode 100644 react-icons/md/tablet-mac.d.ts create mode 100644 react-icons/md/tablet.d.ts create mode 100644 react-icons/md/tag-faces.d.ts create mode 100644 react-icons/md/tap-and-play.d.ts create mode 100644 react-icons/md/terrain.d.ts create mode 100644 react-icons/md/text-fields.d.ts create mode 100644 react-icons/md/text-format.d.ts create mode 100644 react-icons/md/textsms.d.ts create mode 100644 react-icons/md/texture.d.ts create mode 100644 react-icons/md/theaters.d.ts create mode 100644 react-icons/md/thumb-down.d.ts create mode 100644 react-icons/md/thumb-up.d.ts create mode 100644 react-icons/md/thumbs-up-down.d.ts create mode 100644 react-icons/md/time-to-leave.d.ts create mode 100644 react-icons/md/timelapse.d.ts create mode 100644 react-icons/md/timeline.d.ts create mode 100644 react-icons/md/timer-10.d.ts create mode 100644 react-icons/md/timer-3.d.ts create mode 100644 react-icons/md/timer-off.d.ts create mode 100644 react-icons/md/timer.d.ts create mode 100644 react-icons/md/title.d.ts create mode 100644 react-icons/md/toc.d.ts create mode 100644 react-icons/md/today.d.ts create mode 100644 react-icons/md/toll.d.ts create mode 100644 react-icons/md/tonality.d.ts create mode 100644 react-icons/md/touch-app.d.ts create mode 100644 react-icons/md/toys.d.ts create mode 100644 react-icons/md/track-changes.d.ts create mode 100644 react-icons/md/traffic.d.ts create mode 100644 react-icons/md/train.d.ts create mode 100644 react-icons/md/tram.d.ts create mode 100644 react-icons/md/transfer-within-a-station.d.ts create mode 100644 react-icons/md/transform.d.ts create mode 100644 react-icons/md/translate.d.ts create mode 100644 react-icons/md/trending-down.d.ts create mode 100644 react-icons/md/trending-flat.d.ts create mode 100644 react-icons/md/trending-neutral.d.ts create mode 100644 react-icons/md/trending-up.d.ts create mode 100644 react-icons/md/tune.d.ts create mode 100644 react-icons/md/turned-in-not.d.ts create mode 100644 react-icons/md/turned-in.d.ts create mode 100644 react-icons/md/tv.d.ts create mode 100644 react-icons/md/unarchive.d.ts create mode 100644 react-icons/md/undo.d.ts create mode 100644 react-icons/md/unfold-less.d.ts create mode 100644 react-icons/md/unfold-more.d.ts create mode 100644 react-icons/md/update.d.ts create mode 100644 react-icons/md/usb.d.ts create mode 100644 react-icons/md/verified-user.d.ts create mode 100644 react-icons/md/vertical-align-bottom.d.ts create mode 100644 react-icons/md/vertical-align-center.d.ts create mode 100644 react-icons/md/vertical-align-top.d.ts create mode 100644 react-icons/md/vibration.d.ts create mode 100644 react-icons/md/video-call.d.ts create mode 100644 react-icons/md/video-collection.d.ts create mode 100644 react-icons/md/video-label.d.ts create mode 100644 react-icons/md/video-library.d.ts create mode 100644 react-icons/md/videocam-off.d.ts create mode 100644 react-icons/md/videocam.d.ts create mode 100644 react-icons/md/videogame-asset.d.ts create mode 100644 react-icons/md/view-agenda.d.ts create mode 100644 react-icons/md/view-array.d.ts create mode 100644 react-icons/md/view-carousel.d.ts create mode 100644 react-icons/md/view-column.d.ts create mode 100644 react-icons/md/view-comfortable.d.ts create mode 100644 react-icons/md/view-comfy.d.ts create mode 100644 react-icons/md/view-compact.d.ts create mode 100644 react-icons/md/view-day.d.ts create mode 100644 react-icons/md/view-headline.d.ts create mode 100644 react-icons/md/view-list.d.ts create mode 100644 react-icons/md/view-module.d.ts create mode 100644 react-icons/md/view-quilt.d.ts create mode 100644 react-icons/md/view-stream.d.ts create mode 100644 react-icons/md/view-week.d.ts create mode 100644 react-icons/md/vignette.d.ts create mode 100644 react-icons/md/visibility-off.d.ts create mode 100644 react-icons/md/visibility.d.ts create mode 100644 react-icons/md/voice-chat.d.ts create mode 100644 react-icons/md/voicemail.d.ts create mode 100644 react-icons/md/volume-down.d.ts create mode 100644 react-icons/md/volume-mute.d.ts create mode 100644 react-icons/md/volume-off.d.ts create mode 100644 react-icons/md/volume-up.d.ts create mode 100644 react-icons/md/vpn-key.d.ts create mode 100644 react-icons/md/vpn-lock.d.ts create mode 100644 react-icons/md/wallpaper.d.ts create mode 100644 react-icons/md/warning.d.ts create mode 100644 react-icons/md/watch-later.d.ts create mode 100644 react-icons/md/watch.d.ts create mode 100644 react-icons/md/wb-auto.d.ts create mode 100644 react-icons/md/wb-cloudy.d.ts create mode 100644 react-icons/md/wb-incandescent.d.ts create mode 100644 react-icons/md/wb-iridescent.d.ts create mode 100644 react-icons/md/wb-sunny.d.ts create mode 100644 react-icons/md/wc.d.ts create mode 100644 react-icons/md/web-asset.d.ts create mode 100644 react-icons/md/web.d.ts create mode 100644 react-icons/md/weekend.d.ts create mode 100644 react-icons/md/whatshot.d.ts create mode 100644 react-icons/md/widgets.d.ts create mode 100644 react-icons/md/wifi-lock.d.ts create mode 100644 react-icons/md/wifi-tethering.d.ts create mode 100644 react-icons/md/wifi.d.ts create mode 100644 react-icons/md/work.d.ts create mode 100644 react-icons/md/wrap-text.d.ts create mode 100644 react-icons/md/youtube-searched-for.d.ts create mode 100644 react-icons/md/zoom-in.d.ts create mode 100644 react-icons/md/zoom-out-map.d.ts create mode 100644 react-icons/md/zoom-out.d.ts create mode 100644 react-icons/react-icons-tests.tsx create mode 100644 react-icons/ti/adjust-brightness.d.ts create mode 100644 react-icons/ti/adjust-contrast.d.ts create mode 100644 react-icons/ti/anchor-outline.d.ts create mode 100644 react-icons/ti/anchor.d.ts create mode 100644 react-icons/ti/archive.d.ts create mode 100644 react-icons/ti/arrow-back-outline.d.ts create mode 100644 react-icons/ti/arrow-back.d.ts create mode 100644 react-icons/ti/arrow-down-outline.d.ts create mode 100644 react-icons/ti/arrow-down-thick.d.ts create mode 100644 react-icons/ti/arrow-down.d.ts create mode 100644 react-icons/ti/arrow-forward-outline.d.ts create mode 100644 react-icons/ti/arrow-forward.d.ts create mode 100644 react-icons/ti/arrow-left-outline.d.ts create mode 100644 react-icons/ti/arrow-left-thick.d.ts create mode 100644 react-icons/ti/arrow-left.d.ts create mode 100644 react-icons/ti/arrow-loop-outline.d.ts create mode 100644 react-icons/ti/arrow-loop.d.ts create mode 100644 react-icons/ti/arrow-maximise-outline.d.ts create mode 100644 react-icons/ti/arrow-maximise.d.ts create mode 100644 react-icons/ti/arrow-minimise-outline.d.ts create mode 100644 react-icons/ti/arrow-minimise.d.ts create mode 100644 react-icons/ti/arrow-move-outline.d.ts create mode 100644 react-icons/ti/arrow-move.d.ts create mode 100644 react-icons/ti/arrow-repeat-outline.d.ts create mode 100644 react-icons/ti/arrow-repeat.d.ts create mode 100644 react-icons/ti/arrow-right-outline.d.ts create mode 100644 react-icons/ti/arrow-right-thick.d.ts create mode 100644 react-icons/ti/arrow-right.d.ts create mode 100644 react-icons/ti/arrow-shuffle.d.ts create mode 100644 react-icons/ti/arrow-sorted-down.d.ts create mode 100644 react-icons/ti/arrow-sorted-up.d.ts create mode 100644 react-icons/ti/arrow-sync-outline.d.ts create mode 100644 react-icons/ti/arrow-sync.d.ts create mode 100644 react-icons/ti/arrow-unsorted.d.ts create mode 100644 react-icons/ti/arrow-up-outline.d.ts create mode 100644 react-icons/ti/arrow-up-thick.d.ts create mode 100644 react-icons/ti/arrow-up.d.ts create mode 100644 react-icons/ti/at.d.ts create mode 100644 react-icons/ti/attachment-outline.d.ts create mode 100644 react-icons/ti/attachment.d.ts create mode 100644 react-icons/ti/backspace-outline.d.ts create mode 100644 react-icons/ti/backspace.d.ts create mode 100644 react-icons/ti/battery-charge.d.ts create mode 100644 react-icons/ti/battery-full.d.ts create mode 100644 react-icons/ti/battery-high.d.ts create mode 100644 react-icons/ti/battery-low.d.ts create mode 100644 react-icons/ti/battery-mid.d.ts create mode 100644 react-icons/ti/beaker.d.ts create mode 100644 react-icons/ti/beer.d.ts create mode 100644 react-icons/ti/bell.d.ts create mode 100644 react-icons/ti/book.d.ts create mode 100644 react-icons/ti/bookmark.d.ts create mode 100644 react-icons/ti/briefcase.d.ts create mode 100644 react-icons/ti/brush.d.ts create mode 100644 react-icons/ti/business-card.d.ts create mode 100644 react-icons/ti/calculator.d.ts create mode 100644 react-icons/ti/calendar-outline.d.ts create mode 100644 react-icons/ti/calendar.d.ts create mode 100644 react-icons/ti/calender-outline.d.ts create mode 100644 react-icons/ti/calender.d.ts create mode 100644 react-icons/ti/camera-outline.d.ts create mode 100644 react-icons/ti/camera.d.ts create mode 100644 react-icons/ti/cancel-outline.d.ts create mode 100644 react-icons/ti/cancel.d.ts create mode 100644 react-icons/ti/chart-area-outline.d.ts create mode 100644 react-icons/ti/chart-area.d.ts create mode 100644 react-icons/ti/chart-bar-outline.d.ts create mode 100644 react-icons/ti/chart-bar.d.ts create mode 100644 react-icons/ti/chart-line-outline.d.ts create mode 100644 react-icons/ti/chart-line.d.ts create mode 100644 react-icons/ti/chart-pie-outline.d.ts create mode 100644 react-icons/ti/chart-pie.d.ts create mode 100644 react-icons/ti/chevron-left-outline.d.ts create mode 100644 react-icons/ti/chevron-left.d.ts create mode 100644 react-icons/ti/chevron-right-outline.d.ts create mode 100644 react-icons/ti/chevron-right.d.ts create mode 100644 react-icons/ti/clipboard.d.ts create mode 100644 react-icons/ti/cloud-storage-outline.d.ts create mode 100644 react-icons/ti/cloud-storage.d.ts create mode 100644 react-icons/ti/code-outline.d.ts create mode 100644 react-icons/ti/code.d.ts create mode 100644 react-icons/ti/coffee.d.ts create mode 100644 react-icons/ti/cog-outline.d.ts create mode 100644 react-icons/ti/cog.d.ts create mode 100644 react-icons/ti/compass.d.ts create mode 100644 react-icons/ti/contacts.d.ts create mode 100644 react-icons/ti/credit-card.d.ts create mode 100644 react-icons/ti/cross.d.ts create mode 100644 react-icons/ti/css3.d.ts create mode 100644 react-icons/ti/database.d.ts create mode 100644 react-icons/ti/delete-outline.d.ts create mode 100644 react-icons/ti/delete.d.ts create mode 100644 react-icons/ti/device-desktop.d.ts create mode 100644 react-icons/ti/device-laptop.d.ts create mode 100644 react-icons/ti/device-phone.d.ts create mode 100644 react-icons/ti/device-tablet.d.ts create mode 100644 react-icons/ti/directions.d.ts create mode 100644 react-icons/ti/divide-outline.d.ts create mode 100644 react-icons/ti/divide.d.ts create mode 100644 react-icons/ti/document-add.d.ts create mode 100644 react-icons/ti/document-delete.d.ts create mode 100644 react-icons/ti/document-text.d.ts create mode 100644 react-icons/ti/document.d.ts create mode 100644 react-icons/ti/download-outline.d.ts create mode 100644 react-icons/ti/download.d.ts create mode 100644 react-icons/ti/dropbox.d.ts create mode 100644 react-icons/ti/edit.d.ts create mode 100644 react-icons/ti/eject-outline.d.ts create mode 100644 react-icons/ti/eject.d.ts create mode 100644 react-icons/ti/equals-outline.d.ts create mode 100644 react-icons/ti/equals.d.ts create mode 100644 react-icons/ti/export-outline.d.ts create mode 100644 react-icons/ti/export.d.ts create mode 100644 react-icons/ti/eye-outline.d.ts create mode 100644 react-icons/ti/eye.d.ts create mode 100644 react-icons/ti/feather.d.ts create mode 100644 react-icons/ti/film.d.ts create mode 100644 react-icons/ti/filter.d.ts create mode 100644 react-icons/ti/flag-outline.d.ts create mode 100644 react-icons/ti/flag.d.ts create mode 100644 react-icons/ti/flash-outline.d.ts create mode 100644 react-icons/ti/flash.d.ts create mode 100644 react-icons/ti/flow-children.d.ts create mode 100644 react-icons/ti/flow-merge.d.ts create mode 100644 react-icons/ti/flow-parallel.d.ts create mode 100644 react-icons/ti/flow-switch.d.ts create mode 100644 react-icons/ti/folder-add.d.ts create mode 100644 react-icons/ti/folder-delete.d.ts create mode 100644 react-icons/ti/folder-open.d.ts create mode 100644 react-icons/ti/folder.d.ts create mode 100644 react-icons/ti/gift.d.ts create mode 100644 react-icons/ti/globe-outline.d.ts create mode 100644 react-icons/ti/globe.d.ts create mode 100644 react-icons/ti/group-outline.d.ts create mode 100644 react-icons/ti/group.d.ts create mode 100644 react-icons/ti/headphones.d.ts create mode 100644 react-icons/ti/heart-full-outline.d.ts create mode 100644 react-icons/ti/heart-half-outline.d.ts create mode 100644 react-icons/ti/heart-outline.d.ts create mode 100644 react-icons/ti/heart.d.ts create mode 100644 react-icons/ti/home-outline.d.ts create mode 100644 react-icons/ti/home.d.ts create mode 100644 react-icons/ti/html5.d.ts create mode 100644 react-icons/ti/image-outline.d.ts create mode 100644 react-icons/ti/image.d.ts create mode 100644 react-icons/ti/index.d.ts create mode 100644 react-icons/ti/infinity-outline.d.ts create mode 100644 react-icons/ti/infinity.d.ts create mode 100644 react-icons/ti/info-large-outline.d.ts create mode 100644 react-icons/ti/info-large.d.ts create mode 100644 react-icons/ti/info-outline.d.ts create mode 100644 react-icons/ti/info.d.ts create mode 100644 react-icons/ti/input-checked-outline.d.ts create mode 100644 react-icons/ti/input-checked.d.ts create mode 100644 react-icons/ti/key-outline.d.ts create mode 100644 react-icons/ti/key.d.ts create mode 100644 react-icons/ti/keyboard.d.ts create mode 100644 react-icons/ti/leaf.d.ts create mode 100644 react-icons/ti/lightbulb.d.ts create mode 100644 react-icons/ti/link-outline.d.ts create mode 100644 react-icons/ti/link.d.ts create mode 100644 react-icons/ti/location-arrow-outline.d.ts create mode 100644 react-icons/ti/location-arrow.d.ts create mode 100644 react-icons/ti/location-outline.d.ts create mode 100644 react-icons/ti/location.d.ts create mode 100644 react-icons/ti/lock-closed-outline.d.ts create mode 100644 react-icons/ti/lock-closed.d.ts create mode 100644 react-icons/ti/lock-open-outline.d.ts create mode 100644 react-icons/ti/lock-open.d.ts create mode 100644 react-icons/ti/mail.d.ts create mode 100644 react-icons/ti/map.d.ts create mode 100644 react-icons/ti/media-eject-outline.d.ts create mode 100644 react-icons/ti/media-eject.d.ts create mode 100644 react-icons/ti/media-fast-forward-outline.d.ts create mode 100644 react-icons/ti/media-fast-forward.d.ts create mode 100644 react-icons/ti/media-pause-outline.d.ts create mode 100644 react-icons/ti/media-pause.d.ts create mode 100644 react-icons/ti/media-play-outline.d.ts create mode 100644 react-icons/ti/media-play-reverse-outline.d.ts create mode 100644 react-icons/ti/media-play-reverse.d.ts create mode 100644 react-icons/ti/media-play.d.ts create mode 100644 react-icons/ti/media-record-outline.d.ts create mode 100644 react-icons/ti/media-record.d.ts create mode 100644 react-icons/ti/media-rewind-outline.d.ts create mode 100644 react-icons/ti/media-rewind.d.ts create mode 100644 react-icons/ti/media-stop-outline.d.ts create mode 100644 react-icons/ti/media-stop.d.ts create mode 100644 react-icons/ti/message-typing.d.ts create mode 100644 react-icons/ti/message.d.ts create mode 100644 react-icons/ti/messages.d.ts create mode 100644 react-icons/ti/microphone-outline.d.ts create mode 100644 react-icons/ti/microphone.d.ts create mode 100644 react-icons/ti/minus-outline.d.ts create mode 100644 react-icons/ti/minus.d.ts create mode 100644 react-icons/ti/mortar-board.d.ts create mode 100644 react-icons/ti/news.d.ts create mode 100644 react-icons/ti/notes-outline.d.ts create mode 100644 react-icons/ti/notes.d.ts create mode 100644 react-icons/ti/pen.d.ts create mode 100644 react-icons/ti/pencil.d.ts create mode 100644 react-icons/ti/phone-outline.d.ts create mode 100644 react-icons/ti/phone.d.ts create mode 100644 react-icons/ti/pi-outline.d.ts create mode 100644 react-icons/ti/pi.d.ts create mode 100644 react-icons/ti/pin-outline.d.ts create mode 100644 react-icons/ti/pin.d.ts create mode 100644 react-icons/ti/pipette.d.ts create mode 100644 react-icons/ti/plane-outline.d.ts create mode 100644 react-icons/ti/plane.d.ts create mode 100644 react-icons/ti/plug.d.ts create mode 100644 react-icons/ti/plus-outline.d.ts create mode 100644 react-icons/ti/plus.d.ts create mode 100644 react-icons/ti/point-of-interest-outline.d.ts create mode 100644 react-icons/ti/point-of-interest.d.ts create mode 100644 react-icons/ti/power-outline.d.ts create mode 100644 react-icons/ti/power.d.ts create mode 100644 react-icons/ti/printer.d.ts create mode 100644 react-icons/ti/puzzle-outline.d.ts create mode 100644 react-icons/ti/puzzle.d.ts create mode 100644 react-icons/ti/radar-outline.d.ts create mode 100644 react-icons/ti/radar.d.ts create mode 100644 react-icons/ti/refresh-outline.d.ts create mode 100644 react-icons/ti/refresh.d.ts create mode 100644 react-icons/ti/rss-outline.d.ts create mode 100644 react-icons/ti/rss.d.ts create mode 100644 react-icons/ti/scissors-outline.d.ts create mode 100644 react-icons/ti/scissors.d.ts create mode 100644 react-icons/ti/shopping-bag.d.ts create mode 100644 react-icons/ti/shopping-cart.d.ts create mode 100644 react-icons/ti/social-at-circular.d.ts create mode 100644 react-icons/ti/social-dribbble-circular.d.ts create mode 100644 react-icons/ti/social-dribbble.d.ts create mode 100644 react-icons/ti/social-facebook-circular.d.ts create mode 100644 react-icons/ti/social-facebook.d.ts create mode 100644 react-icons/ti/social-flickr-circular.d.ts create mode 100644 react-icons/ti/social-flickr.d.ts create mode 100644 react-icons/ti/social-github-circular.d.ts create mode 100644 react-icons/ti/social-github.d.ts create mode 100644 react-icons/ti/social-google-plus-circular.d.ts create mode 100644 react-icons/ti/social-google-plus.d.ts create mode 100644 react-icons/ti/social-instagram-circular.d.ts create mode 100644 react-icons/ti/social-instagram.d.ts create mode 100644 react-icons/ti/social-last-fm-circular.d.ts create mode 100644 react-icons/ti/social-last-fm.d.ts create mode 100644 react-icons/ti/social-linkedin-circular.d.ts create mode 100644 react-icons/ti/social-linkedin.d.ts create mode 100644 react-icons/ti/social-pinterest-circular.d.ts create mode 100644 react-icons/ti/social-pinterest.d.ts create mode 100644 react-icons/ti/social-skype-outline.d.ts create mode 100644 react-icons/ti/social-skype.d.ts create mode 100644 react-icons/ti/social-tumbler-circular.d.ts create mode 100644 react-icons/ti/social-tumbler.d.ts create mode 100644 react-icons/ti/social-twitter-circular.d.ts create mode 100644 react-icons/ti/social-twitter.d.ts create mode 100644 react-icons/ti/social-vimeo-circular.d.ts create mode 100644 react-icons/ti/social-vimeo.d.ts create mode 100644 react-icons/ti/social-youtube-circular.d.ts create mode 100644 react-icons/ti/social-youtube.d.ts create mode 100644 react-icons/ti/sort-alphabetically-outline.d.ts create mode 100644 react-icons/ti/sort-alphabetically.d.ts create mode 100644 react-icons/ti/sort-numerically-outline.d.ts create mode 100644 react-icons/ti/sort-numerically.d.ts create mode 100644 react-icons/ti/spanner-outline.d.ts create mode 100644 react-icons/ti/spanner.d.ts create mode 100644 react-icons/ti/spiral.d.ts create mode 100644 react-icons/ti/star-full-outline.d.ts create mode 100644 react-icons/ti/star-half-outline.d.ts create mode 100644 react-icons/ti/star-half.d.ts create mode 100644 react-icons/ti/star-outline.d.ts create mode 100644 react-icons/ti/star.d.ts create mode 100644 react-icons/ti/starburst-outline.d.ts create mode 100644 react-icons/ti/starburst.d.ts create mode 100644 react-icons/ti/stopwatch.d.ts create mode 100644 react-icons/ti/support.d.ts create mode 100644 react-icons/ti/tabs-outline.d.ts create mode 100644 react-icons/ti/tag.d.ts create mode 100644 react-icons/ti/tags.d.ts create mode 100644 react-icons/ti/th-large-outline.d.ts create mode 100644 react-icons/ti/th-large.d.ts create mode 100644 react-icons/ti/th-list-outline.d.ts create mode 100644 react-icons/ti/th-list.d.ts create mode 100644 react-icons/ti/th-menu-outline.d.ts create mode 100644 react-icons/ti/th-menu.d.ts create mode 100644 react-icons/ti/th-small-outline.d.ts create mode 100644 react-icons/ti/th-small.d.ts create mode 100644 react-icons/ti/thermometer.d.ts create mode 100644 react-icons/ti/thumbs-down.d.ts create mode 100644 react-icons/ti/thumbs-ok.d.ts create mode 100644 react-icons/ti/thumbs-up.d.ts create mode 100644 react-icons/ti/tick-outline.d.ts create mode 100644 react-icons/ti/tick.d.ts create mode 100644 react-icons/ti/ticket.d.ts create mode 100644 react-icons/ti/time.d.ts create mode 100644 react-icons/ti/times-outline.d.ts create mode 100644 react-icons/ti/times.d.ts create mode 100644 react-icons/ti/trash.d.ts create mode 100644 react-icons/ti/tree.d.ts create mode 100644 react-icons/ti/upload-outline.d.ts create mode 100644 react-icons/ti/upload.d.ts create mode 100644 react-icons/ti/user-add-outline.d.ts create mode 100644 react-icons/ti/user-add.d.ts create mode 100644 react-icons/ti/user-delete-outline.d.ts create mode 100644 react-icons/ti/user-delete.d.ts create mode 100644 react-icons/ti/user-outline.d.ts create mode 100644 react-icons/ti/user.d.ts create mode 100644 react-icons/ti/vendor-android.d.ts create mode 100644 react-icons/ti/vendor-apple.d.ts create mode 100644 react-icons/ti/vendor-microsoft.d.ts create mode 100644 react-icons/ti/video-outline.d.ts create mode 100644 react-icons/ti/video.d.ts create mode 100644 react-icons/ti/volume-down.d.ts create mode 100644 react-icons/ti/volume-mute.d.ts create mode 100644 react-icons/ti/volume-up.d.ts create mode 100644 react-icons/ti/volume.d.ts create mode 100644 react-icons/ti/warning-outline.d.ts create mode 100644 react-icons/ti/warning.d.ts create mode 100644 react-icons/ti/watch.d.ts create mode 100644 react-icons/ti/waves-outline.d.ts create mode 100644 react-icons/ti/waves.d.ts create mode 100644 react-icons/ti/weather-cloudy.d.ts create mode 100644 react-icons/ti/weather-downpour.d.ts create mode 100644 react-icons/ti/weather-night.d.ts create mode 100644 react-icons/ti/weather-partly-sunny.d.ts create mode 100644 react-icons/ti/weather-shower.d.ts create mode 100644 react-icons/ti/weather-snow.d.ts create mode 100644 react-icons/ti/weather-stormy.d.ts create mode 100644 react-icons/ti/weather-sunny.d.ts create mode 100644 react-icons/ti/weather-windy-cloudy.d.ts create mode 100644 react-icons/ti/weather-windy.d.ts create mode 100644 react-icons/ti/wi-fi-outline.d.ts create mode 100644 react-icons/ti/wi-fi.d.ts create mode 100644 react-icons/ti/wine.d.ts create mode 100644 react-icons/ti/world-outline.d.ts create mode 100644 react-icons/ti/world.d.ts create mode 100644 react-icons/ti/zoom-in-outline.d.ts create mode 100644 react-icons/ti/zoom-in.d.ts create mode 100644 react-icons/ti/zoom-out-outline.d.ts create mode 100644 react-icons/ti/zoom-out.d.ts create mode 100644 react-icons/ti/zoom-outline.d.ts create mode 100644 react-icons/ti/zoom.d.ts create mode 100644 react-icons/tsconfig.json create mode 100644 react-icons/tslint.json diff --git a/react-icon-base/index.d.ts b/react-icon-base/index.d.ts new file mode 100644 index 0000000000..1db440805e --- /dev/null +++ b/react-icon-base/index.d.ts @@ -0,0 +1,16 @@ +// Type definitions for react-icon-base 2.0 +// Project: https://github.com/gorangajic/react-icon-base#readme +// Definitions by: Alexandre Paré +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +import * as React from 'react'; + +export interface IconBaseProps { + color?: string; + size?: string | number; + style?: React.CSSProperties; +} + +export default class IconBase extends React.Component { + +} \ No newline at end of file diff --git a/react-icon-base/react-icon-base-tests.tsx b/react-icon-base/react-icon-base-tests.tsx new file mode 100644 index 0000000000..68388f69d6 --- /dev/null +++ b/react-icon-base/react-icon-base-tests.tsx @@ -0,0 +1,4 @@ +import * as React from 'react'; +import IconBase from 'react-icon-base'; + +export default ; \ No newline at end of file diff --git a/react-icon-base/tsconfig.json b/react-icon-base/tsconfig.json new file mode 100644 index 0000000000..e4de4aa67e --- /dev/null +++ b/react-icon-base/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "jsx": "react", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "react-icon-base-tests.tsx" + ] +} diff --git a/react-icon-base/tslint.json b/react-icon-base/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/react-icon-base/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } diff --git a/react-icons/fa/500px.d.ts b/react-icons/fa/500px.d.ts new file mode 100644 index 0000000000..6cd775910c --- /dev/null +++ b/react-icons/fa/500px.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class Fa500px extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/adjust.d.ts b/react-icons/fa/adjust.d.ts new file mode 100644 index 0000000000..0e4a87e7da --- /dev/null +++ b/react-icons/fa/adjust.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAdjust extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/adn.d.ts b/react-icons/fa/adn.d.ts new file mode 100644 index 0000000000..2f7f3aa354 --- /dev/null +++ b/react-icons/fa/adn.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAdn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-center.d.ts b/react-icons/fa/align-center.d.ts new file mode 100644 index 0000000000..9b829faed4 --- /dev/null +++ b/react-icons/fa/align-center.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-justify.d.ts b/react-icons/fa/align-justify.d.ts new file mode 100644 index 0000000000..60f8ba2b5e --- /dev/null +++ b/react-icons/fa/align-justify.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAlignJustify extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-left.d.ts b/react-icons/fa/align-left.d.ts new file mode 100644 index 0000000000..b0e9810c70 --- /dev/null +++ b/react-icons/fa/align-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAlignLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-right.d.ts b/react-icons/fa/align-right.d.ts new file mode 100644 index 0000000000..c76cc23e94 --- /dev/null +++ b/react-icons/fa/align-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAlignRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/amazon.d.ts b/react-icons/fa/amazon.d.ts new file mode 100644 index 0000000000..62ad6f65d4 --- /dev/null +++ b/react-icons/fa/amazon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAmazon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ambulance.d.ts b/react-icons/fa/ambulance.d.ts new file mode 100644 index 0000000000..c98200e217 --- /dev/null +++ b/react-icons/fa/ambulance.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAmbulance extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/american-sign-language-interpreting.d.ts b/react-icons/fa/american-sign-language-interpreting.d.ts new file mode 100644 index 0000000000..9dbc9abf90 --- /dev/null +++ b/react-icons/fa/american-sign-language-interpreting.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAmericanSignLanguageInterpreting extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/anchor.d.ts b/react-icons/fa/anchor.d.ts new file mode 100644 index 0000000000..73d2e7f091 --- /dev/null +++ b/react-icons/fa/anchor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAnchor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/android.d.ts b/react-icons/fa/android.d.ts new file mode 100644 index 0000000000..f465e726fa --- /dev/null +++ b/react-icons/fa/android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angellist.d.ts b/react-icons/fa/angellist.d.ts new file mode 100644 index 0000000000..8a96a58db6 --- /dev/null +++ b/react-icons/fa/angellist.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngellist extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-down.d.ts b/react-icons/fa/angle-double-down.d.ts new file mode 100644 index 0000000000..93cdff317c --- /dev/null +++ b/react-icons/fa/angle-double-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleDoubleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-left.d.ts b/react-icons/fa/angle-double-left.d.ts new file mode 100644 index 0000000000..c2787320e9 --- /dev/null +++ b/react-icons/fa/angle-double-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleDoubleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-right.d.ts b/react-icons/fa/angle-double-right.d.ts new file mode 100644 index 0000000000..4456e6f242 --- /dev/null +++ b/react-icons/fa/angle-double-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleDoubleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-up.d.ts b/react-icons/fa/angle-double-up.d.ts new file mode 100644 index 0000000000..267158ffd0 --- /dev/null +++ b/react-icons/fa/angle-double-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleDoubleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-down.d.ts b/react-icons/fa/angle-down.d.ts new file mode 100644 index 0000000000..6150f8506c --- /dev/null +++ b/react-icons/fa/angle-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-left.d.ts b/react-icons/fa/angle-left.d.ts new file mode 100644 index 0000000000..ae1d06beb4 --- /dev/null +++ b/react-icons/fa/angle-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-right.d.ts b/react-icons/fa/angle-right.d.ts new file mode 100644 index 0000000000..8980ed305c --- /dev/null +++ b/react-icons/fa/angle-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-up.d.ts b/react-icons/fa/angle-up.d.ts new file mode 100644 index 0000000000..7a7bcc8330 --- /dev/null +++ b/react-icons/fa/angle-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAngleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/apple.d.ts b/react-icons/fa/apple.d.ts new file mode 100644 index 0000000000..868b275541 --- /dev/null +++ b/react-icons/fa/apple.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/archive.d.ts b/react-icons/fa/archive.d.ts new file mode 100644 index 0000000000..661ef707ee --- /dev/null +++ b/react-icons/fa/archive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/area-chart.d.ts b/react-icons/fa/area-chart.d.ts new file mode 100644 index 0000000000..98113bccba --- /dev/null +++ b/react-icons/fa/area-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAreaChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-down.d.ts b/react-icons/fa/arrow-circle-down.d.ts new file mode 100644 index 0000000000..300f9f1602 --- /dev/null +++ b/react-icons/fa/arrow-circle-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-left.d.ts b/react-icons/fa/arrow-circle-left.d.ts new file mode 100644 index 0000000000..d72936b057 --- /dev/null +++ b/react-icons/fa/arrow-circle-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-down.d.ts b/react-icons/fa/arrow-circle-o-down.d.ts new file mode 100644 index 0000000000..56948ff974 --- /dev/null +++ b/react-icons/fa/arrow-circle-o-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-left.d.ts b/react-icons/fa/arrow-circle-o-left.d.ts new file mode 100644 index 0000000000..f9be513faa --- /dev/null +++ b/react-icons/fa/arrow-circle-o-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-right.d.ts b/react-icons/fa/arrow-circle-o-right.d.ts new file mode 100644 index 0000000000..d5d61aae64 --- /dev/null +++ b/react-icons/fa/arrow-circle-o-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-up.d.ts b/react-icons/fa/arrow-circle-o-up.d.ts new file mode 100644 index 0000000000..17f5c6731c --- /dev/null +++ b/react-icons/fa/arrow-circle-o-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-right.d.ts b/react-icons/fa/arrow-circle-right.d.ts new file mode 100644 index 0000000000..7a612f6537 --- /dev/null +++ b/react-icons/fa/arrow-circle-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-up.d.ts b/react-icons/fa/arrow-circle-up.d.ts new file mode 100644 index 0000000000..fcb3000fdd --- /dev/null +++ b/react-icons/fa/arrow-circle-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowCircleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-down.d.ts b/react-icons/fa/arrow-down.d.ts new file mode 100644 index 0000000000..eeae164d95 --- /dev/null +++ b/react-icons/fa/arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-left.d.ts b/react-icons/fa/arrow-left.d.ts new file mode 100644 index 0000000000..298c49a23b --- /dev/null +++ b/react-icons/fa/arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-right.d.ts b/react-icons/fa/arrow-right.d.ts new file mode 100644 index 0000000000..0aa3845323 --- /dev/null +++ b/react-icons/fa/arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-up.d.ts b/react-icons/fa/arrow-up.d.ts new file mode 100644 index 0000000000..d089c3103c --- /dev/null +++ b/react-icons/fa/arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-alt.d.ts b/react-icons/fa/arrows-alt.d.ts new file mode 100644 index 0000000000..d156f801c5 --- /dev/null +++ b/react-icons/fa/arrows-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowsAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-h.d.ts b/react-icons/fa/arrows-h.d.ts new file mode 100644 index 0000000000..99fa527549 --- /dev/null +++ b/react-icons/fa/arrows-h.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowsH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-v.d.ts b/react-icons/fa/arrows-v.d.ts new file mode 100644 index 0000000000..69c4e269b3 --- /dev/null +++ b/react-icons/fa/arrows-v.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrowsV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows.d.ts b/react-icons/fa/arrows.d.ts new file mode 100644 index 0000000000..d598e0db3d --- /dev/null +++ b/react-icons/fa/arrows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaArrows extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/assistive-listening-systems.d.ts b/react-icons/fa/assistive-listening-systems.d.ts new file mode 100644 index 0000000000..55ffe3f911 --- /dev/null +++ b/react-icons/fa/assistive-listening-systems.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAssistiveListeningSystems extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/asterisk.d.ts b/react-icons/fa/asterisk.d.ts new file mode 100644 index 0000000000..01052ec8e5 --- /dev/null +++ b/react-icons/fa/asterisk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAsterisk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/at.d.ts b/react-icons/fa/at.d.ts new file mode 100644 index 0000000000..4c94b320d7 --- /dev/null +++ b/react-icons/fa/at.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/audio-description.d.ts b/react-icons/fa/audio-description.d.ts new file mode 100644 index 0000000000..ecd10e5475 --- /dev/null +++ b/react-icons/fa/audio-description.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAudioDescription extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/automobile.d.ts b/react-icons/fa/automobile.d.ts new file mode 100644 index 0000000000..c60eb85667 --- /dev/null +++ b/react-icons/fa/automobile.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaAutomobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/backward.d.ts b/react-icons/fa/backward.d.ts new file mode 100644 index 0000000000..8115296c03 --- /dev/null +++ b/react-icons/fa/backward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/balance-scale.d.ts b/react-icons/fa/balance-scale.d.ts new file mode 100644 index 0000000000..4e9b4e75b0 --- /dev/null +++ b/react-icons/fa/balance-scale.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBalanceScale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ban.d.ts b/react-icons/fa/ban.d.ts new file mode 100644 index 0000000000..d8fd4b0d89 --- /dev/null +++ b/react-icons/fa/ban.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBan extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bank.d.ts b/react-icons/fa/bank.d.ts new file mode 100644 index 0000000000..9046e5effa --- /dev/null +++ b/react-icons/fa/bank.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBank extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bar-chart.d.ts b/react-icons/fa/bar-chart.d.ts new file mode 100644 index 0000000000..cba898db53 --- /dev/null +++ b/react-icons/fa/bar-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBarChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/barcode.d.ts b/react-icons/fa/barcode.d.ts new file mode 100644 index 0000000000..eea3aaf98a --- /dev/null +++ b/react-icons/fa/barcode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBarcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bars.d.ts b/react-icons/fa/bars.d.ts new file mode 100644 index 0000000000..4488a732b9 --- /dev/null +++ b/react-icons/fa/bars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-0.d.ts b/react-icons/fa/battery-0.d.ts new file mode 100644 index 0000000000..c2ea875221 --- /dev/null +++ b/react-icons/fa/battery-0.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBattery0 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-1.d.ts b/react-icons/fa/battery-1.d.ts new file mode 100644 index 0000000000..21303702b7 --- /dev/null +++ b/react-icons/fa/battery-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBattery1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-2.d.ts b/react-icons/fa/battery-2.d.ts new file mode 100644 index 0000000000..0207db7a4c --- /dev/null +++ b/react-icons/fa/battery-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBattery2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-3.d.ts b/react-icons/fa/battery-3.d.ts new file mode 100644 index 0000000000..33c32bbedd --- /dev/null +++ b/react-icons/fa/battery-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBattery3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-4.d.ts b/react-icons/fa/battery-4.d.ts new file mode 100644 index 0000000000..8830be7d8e --- /dev/null +++ b/react-icons/fa/battery-4.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBattery4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bed.d.ts b/react-icons/fa/bed.d.ts new file mode 100644 index 0000000000..0bbfb2c1d5 --- /dev/null +++ b/react-icons/fa/bed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBed extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/beer.d.ts b/react-icons/fa/beer.d.ts new file mode 100644 index 0000000000..239559f243 --- /dev/null +++ b/react-icons/fa/beer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/behance-square.d.ts b/react-icons/fa/behance-square.d.ts new file mode 100644 index 0000000000..486d309c32 --- /dev/null +++ b/react-icons/fa/behance-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBehanceSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/behance.d.ts b/react-icons/fa/behance.d.ts new file mode 100644 index 0000000000..bd82cba1b8 --- /dev/null +++ b/react-icons/fa/behance.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBehance extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-o.d.ts b/react-icons/fa/bell-o.d.ts new file mode 100644 index 0000000000..30392ecacf --- /dev/null +++ b/react-icons/fa/bell-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBellO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-slash-o.d.ts b/react-icons/fa/bell-slash-o.d.ts new file mode 100644 index 0000000000..295c567873 --- /dev/null +++ b/react-icons/fa/bell-slash-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBellSlashO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-slash.d.ts b/react-icons/fa/bell-slash.d.ts new file mode 100644 index 0000000000..de62f57762 --- /dev/null +++ b/react-icons/fa/bell-slash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBellSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell.d.ts b/react-icons/fa/bell.d.ts new file mode 100644 index 0000000000..39db07e798 --- /dev/null +++ b/react-icons/fa/bell.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bicycle.d.ts b/react-icons/fa/bicycle.d.ts new file mode 100644 index 0000000000..93cd32a9cd --- /dev/null +++ b/react-icons/fa/bicycle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBicycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/binoculars.d.ts b/react-icons/fa/binoculars.d.ts new file mode 100644 index 0000000000..451d30e1a8 --- /dev/null +++ b/react-icons/fa/binoculars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBinoculars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/birthday-cake.d.ts b/react-icons/fa/birthday-cake.d.ts new file mode 100644 index 0000000000..8ec6e7a1de --- /dev/null +++ b/react-icons/fa/birthday-cake.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBirthdayCake extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitbucket-square.d.ts b/react-icons/fa/bitbucket-square.d.ts new file mode 100644 index 0000000000..df5ba215c6 --- /dev/null +++ b/react-icons/fa/bitbucket-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBitbucketSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitbucket.d.ts b/react-icons/fa/bitbucket.d.ts new file mode 100644 index 0000000000..5a7dee2e5b --- /dev/null +++ b/react-icons/fa/bitbucket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBitbucket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitcoin.d.ts b/react-icons/fa/bitcoin.d.ts new file mode 100644 index 0000000000..2fe99d57a9 --- /dev/null +++ b/react-icons/fa/bitcoin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBitcoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/black-tie.d.ts b/react-icons/fa/black-tie.d.ts new file mode 100644 index 0000000000..6cbf29cead --- /dev/null +++ b/react-icons/fa/black-tie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBlackTie extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/blind.d.ts b/react-icons/fa/blind.d.ts new file mode 100644 index 0000000000..ecd53b2942 --- /dev/null +++ b/react-icons/fa/blind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBlind extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bluetooth-b.d.ts b/react-icons/fa/bluetooth-b.d.ts new file mode 100644 index 0000000000..ae448bd815 --- /dev/null +++ b/react-icons/fa/bluetooth-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBluetoothB extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bluetooth.d.ts b/react-icons/fa/bluetooth.d.ts new file mode 100644 index 0000000000..c2bf2683b9 --- /dev/null +++ b/react-icons/fa/bluetooth.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bold.d.ts b/react-icons/fa/bold.d.ts new file mode 100644 index 0000000000..d5565170d0 --- /dev/null +++ b/react-icons/fa/bold.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBold extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bolt.d.ts b/react-icons/fa/bolt.d.ts new file mode 100644 index 0000000000..fb81630317 --- /dev/null +++ b/react-icons/fa/bolt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBolt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bomb.d.ts b/react-icons/fa/bomb.d.ts new file mode 100644 index 0000000000..a7dc0dd78e --- /dev/null +++ b/react-icons/fa/bomb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBomb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/book.d.ts b/react-icons/fa/book.d.ts new file mode 100644 index 0000000000..5455d0c3f2 --- /dev/null +++ b/react-icons/fa/book.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bookmark-o.d.ts b/react-icons/fa/bookmark-o.d.ts new file mode 100644 index 0000000000..fdd1c67a30 --- /dev/null +++ b/react-icons/fa/bookmark-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBookmarkO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bookmark.d.ts b/react-icons/fa/bookmark.d.ts new file mode 100644 index 0000000000..77d3a5c964 --- /dev/null +++ b/react-icons/fa/bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/braille.d.ts b/react-icons/fa/braille.d.ts new file mode 100644 index 0000000000..250384d2d1 --- /dev/null +++ b/react-icons/fa/braille.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBraille extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/briefcase.d.ts b/react-icons/fa/briefcase.d.ts new file mode 100644 index 0000000000..92b9dbb0af --- /dev/null +++ b/react-icons/fa/briefcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bug.d.ts b/react-icons/fa/bug.d.ts new file mode 100644 index 0000000000..eb2fd775ab --- /dev/null +++ b/react-icons/fa/bug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/building-o.d.ts b/react-icons/fa/building-o.d.ts new file mode 100644 index 0000000000..b04346c52e --- /dev/null +++ b/react-icons/fa/building-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBuildingO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/building.d.ts b/react-icons/fa/building.d.ts new file mode 100644 index 0000000000..cffa304417 --- /dev/null +++ b/react-icons/fa/building.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBuilding extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bullhorn.d.ts b/react-icons/fa/bullhorn.d.ts new file mode 100644 index 0000000000..cedec475a5 --- /dev/null +++ b/react-icons/fa/bullhorn.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBullhorn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bullseye.d.ts b/react-icons/fa/bullseye.d.ts new file mode 100644 index 0000000000..f259410d32 --- /dev/null +++ b/react-icons/fa/bullseye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBullseye extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bus.d.ts b/react-icons/fa/bus.d.ts new file mode 100644 index 0000000000..c7e357a168 --- /dev/null +++ b/react-icons/fa/bus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/buysellads.d.ts b/react-icons/fa/buysellads.d.ts new file mode 100644 index 0000000000..0a2b6792a7 --- /dev/null +++ b/react-icons/fa/buysellads.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaBuysellads extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cab.d.ts b/react-icons/fa/cab.d.ts new file mode 100644 index 0000000000..909e077bac --- /dev/null +++ b/react-icons/fa/cab.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCab extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calculator.d.ts b/react-icons/fa/calculator.d.ts new file mode 100644 index 0000000000..d32c0bdc8b --- /dev/null +++ b/react-icons/fa/calculator.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-check-o.d.ts b/react-icons/fa/calendar-check-o.d.ts new file mode 100644 index 0000000000..beedb60325 --- /dev/null +++ b/react-icons/fa/calendar-check-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendarCheckO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-minus-o.d.ts b/react-icons/fa/calendar-minus-o.d.ts new file mode 100644 index 0000000000..a16cad7990 --- /dev/null +++ b/react-icons/fa/calendar-minus-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendarMinusO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-o.d.ts b/react-icons/fa/calendar-o.d.ts new file mode 100644 index 0000000000..c2015e70f0 --- /dev/null +++ b/react-icons/fa/calendar-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendarO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-plus-o.d.ts b/react-icons/fa/calendar-plus-o.d.ts new file mode 100644 index 0000000000..3ab949cd61 --- /dev/null +++ b/react-icons/fa/calendar-plus-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendarPlusO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-times-o.d.ts b/react-icons/fa/calendar-times-o.d.ts new file mode 100644 index 0000000000..8135c24609 --- /dev/null +++ b/react-icons/fa/calendar-times-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendarTimesO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar.d.ts b/react-icons/fa/calendar.d.ts new file mode 100644 index 0000000000..439c3c83dc --- /dev/null +++ b/react-icons/fa/calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/camera-retro.d.ts b/react-icons/fa/camera-retro.d.ts new file mode 100644 index 0000000000..f765115846 --- /dev/null +++ b/react-icons/fa/camera-retro.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCameraRetro extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/camera.d.ts b/react-icons/fa/camera.d.ts new file mode 100644 index 0000000000..602e082bc5 --- /dev/null +++ b/react-icons/fa/camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-down.d.ts b/react-icons/fa/caret-down.d.ts new file mode 100644 index 0000000000..0eb1881681 --- /dev/null +++ b/react-icons/fa/caret-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-left.d.ts b/react-icons/fa/caret-left.d.ts new file mode 100644 index 0000000000..664b91dcff --- /dev/null +++ b/react-icons/fa/caret-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-right.d.ts b/react-icons/fa/caret-right.d.ts new file mode 100644 index 0000000000..3474c09165 --- /dev/null +++ b/react-icons/fa/caret-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-down.d.ts b/react-icons/fa/caret-square-o-down.d.ts new file mode 100644 index 0000000000..e86bc465c0 --- /dev/null +++ b/react-icons/fa/caret-square-o-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretSquareODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-left.d.ts b/react-icons/fa/caret-square-o-left.d.ts new file mode 100644 index 0000000000..bba60556d1 --- /dev/null +++ b/react-icons/fa/caret-square-o-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretSquareOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-right.d.ts b/react-icons/fa/caret-square-o-right.d.ts new file mode 100644 index 0000000000..c19fdfc166 --- /dev/null +++ b/react-icons/fa/caret-square-o-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretSquareORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-up.d.ts b/react-icons/fa/caret-square-o-up.d.ts new file mode 100644 index 0000000000..6d8b8085ec --- /dev/null +++ b/react-icons/fa/caret-square-o-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretSquareOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-up.d.ts b/react-icons/fa/caret-up.d.ts new file mode 100644 index 0000000000..aa5ecc53e1 --- /dev/null +++ b/react-icons/fa/caret-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCaretUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cart-arrow-down.d.ts b/react-icons/fa/cart-arrow-down.d.ts new file mode 100644 index 0000000000..31f3edba30 --- /dev/null +++ b/react-icons/fa/cart-arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCartArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cart-plus.d.ts b/react-icons/fa/cart-plus.d.ts new file mode 100644 index 0000000000..d36e2cdcdc --- /dev/null +++ b/react-icons/fa/cart-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCartPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-amex.d.ts b/react-icons/fa/cc-amex.d.ts new file mode 100644 index 0000000000..0090d590aa --- /dev/null +++ b/react-icons/fa/cc-amex.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcAmex extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-diners-club.d.ts b/react-icons/fa/cc-diners-club.d.ts new file mode 100644 index 0000000000..9d72d15e26 --- /dev/null +++ b/react-icons/fa/cc-diners-club.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcDinersClub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-discover.d.ts b/react-icons/fa/cc-discover.d.ts new file mode 100644 index 0000000000..c8fcaf657b --- /dev/null +++ b/react-icons/fa/cc-discover.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcDiscover extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-jcb.d.ts b/react-icons/fa/cc-jcb.d.ts new file mode 100644 index 0000000000..2b888d329d --- /dev/null +++ b/react-icons/fa/cc-jcb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcJcb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-mastercard.d.ts b/react-icons/fa/cc-mastercard.d.ts new file mode 100644 index 0000000000..8c52f6653f --- /dev/null +++ b/react-icons/fa/cc-mastercard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcMastercard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-paypal.d.ts b/react-icons/fa/cc-paypal.d.ts new file mode 100644 index 0000000000..9468032f92 --- /dev/null +++ b/react-icons/fa/cc-paypal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcPaypal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-stripe.d.ts b/react-icons/fa/cc-stripe.d.ts new file mode 100644 index 0000000000..74802ffd36 --- /dev/null +++ b/react-icons/fa/cc-stripe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcStripe extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-visa.d.ts b/react-icons/fa/cc-visa.d.ts new file mode 100644 index 0000000000..65e1b3bebb --- /dev/null +++ b/react-icons/fa/cc-visa.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCcVisa extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc.d.ts b/react-icons/fa/cc.d.ts new file mode 100644 index 0000000000..a94d3e76de --- /dev/null +++ b/react-icons/fa/cc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/certificate.d.ts b/react-icons/fa/certificate.d.ts new file mode 100644 index 0000000000..93ce627a49 --- /dev/null +++ b/react-icons/fa/certificate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCertificate extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chain-broken.d.ts b/react-icons/fa/chain-broken.d.ts new file mode 100644 index 0000000000..55d8fa9cc8 --- /dev/null +++ b/react-icons/fa/chain-broken.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChainBroken extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chain.d.ts b/react-icons/fa/chain.d.ts new file mode 100644 index 0000000000..d25ab678a4 --- /dev/null +++ b/react-icons/fa/chain.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChain extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-circle-o.d.ts b/react-icons/fa/check-circle-o.d.ts new file mode 100644 index 0000000000..402ece4089 --- /dev/null +++ b/react-icons/fa/check-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCheckCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-circle.d.ts b/react-icons/fa/check-circle.d.ts new file mode 100644 index 0000000000..60d0b5d1a2 --- /dev/null +++ b/react-icons/fa/check-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCheckCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-square-o.d.ts b/react-icons/fa/check-square-o.d.ts new file mode 100644 index 0000000000..c038e42b66 --- /dev/null +++ b/react-icons/fa/check-square-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCheckSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-square.d.ts b/react-icons/fa/check-square.d.ts new file mode 100644 index 0000000000..2312e35871 --- /dev/null +++ b/react-icons/fa/check-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCheckSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check.d.ts b/react-icons/fa/check.d.ts new file mode 100644 index 0000000000..79dc8c9c40 --- /dev/null +++ b/react-icons/fa/check.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-down.d.ts b/react-icons/fa/chevron-circle-down.d.ts new file mode 100644 index 0000000000..b874b80205 --- /dev/null +++ b/react-icons/fa/chevron-circle-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronCircleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-left.d.ts b/react-icons/fa/chevron-circle-left.d.ts new file mode 100644 index 0000000000..bf1e285d9a --- /dev/null +++ b/react-icons/fa/chevron-circle-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronCircleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-right.d.ts b/react-icons/fa/chevron-circle-right.d.ts new file mode 100644 index 0000000000..5ed6d5f153 --- /dev/null +++ b/react-icons/fa/chevron-circle-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronCircleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-up.d.ts b/react-icons/fa/chevron-circle-up.d.ts new file mode 100644 index 0000000000..28607e192e --- /dev/null +++ b/react-icons/fa/chevron-circle-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronCircleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-down.d.ts b/react-icons/fa/chevron-down.d.ts new file mode 100644 index 0000000000..105899e38e --- /dev/null +++ b/react-icons/fa/chevron-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-left.d.ts b/react-icons/fa/chevron-left.d.ts new file mode 100644 index 0000000000..c3e1ebcae5 --- /dev/null +++ b/react-icons/fa/chevron-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-right.d.ts b/react-icons/fa/chevron-right.d.ts new file mode 100644 index 0000000000..7fa9d7c4de --- /dev/null +++ b/react-icons/fa/chevron-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-up.d.ts b/react-icons/fa/chevron-up.d.ts new file mode 100644 index 0000000000..486d5d11a3 --- /dev/null +++ b/react-icons/fa/chevron-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/child.d.ts b/react-icons/fa/child.d.ts new file mode 100644 index 0000000000..a40b619992 --- /dev/null +++ b/react-icons/fa/child.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChild extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chrome.d.ts b/react-icons/fa/chrome.d.ts new file mode 100644 index 0000000000..f7506b4575 --- /dev/null +++ b/react-icons/fa/chrome.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaChrome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-o-notch.d.ts b/react-icons/fa/circle-o-notch.d.ts new file mode 100644 index 0000000000..64eb0fd090 --- /dev/null +++ b/react-icons/fa/circle-o-notch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCircleONotch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-o.d.ts b/react-icons/fa/circle-o.d.ts new file mode 100644 index 0000000000..df045a1a25 --- /dev/null +++ b/react-icons/fa/circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-thin.d.ts b/react-icons/fa/circle-thin.d.ts new file mode 100644 index 0000000000..b104e97a26 --- /dev/null +++ b/react-icons/fa/circle-thin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCircleThin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle.d.ts b/react-icons/fa/circle.d.ts new file mode 100644 index 0000000000..8c1df704c4 --- /dev/null +++ b/react-icons/fa/circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clipboard.d.ts b/react-icons/fa/clipboard.d.ts new file mode 100644 index 0000000000..7b418a8332 --- /dev/null +++ b/react-icons/fa/clipboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clock-o.d.ts b/react-icons/fa/clock-o.d.ts new file mode 100644 index 0000000000..830ef308e5 --- /dev/null +++ b/react-icons/fa/clock-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaClockO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clone.d.ts b/react-icons/fa/clone.d.ts new file mode 100644 index 0000000000..7aa2d129a0 --- /dev/null +++ b/react-icons/fa/clone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaClone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/close.d.ts b/react-icons/fa/close.d.ts new file mode 100644 index 0000000000..8a687a3abc --- /dev/null +++ b/react-icons/fa/close.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud-download.d.ts b/react-icons/fa/cloud-download.d.ts new file mode 100644 index 0000000000..fcca2a8a62 --- /dev/null +++ b/react-icons/fa/cloud-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud-upload.d.ts b/react-icons/fa/cloud-upload.d.ts new file mode 100644 index 0000000000..1b9b81cdfd --- /dev/null +++ b/react-icons/fa/cloud-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud.d.ts b/react-icons/fa/cloud.d.ts new file mode 100644 index 0000000000..fdb30a4485 --- /dev/null +++ b/react-icons/fa/cloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cny.d.ts b/react-icons/fa/cny.d.ts new file mode 100644 index 0000000000..8182c5a68e --- /dev/null +++ b/react-icons/fa/cny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCny extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/code-fork.d.ts b/react-icons/fa/code-fork.d.ts new file mode 100644 index 0000000000..511a7308aa --- /dev/null +++ b/react-icons/fa/code-fork.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCodeFork extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/code.d.ts b/react-icons/fa/code.d.ts new file mode 100644 index 0000000000..dd97b03088 --- /dev/null +++ b/react-icons/fa/code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/codepen.d.ts b/react-icons/fa/codepen.d.ts new file mode 100644 index 0000000000..afd571d640 --- /dev/null +++ b/react-icons/fa/codepen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCodepen extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/codiepie.d.ts b/react-icons/fa/codiepie.d.ts new file mode 100644 index 0000000000..2c9dc2ef0d --- /dev/null +++ b/react-icons/fa/codiepie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCodiepie extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/coffee.d.ts b/react-icons/fa/coffee.d.ts new file mode 100644 index 0000000000..05066a79ba --- /dev/null +++ b/react-icons/fa/coffee.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cog.d.ts b/react-icons/fa/cog.d.ts new file mode 100644 index 0000000000..ffea2eaeb5 --- /dev/null +++ b/react-icons/fa/cog.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cogs.d.ts b/react-icons/fa/cogs.d.ts new file mode 100644 index 0000000000..389b227b13 --- /dev/null +++ b/react-icons/fa/cogs.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCogs extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/columns.d.ts b/react-icons/fa/columns.d.ts new file mode 100644 index 0000000000..7499079d8c --- /dev/null +++ b/react-icons/fa/columns.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaColumns extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comment-o.d.ts b/react-icons/fa/comment-o.d.ts new file mode 100644 index 0000000000..6b59006c20 --- /dev/null +++ b/react-icons/fa/comment-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCommentO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comment.d.ts b/react-icons/fa/comment.d.ts new file mode 100644 index 0000000000..bcc529da41 --- /dev/null +++ b/react-icons/fa/comment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/commenting-o.d.ts b/react-icons/fa/commenting-o.d.ts new file mode 100644 index 0000000000..8a63d2bc1e --- /dev/null +++ b/react-icons/fa/commenting-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCommentingO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/commenting.d.ts b/react-icons/fa/commenting.d.ts new file mode 100644 index 0000000000..154562e43d --- /dev/null +++ b/react-icons/fa/commenting.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCommenting extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comments-o.d.ts b/react-icons/fa/comments-o.d.ts new file mode 100644 index 0000000000..c9e4fa6d6f --- /dev/null +++ b/react-icons/fa/comments-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCommentsO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comments.d.ts b/react-icons/fa/comments.d.ts new file mode 100644 index 0000000000..43a4421335 --- /dev/null +++ b/react-icons/fa/comments.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaComments extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/compass.d.ts b/react-icons/fa/compass.d.ts new file mode 100644 index 0000000000..cd21ff62c2 --- /dev/null +++ b/react-icons/fa/compass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/compress.d.ts b/react-icons/fa/compress.d.ts new file mode 100644 index 0000000000..372ed99c97 --- /dev/null +++ b/react-icons/fa/compress.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCompress extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/connectdevelop.d.ts b/react-icons/fa/connectdevelop.d.ts new file mode 100644 index 0000000000..75c045e2f8 --- /dev/null +++ b/react-icons/fa/connectdevelop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaConnectdevelop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/contao.d.ts b/react-icons/fa/contao.d.ts new file mode 100644 index 0000000000..c0d5cb3fb1 --- /dev/null +++ b/react-icons/fa/contao.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaContao extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/copy.d.ts b/react-icons/fa/copy.d.ts new file mode 100644 index 0000000000..7e5675ffd9 --- /dev/null +++ b/react-icons/fa/copy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/copyright.d.ts b/react-icons/fa/copyright.d.ts new file mode 100644 index 0000000000..122b198053 --- /dev/null +++ b/react-icons/fa/copyright.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCopyright extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/creative-commons.d.ts b/react-icons/fa/creative-commons.d.ts new file mode 100644 index 0000000000..2767146dc0 --- /dev/null +++ b/react-icons/fa/creative-commons.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCreativeCommons extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/credit-card-alt.d.ts b/react-icons/fa/credit-card-alt.d.ts new file mode 100644 index 0000000000..a7397df53b --- /dev/null +++ b/react-icons/fa/credit-card-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCreditCardAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/credit-card.d.ts b/react-icons/fa/credit-card.d.ts new file mode 100644 index 0000000000..f585fd3d9e --- /dev/null +++ b/react-icons/fa/credit-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/crop.d.ts b/react-icons/fa/crop.d.ts new file mode 100644 index 0000000000..8ecd471b26 --- /dev/null +++ b/react-icons/fa/crop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/crosshairs.d.ts b/react-icons/fa/crosshairs.d.ts new file mode 100644 index 0000000000..61e8db8e06 --- /dev/null +++ b/react-icons/fa/crosshairs.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCrosshairs extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/css3.d.ts b/react-icons/fa/css3.d.ts new file mode 100644 index 0000000000..701fd1fe9a --- /dev/null +++ b/react-icons/fa/css3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cube.d.ts b/react-icons/fa/cube.d.ts new file mode 100644 index 0000000000..292e49cac6 --- /dev/null +++ b/react-icons/fa/cube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCube extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cubes.d.ts b/react-icons/fa/cubes.d.ts new file mode 100644 index 0000000000..3aa97019c2 --- /dev/null +++ b/react-icons/fa/cubes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCubes extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cut.d.ts b/react-icons/fa/cut.d.ts new file mode 100644 index 0000000000..c48a57c62c --- /dev/null +++ b/react-icons/fa/cut.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCut extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cutlery.d.ts b/react-icons/fa/cutlery.d.ts new file mode 100644 index 0000000000..538849b65d --- /dev/null +++ b/react-icons/fa/cutlery.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaCutlery extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dashboard.d.ts b/react-icons/fa/dashboard.d.ts new file mode 100644 index 0000000000..5d7f761e9f --- /dev/null +++ b/react-icons/fa/dashboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dashcube.d.ts b/react-icons/fa/dashcube.d.ts new file mode 100644 index 0000000000..22c1f7368d --- /dev/null +++ b/react-icons/fa/dashcube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDashcube extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/database.d.ts b/react-icons/fa/database.d.ts new file mode 100644 index 0000000000..f0a5a6b184 --- /dev/null +++ b/react-icons/fa/database.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/deaf.d.ts b/react-icons/fa/deaf.d.ts new file mode 100644 index 0000000000..cb97bfd09e --- /dev/null +++ b/react-icons/fa/deaf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dedent.d.ts b/react-icons/fa/dedent.d.ts new file mode 100644 index 0000000000..1e0a02d278 --- /dev/null +++ b/react-icons/fa/dedent.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDedent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/delicious.d.ts b/react-icons/fa/delicious.d.ts new file mode 100644 index 0000000000..f17631f835 --- /dev/null +++ b/react-icons/fa/delicious.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDelicious extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/desktop.d.ts b/react-icons/fa/desktop.d.ts new file mode 100644 index 0000000000..d6d3ab3ca4 --- /dev/null +++ b/react-icons/fa/desktop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/deviantart.d.ts b/react-icons/fa/deviantart.d.ts new file mode 100644 index 0000000000..eb33e3c744 --- /dev/null +++ b/react-icons/fa/deviantart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDeviantart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/diamond.d.ts b/react-icons/fa/diamond.d.ts new file mode 100644 index 0000000000..0576f656c9 --- /dev/null +++ b/react-icons/fa/diamond.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDiamond extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/digg.d.ts b/react-icons/fa/digg.d.ts new file mode 100644 index 0000000000..006f135878 --- /dev/null +++ b/react-icons/fa/digg.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDigg extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dollar.d.ts b/react-icons/fa/dollar.d.ts new file mode 100644 index 0000000000..570bcb1ecc --- /dev/null +++ b/react-icons/fa/dollar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDollar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dot-circle-o.d.ts b/react-icons/fa/dot-circle-o.d.ts new file mode 100644 index 0000000000..fe86ad307c --- /dev/null +++ b/react-icons/fa/dot-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDotCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/download.d.ts b/react-icons/fa/download.d.ts new file mode 100644 index 0000000000..3eb831c65d --- /dev/null +++ b/react-icons/fa/download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dribbble.d.ts b/react-icons/fa/dribbble.d.ts new file mode 100644 index 0000000000..6dba67f8e3 --- /dev/null +++ b/react-icons/fa/dribbble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dropbox.d.ts b/react-icons/fa/dropbox.d.ts new file mode 100644 index 0000000000..c3fff6a008 --- /dev/null +++ b/react-icons/fa/dropbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/drupal.d.ts b/react-icons/fa/drupal.d.ts new file mode 100644 index 0000000000..ef3119bf79 --- /dev/null +++ b/react-icons/fa/drupal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaDrupal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/edge.d.ts b/react-icons/fa/edge.d.ts new file mode 100644 index 0000000000..de57d28168 --- /dev/null +++ b/react-icons/fa/edge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEdge extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/edit.d.ts b/react-icons/fa/edit.d.ts new file mode 100644 index 0000000000..b4e16f8739 --- /dev/null +++ b/react-icons/fa/edit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eject.d.ts b/react-icons/fa/eject.d.ts new file mode 100644 index 0000000000..eafd730d99 --- /dev/null +++ b/react-icons/fa/eject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ellipsis-h.d.ts b/react-icons/fa/ellipsis-h.d.ts new file mode 100644 index 0000000000..7b0e55a84f --- /dev/null +++ b/react-icons/fa/ellipsis-h.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEllipsisH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ellipsis-v.d.ts b/react-icons/fa/ellipsis-v.d.ts new file mode 100644 index 0000000000..bd928577b8 --- /dev/null +++ b/react-icons/fa/ellipsis-v.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEllipsisV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/empire.d.ts b/react-icons/fa/empire.d.ts new file mode 100644 index 0000000000..e5211042fe --- /dev/null +++ b/react-icons/fa/empire.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEmpire extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope-o.d.ts b/react-icons/fa/envelope-o.d.ts new file mode 100644 index 0000000000..587dd6b22c --- /dev/null +++ b/react-icons/fa/envelope-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEnvelopeO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope-square.d.ts b/react-icons/fa/envelope-square.d.ts new file mode 100644 index 0000000000..490b8d70cd --- /dev/null +++ b/react-icons/fa/envelope-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEnvelopeSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope.d.ts b/react-icons/fa/envelope.d.ts new file mode 100644 index 0000000000..7d8d3bc3b1 --- /dev/null +++ b/react-icons/fa/envelope.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEnvelope extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envira.d.ts b/react-icons/fa/envira.d.ts new file mode 100644 index 0000000000..7292817b1a --- /dev/null +++ b/react-icons/fa/envira.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEnvira extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eraser.d.ts b/react-icons/fa/eraser.d.ts new file mode 100644 index 0000000000..6906d07b40 --- /dev/null +++ b/react-icons/fa/eraser.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEraser extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eur.d.ts b/react-icons/fa/eur.d.ts new file mode 100644 index 0000000000..a16278080f --- /dev/null +++ b/react-icons/fa/eur.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEur extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exchange.d.ts b/react-icons/fa/exchange.d.ts new file mode 100644 index 0000000000..3e0ec8cd2e --- /dev/null +++ b/react-icons/fa/exchange.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExchange extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation-circle.d.ts b/react-icons/fa/exclamation-circle.d.ts new file mode 100644 index 0000000000..329927d9c9 --- /dev/null +++ b/react-icons/fa/exclamation-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExclamationCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation-triangle.d.ts b/react-icons/fa/exclamation-triangle.d.ts new file mode 100644 index 0000000000..a94eb7a397 --- /dev/null +++ b/react-icons/fa/exclamation-triangle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExclamationTriangle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation.d.ts b/react-icons/fa/exclamation.d.ts new file mode 100644 index 0000000000..b43e140986 --- /dev/null +++ b/react-icons/fa/exclamation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExclamation extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/expand.d.ts b/react-icons/fa/expand.d.ts new file mode 100644 index 0000000000..47fffbb3da --- /dev/null +++ b/react-icons/fa/expand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/expeditedssl.d.ts b/react-icons/fa/expeditedssl.d.ts new file mode 100644 index 0000000000..dc5969ce61 --- /dev/null +++ b/react-icons/fa/expeditedssl.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExpeditedssl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/external-link-square.d.ts b/react-icons/fa/external-link-square.d.ts new file mode 100644 index 0000000000..62fbe81877 --- /dev/null +++ b/react-icons/fa/external-link-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExternalLinkSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/external-link.d.ts b/react-icons/fa/external-link.d.ts new file mode 100644 index 0000000000..5cb343a781 --- /dev/null +++ b/react-icons/fa/external-link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaExternalLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eye-slash.d.ts b/react-icons/fa/eye-slash.d.ts new file mode 100644 index 0000000000..40cc6b3892 --- /dev/null +++ b/react-icons/fa/eye-slash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEyeSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eye.d.ts b/react-icons/fa/eye.d.ts new file mode 100644 index 0000000000..eac25bb949 --- /dev/null +++ b/react-icons/fa/eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eyedropper.d.ts b/react-icons/fa/eyedropper.d.ts new file mode 100644 index 0000000000..555f3d476b --- /dev/null +++ b/react-icons/fa/eyedropper.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaEyedropper extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook-official.d.ts b/react-icons/fa/facebook-official.d.ts new file mode 100644 index 0000000000..aeee2353c2 --- /dev/null +++ b/react-icons/fa/facebook-official.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFacebookOfficial extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook-square.d.ts b/react-icons/fa/facebook-square.d.ts new file mode 100644 index 0000000000..0fe6786ac2 --- /dev/null +++ b/react-icons/fa/facebook-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFacebookSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook.d.ts b/react-icons/fa/facebook.d.ts new file mode 100644 index 0000000000..d1df90fd84 --- /dev/null +++ b/react-icons/fa/facebook.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fast-backward.d.ts b/react-icons/fa/fast-backward.d.ts new file mode 100644 index 0000000000..2823a7cc0f --- /dev/null +++ b/react-icons/fa/fast-backward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFastBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fast-forward.d.ts b/react-icons/fa/fast-forward.d.ts new file mode 100644 index 0000000000..8dcc221d53 --- /dev/null +++ b/react-icons/fa/fast-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fax.d.ts b/react-icons/fa/fax.d.ts new file mode 100644 index 0000000000..7240600951 --- /dev/null +++ b/react-icons/fa/fax.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFax extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/feed.d.ts b/react-icons/fa/feed.d.ts new file mode 100644 index 0000000000..4578ccbe92 --- /dev/null +++ b/react-icons/fa/feed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFeed extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/female.d.ts b/react-icons/fa/female.d.ts new file mode 100644 index 0000000000..fec3471475 --- /dev/null +++ b/react-icons/fa/female.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFemale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fighter-jet.d.ts b/react-icons/fa/fighter-jet.d.ts new file mode 100644 index 0000000000..2740c9d67c --- /dev/null +++ b/react-icons/fa/fighter-jet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFighterJet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-archive-o.d.ts b/react-icons/fa/file-archive-o.d.ts new file mode 100644 index 0000000000..060f2488e1 --- /dev/null +++ b/react-icons/fa/file-archive-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileArchiveO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-audio-o.d.ts b/react-icons/fa/file-audio-o.d.ts new file mode 100644 index 0000000000..024c8c92d4 --- /dev/null +++ b/react-icons/fa/file-audio-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileAudioO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-code-o.d.ts b/react-icons/fa/file-code-o.d.ts new file mode 100644 index 0000000000..cd9c2b5c6f --- /dev/null +++ b/react-icons/fa/file-code-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileCodeO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-excel-o.d.ts b/react-icons/fa/file-excel-o.d.ts new file mode 100644 index 0000000000..6f6671900f --- /dev/null +++ b/react-icons/fa/file-excel-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileExcelO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-image-o.d.ts b/react-icons/fa/file-image-o.d.ts new file mode 100644 index 0000000000..acc894cf60 --- /dev/null +++ b/react-icons/fa/file-image-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileImageO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-movie-o.d.ts b/react-icons/fa/file-movie-o.d.ts new file mode 100644 index 0000000000..88c0a1a05e --- /dev/null +++ b/react-icons/fa/file-movie-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileMovieO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-o.d.ts b/react-icons/fa/file-o.d.ts new file mode 100644 index 0000000000..7b1912612f --- /dev/null +++ b/react-icons/fa/file-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-pdf-o.d.ts b/react-icons/fa/file-pdf-o.d.ts new file mode 100644 index 0000000000..44770001e8 --- /dev/null +++ b/react-icons/fa/file-pdf-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFilePdfO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-powerpoint-o.d.ts b/react-icons/fa/file-powerpoint-o.d.ts new file mode 100644 index 0000000000..f6ac2e95bc --- /dev/null +++ b/react-icons/fa/file-powerpoint-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFilePowerpointO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-text-o.d.ts b/react-icons/fa/file-text-o.d.ts new file mode 100644 index 0000000000..03a802b663 --- /dev/null +++ b/react-icons/fa/file-text-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileTextO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-text.d.ts b/react-icons/fa/file-text.d.ts new file mode 100644 index 0000000000..6f9dd64a49 --- /dev/null +++ b/react-icons/fa/file-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileText extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-word-o.d.ts b/react-icons/fa/file-word-o.d.ts new file mode 100644 index 0000000000..7d037833df --- /dev/null +++ b/react-icons/fa/file-word-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFileWordO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file.d.ts b/react-icons/fa/file.d.ts new file mode 100644 index 0000000000..62bf7dc558 --- /dev/null +++ b/react-icons/fa/file.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/film.d.ts b/react-icons/fa/film.d.ts new file mode 100644 index 0000000000..a8b3a00704 --- /dev/null +++ b/react-icons/fa/film.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/filter.d.ts b/react-icons/fa/filter.d.ts new file mode 100644 index 0000000000..bd0629f06e --- /dev/null +++ b/react-icons/fa/filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fire-extinguisher.d.ts b/react-icons/fa/fire-extinguisher.d.ts new file mode 100644 index 0000000000..23a1cade88 --- /dev/null +++ b/react-icons/fa/fire-extinguisher.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFireExtinguisher extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fire.d.ts b/react-icons/fa/fire.d.ts new file mode 100644 index 0000000000..85b9ccb3fd --- /dev/null +++ b/react-icons/fa/fire.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFire extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/firefox.d.ts b/react-icons/fa/firefox.d.ts new file mode 100644 index 0000000000..a5244ebfaa --- /dev/null +++ b/react-icons/fa/firefox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFirefox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag-checkered.d.ts b/react-icons/fa/flag-checkered.d.ts new file mode 100644 index 0000000000..6fb328671b --- /dev/null +++ b/react-icons/fa/flag-checkered.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFlagCheckered extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag-o.d.ts b/react-icons/fa/flag-o.d.ts new file mode 100644 index 0000000000..bcdf8320bf --- /dev/null +++ b/react-icons/fa/flag-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFlagO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag.d.ts b/react-icons/fa/flag.d.ts new file mode 100644 index 0000000000..c7e88d23a4 --- /dev/null +++ b/react-icons/fa/flag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flask.d.ts b/react-icons/fa/flask.d.ts new file mode 100644 index 0000000000..2f6f880f77 --- /dev/null +++ b/react-icons/fa/flask.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flickr.d.ts b/react-icons/fa/flickr.d.ts new file mode 100644 index 0000000000..897a0e67c0 --- /dev/null +++ b/react-icons/fa/flickr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFlickr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/floppy-o.d.ts b/react-icons/fa/floppy-o.d.ts new file mode 100644 index 0000000000..97a3fc15f5 --- /dev/null +++ b/react-icons/fa/floppy-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFloppyO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-o.d.ts b/react-icons/fa/folder-o.d.ts new file mode 100644 index 0000000000..316b6942b7 --- /dev/null +++ b/react-icons/fa/folder-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFolderO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-open-o.d.ts b/react-icons/fa/folder-open-o.d.ts new file mode 100644 index 0000000000..b5064b1a2d --- /dev/null +++ b/react-icons/fa/folder-open-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFolderOpenO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-open.d.ts b/react-icons/fa/folder-open.d.ts new file mode 100644 index 0000000000..ffc333561c --- /dev/null +++ b/react-icons/fa/folder-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder.d.ts b/react-icons/fa/folder.d.ts new file mode 100644 index 0000000000..678017029a --- /dev/null +++ b/react-icons/fa/folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/font.d.ts b/react-icons/fa/font.d.ts new file mode 100644 index 0000000000..9e405eb19b --- /dev/null +++ b/react-icons/fa/font.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFont extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fonticons.d.ts b/react-icons/fa/fonticons.d.ts new file mode 100644 index 0000000000..1352450db1 --- /dev/null +++ b/react-icons/fa/fonticons.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFonticons extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fort-awesome.d.ts b/react-icons/fa/fort-awesome.d.ts new file mode 100644 index 0000000000..cef239531a --- /dev/null +++ b/react-icons/fa/fort-awesome.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFortAwesome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/forumbee.d.ts b/react-icons/fa/forumbee.d.ts new file mode 100644 index 0000000000..26467d0fc0 --- /dev/null +++ b/react-icons/fa/forumbee.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaForumbee extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/forward.d.ts b/react-icons/fa/forward.d.ts new file mode 100644 index 0000000000..8e79812775 --- /dev/null +++ b/react-icons/fa/forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/foursquare.d.ts b/react-icons/fa/foursquare.d.ts new file mode 100644 index 0000000000..ccd592e1aa --- /dev/null +++ b/react-icons/fa/foursquare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFoursquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/frown-o.d.ts b/react-icons/fa/frown-o.d.ts new file mode 100644 index 0000000000..ef40a25494 --- /dev/null +++ b/react-icons/fa/frown-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFrownO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/futbol-o.d.ts b/react-icons/fa/futbol-o.d.ts new file mode 100644 index 0000000000..ad5c2f6e62 --- /dev/null +++ b/react-icons/fa/futbol-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaFutbolO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gamepad.d.ts b/react-icons/fa/gamepad.d.ts new file mode 100644 index 0000000000..82e5341505 --- /dev/null +++ b/react-icons/fa/gamepad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGamepad extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gavel.d.ts b/react-icons/fa/gavel.d.ts new file mode 100644 index 0000000000..6a9fae6de9 --- /dev/null +++ b/react-icons/fa/gavel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGavel extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gbp.d.ts b/react-icons/fa/gbp.d.ts new file mode 100644 index 0000000000..03f669a06d --- /dev/null +++ b/react-icons/fa/gbp.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGbp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/genderless.d.ts b/react-icons/fa/genderless.d.ts new file mode 100644 index 0000000000..b0a5c98bd0 --- /dev/null +++ b/react-icons/fa/genderless.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGenderless extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/get-pocket.d.ts b/react-icons/fa/get-pocket.d.ts new file mode 100644 index 0000000000..6326e895f3 --- /dev/null +++ b/react-icons/fa/get-pocket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGetPocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gg-circle.d.ts b/react-icons/fa/gg-circle.d.ts new file mode 100644 index 0000000000..7d0879a730 --- /dev/null +++ b/react-icons/fa/gg-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGgCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gg.d.ts b/react-icons/fa/gg.d.ts new file mode 100644 index 0000000000..53ea3c32b1 --- /dev/null +++ b/react-icons/fa/gg.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGg extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gift.d.ts b/react-icons/fa/gift.d.ts new file mode 100644 index 0000000000..d53f0c7cb2 --- /dev/null +++ b/react-icons/fa/gift.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/git-square.d.ts b/react-icons/fa/git-square.d.ts new file mode 100644 index 0000000000..d25f923ed8 --- /dev/null +++ b/react-icons/fa/git-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGitSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/git.d.ts b/react-icons/fa/git.d.ts new file mode 100644 index 0000000000..400bd27e64 --- /dev/null +++ b/react-icons/fa/git.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github-alt.d.ts b/react-icons/fa/github-alt.d.ts new file mode 100644 index 0000000000..f70b313edf --- /dev/null +++ b/react-icons/fa/github-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGithubAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github-square.d.ts b/react-icons/fa/github-square.d.ts new file mode 100644 index 0000000000..7bcf64f7da --- /dev/null +++ b/react-icons/fa/github-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGithubSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github.d.ts b/react-icons/fa/github.d.ts new file mode 100644 index 0000000000..22f9eb0edb --- /dev/null +++ b/react-icons/fa/github.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gitlab.d.ts b/react-icons/fa/gitlab.d.ts new file mode 100644 index 0000000000..61740127ef --- /dev/null +++ b/react-icons/fa/gitlab.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGitlab extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gittip.d.ts b/react-icons/fa/gittip.d.ts new file mode 100644 index 0000000000..69f7342706 --- /dev/null +++ b/react-icons/fa/gittip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGittip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glass.d.ts b/react-icons/fa/glass.d.ts new file mode 100644 index 0000000000..cf309cb91c --- /dev/null +++ b/react-icons/fa/glass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGlass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glide-g.d.ts b/react-icons/fa/glide-g.d.ts new file mode 100644 index 0000000000..67bd15b16c --- /dev/null +++ b/react-icons/fa/glide-g.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGlideG extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glide.d.ts b/react-icons/fa/glide.d.ts new file mode 100644 index 0000000000..2f37cd0396 --- /dev/null +++ b/react-icons/fa/glide.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGlide extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/globe.d.ts b/react-icons/fa/globe.d.ts new file mode 100644 index 0000000000..c4abca76a1 --- /dev/null +++ b/react-icons/fa/globe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-plus-square.d.ts b/react-icons/fa/google-plus-square.d.ts new file mode 100644 index 0000000000..6cbec6fb0f --- /dev/null +++ b/react-icons/fa/google-plus-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGooglePlusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-plus.d.ts b/react-icons/fa/google-plus.d.ts new file mode 100644 index 0000000000..7332f4299c --- /dev/null +++ b/react-icons/fa/google-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGooglePlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-wallet.d.ts b/react-icons/fa/google-wallet.d.ts new file mode 100644 index 0000000000..ea0d82eb34 --- /dev/null +++ b/react-icons/fa/google-wallet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGoogleWallet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google.d.ts b/react-icons/fa/google.d.ts new file mode 100644 index 0000000000..8d4e78fdb9 --- /dev/null +++ b/react-icons/fa/google.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGoogle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/graduation-cap.d.ts b/react-icons/fa/graduation-cap.d.ts new file mode 100644 index 0000000000..0674575ddc --- /dev/null +++ b/react-icons/fa/graduation-cap.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGraduationCap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/group.d.ts b/react-icons/fa/group.d.ts new file mode 100644 index 0000000000..bea44128bf --- /dev/null +++ b/react-icons/fa/group.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/h-square.d.ts b/react-icons/fa/h-square.d.ts new file mode 100644 index 0000000000..f56826d34a --- /dev/null +++ b/react-icons/fa/h-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hacker-news.d.ts b/react-icons/fa/hacker-news.d.ts new file mode 100644 index 0000000000..60aac50007 --- /dev/null +++ b/react-icons/fa/hacker-news.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHackerNews extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-grab-o.d.ts b/react-icons/fa/hand-grab-o.d.ts new file mode 100644 index 0000000000..71853e811f --- /dev/null +++ b/react-icons/fa/hand-grab-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandGrabO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-lizard-o.d.ts b/react-icons/fa/hand-lizard-o.d.ts new file mode 100644 index 0000000000..060c5476e7 --- /dev/null +++ b/react-icons/fa/hand-lizard-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandLizardO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-down.d.ts b/react-icons/fa/hand-o-down.d.ts new file mode 100644 index 0000000000..d2aebb45de --- /dev/null +++ b/react-icons/fa/hand-o-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-left.d.ts b/react-icons/fa/hand-o-left.d.ts new file mode 100644 index 0000000000..161b268148 --- /dev/null +++ b/react-icons/fa/hand-o-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-right.d.ts b/react-icons/fa/hand-o-right.d.ts new file mode 100644 index 0000000000..f65a69a964 --- /dev/null +++ b/react-icons/fa/hand-o-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-up.d.ts b/react-icons/fa/hand-o-up.d.ts new file mode 100644 index 0000000000..318abde664 --- /dev/null +++ b/react-icons/fa/hand-o-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-paper-o.d.ts b/react-icons/fa/hand-paper-o.d.ts new file mode 100644 index 0000000000..7a64c3821d --- /dev/null +++ b/react-icons/fa/hand-paper-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandPaperO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-peace-o.d.ts b/react-icons/fa/hand-peace-o.d.ts new file mode 100644 index 0000000000..7ebc332907 --- /dev/null +++ b/react-icons/fa/hand-peace-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandPeaceO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-pointer-o.d.ts b/react-icons/fa/hand-pointer-o.d.ts new file mode 100644 index 0000000000..75987c4272 --- /dev/null +++ b/react-icons/fa/hand-pointer-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandPointerO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-scissors-o.d.ts b/react-icons/fa/hand-scissors-o.d.ts new file mode 100644 index 0000000000..a943044eb8 --- /dev/null +++ b/react-icons/fa/hand-scissors-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandScissorsO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-spock-o.d.ts b/react-icons/fa/hand-spock-o.d.ts new file mode 100644 index 0000000000..e52da306dc --- /dev/null +++ b/react-icons/fa/hand-spock-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHandSpockO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hashtag.d.ts b/react-icons/fa/hashtag.d.ts new file mode 100644 index 0000000000..e673160f12 --- /dev/null +++ b/react-icons/fa/hashtag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHashtag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hdd-o.d.ts b/react-icons/fa/hdd-o.d.ts new file mode 100644 index 0000000000..f773d4881a --- /dev/null +++ b/react-icons/fa/hdd-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHddO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/header.d.ts b/react-icons/fa/header.d.ts new file mode 100644 index 0000000000..14f7c0db93 --- /dev/null +++ b/react-icons/fa/header.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHeader extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/headphones.d.ts b/react-icons/fa/headphones.d.ts new file mode 100644 index 0000000000..ae157eb948 --- /dev/null +++ b/react-icons/fa/headphones.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHeadphones extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heart-o.d.ts b/react-icons/fa/heart-o.d.ts new file mode 100644 index 0000000000..994eaa53e4 --- /dev/null +++ b/react-icons/fa/heart-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHeartO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heart.d.ts b/react-icons/fa/heart.d.ts new file mode 100644 index 0000000000..34163f996b --- /dev/null +++ b/react-icons/fa/heart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heartbeat.d.ts b/react-icons/fa/heartbeat.d.ts new file mode 100644 index 0000000000..cdb67485bc --- /dev/null +++ b/react-icons/fa/heartbeat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHeartbeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/history.d.ts b/react-icons/fa/history.d.ts new file mode 100644 index 0000000000..1f8d7f24d4 --- /dev/null +++ b/react-icons/fa/history.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/home.d.ts b/react-icons/fa/home.d.ts new file mode 100644 index 0000000000..1082739fd9 --- /dev/null +++ b/react-icons/fa/home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hospital-o.d.ts b/react-icons/fa/hospital-o.d.ts new file mode 100644 index 0000000000..d03e724a10 --- /dev/null +++ b/react-icons/fa/hospital-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHospitalO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-1.d.ts b/react-icons/fa/hourglass-1.d.ts new file mode 100644 index 0000000000..b78ac635fe --- /dev/null +++ b/react-icons/fa/hourglass-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHourglass1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-2.d.ts b/react-icons/fa/hourglass-2.d.ts new file mode 100644 index 0000000000..25efc6ba04 --- /dev/null +++ b/react-icons/fa/hourglass-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHourglass2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-3.d.ts b/react-icons/fa/hourglass-3.d.ts new file mode 100644 index 0000000000..4140eeedcf --- /dev/null +++ b/react-icons/fa/hourglass-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHourglass3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-o.d.ts b/react-icons/fa/hourglass-o.d.ts new file mode 100644 index 0000000000..1f63a88221 --- /dev/null +++ b/react-icons/fa/hourglass-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHourglassO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass.d.ts b/react-icons/fa/hourglass.d.ts new file mode 100644 index 0000000000..687e3a07b3 --- /dev/null +++ b/react-icons/fa/hourglass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHourglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/houzz.d.ts b/react-icons/fa/houzz.d.ts new file mode 100644 index 0000000000..6f7e0ee6ab --- /dev/null +++ b/react-icons/fa/houzz.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHouzz extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/html5.d.ts b/react-icons/fa/html5.d.ts new file mode 100644 index 0000000000..27b2c95835 --- /dev/null +++ b/react-icons/fa/html5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/i-cursor.d.ts b/react-icons/fa/i-cursor.d.ts new file mode 100644 index 0000000000..d2f36f9ece --- /dev/null +++ b/react-icons/fa/i-cursor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaICursor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ils.d.ts b/react-icons/fa/ils.d.ts new file mode 100644 index 0000000000..ffc6dceb91 --- /dev/null +++ b/react-icons/fa/ils.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaIls extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/image.d.ts b/react-icons/fa/image.d.ts new file mode 100644 index 0000000000..de74651d15 --- /dev/null +++ b/react-icons/fa/image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/inbox.d.ts b/react-icons/fa/inbox.d.ts new file mode 100644 index 0000000000..e9b7624fa9 --- /dev/null +++ b/react-icons/fa/inbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/indent.d.ts b/react-icons/fa/indent.d.ts new file mode 100644 index 0000000000..f292801493 --- /dev/null +++ b/react-icons/fa/indent.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaIndent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/index.d.ts b/react-icons/fa/index.d.ts new file mode 100644 index 0000000000..ec024a8515 --- /dev/null +++ b/react-icons/fa/index.d.ts @@ -0,0 +1,1256 @@ +import _Fa500px from "./500px"; +import _FaAdjust from "./adjust"; +import _FaAdn from "./adn"; +import _FaAlignCenter from "./align-center"; +import _FaAlignJustify from "./align-justify"; +import _FaAlignLeft from "./align-left"; +import _FaAlignRight from "./align-right"; +import _FaAmazon from "./amazon"; +import _FaAmbulance from "./ambulance"; +import _FaAmericanSignLanguageInterpreting from "./american-sign-language-interpreting"; +import _FaAnchor from "./anchor"; +import _FaAndroid from "./android"; +import _FaAngellist from "./angellist"; +import _FaAngleDoubleDown from "./angle-double-down"; +import _FaAngleDoubleLeft from "./angle-double-left"; +import _FaAngleDoubleRight from "./angle-double-right"; +import _FaAngleDoubleUp from "./angle-double-up"; +import _FaAngleDown from "./angle-down"; +import _FaAngleLeft from "./angle-left"; +import _FaAngleRight from "./angle-right"; +import _FaAngleUp from "./angle-up"; +import _FaApple from "./apple"; +import _FaArchive from "./archive"; +import _FaAreaChart from "./area-chart"; +import _FaArrowCircleDown from "./arrow-circle-down"; +import _FaArrowCircleLeft from "./arrow-circle-left"; +import _FaArrowCircleODown from "./arrow-circle-o-down"; +import _FaArrowCircleOLeft from "./arrow-circle-o-left"; +import _FaArrowCircleORight from "./arrow-circle-o-right"; +import _FaArrowCircleOUp from "./arrow-circle-o-up"; +import _FaArrowCircleRight from "./arrow-circle-right"; +import _FaArrowCircleUp from "./arrow-circle-up"; +import _FaArrowDown from "./arrow-down"; +import _FaArrowLeft from "./arrow-left"; +import _FaArrowRight from "./arrow-right"; +import _FaArrowUp from "./arrow-up"; +import _FaArrowsAlt from "./arrows-alt"; +import _FaArrowsH from "./arrows-h"; +import _FaArrowsV from "./arrows-v"; +import _FaArrows from "./arrows"; +import _FaAssistiveListeningSystems from "./assistive-listening-systems"; +import _FaAsterisk from "./asterisk"; +import _FaAt from "./at"; +import _FaAudioDescription from "./audio-description"; +import _FaAutomobile from "./automobile"; +import _FaBackward from "./backward"; +import _FaBalanceScale from "./balance-scale"; +import _FaBan from "./ban"; +import _FaBank from "./bank"; +import _FaBarChart from "./bar-chart"; +import _FaBarcode from "./barcode"; +import _FaBars from "./bars"; +import _FaBattery0 from "./battery-0"; +import _FaBattery1 from "./battery-1"; +import _FaBattery2 from "./battery-2"; +import _FaBattery3 from "./battery-3"; +import _FaBattery4 from "./battery-4"; +import _FaBed from "./bed"; +import _FaBeer from "./beer"; +import _FaBehanceSquare from "./behance-square"; +import _FaBehance from "./behance"; +import _FaBellO from "./bell-o"; +import _FaBellSlashO from "./bell-slash-o"; +import _FaBellSlash from "./bell-slash"; +import _FaBell from "./bell"; +import _FaBicycle from "./bicycle"; +import _FaBinoculars from "./binoculars"; +import _FaBirthdayCake from "./birthday-cake"; +import _FaBitbucketSquare from "./bitbucket-square"; +import _FaBitbucket from "./bitbucket"; +import _FaBitcoin from "./bitcoin"; +import _FaBlackTie from "./black-tie"; +import _FaBlind from "./blind"; +import _FaBluetoothB from "./bluetooth-b"; +import _FaBluetooth from "./bluetooth"; +import _FaBold from "./bold"; +import _FaBolt from "./bolt"; +import _FaBomb from "./bomb"; +import _FaBook from "./book"; +import _FaBookmarkO from "./bookmark-o"; +import _FaBookmark from "./bookmark"; +import _FaBraille from "./braille"; +import _FaBriefcase from "./briefcase"; +import _FaBug from "./bug"; +import _FaBuildingO from "./building-o"; +import _FaBuilding from "./building"; +import _FaBullhorn from "./bullhorn"; +import _FaBullseye from "./bullseye"; +import _FaBus from "./bus"; +import _FaBuysellads from "./buysellads"; +import _FaCab from "./cab"; +import _FaCalculator from "./calculator"; +import _FaCalendarCheckO from "./calendar-check-o"; +import _FaCalendarMinusO from "./calendar-minus-o"; +import _FaCalendarO from "./calendar-o"; +import _FaCalendarPlusO from "./calendar-plus-o"; +import _FaCalendarTimesO from "./calendar-times-o"; +import _FaCalendar from "./calendar"; +import _FaCameraRetro from "./camera-retro"; +import _FaCamera from "./camera"; +import _FaCaretDown from "./caret-down"; +import _FaCaretLeft from "./caret-left"; +import _FaCaretRight from "./caret-right"; +import _FaCaretSquareODown from "./caret-square-o-down"; +import _FaCaretSquareOLeft from "./caret-square-o-left"; +import _FaCaretSquareORight from "./caret-square-o-right"; +import _FaCaretSquareOUp from "./caret-square-o-up"; +import _FaCaretUp from "./caret-up"; +import _FaCartArrowDown from "./cart-arrow-down"; +import _FaCartPlus from "./cart-plus"; +import _FaCcAmex from "./cc-amex"; +import _FaCcDinersClub from "./cc-diners-club"; +import _FaCcDiscover from "./cc-discover"; +import _FaCcJcb from "./cc-jcb"; +import _FaCcMastercard from "./cc-mastercard"; +import _FaCcPaypal from "./cc-paypal"; +import _FaCcStripe from "./cc-stripe"; +import _FaCcVisa from "./cc-visa"; +import _FaCc from "./cc"; +import _FaCertificate from "./certificate"; +import _FaChainBroken from "./chain-broken"; +import _FaChain from "./chain"; +import _FaCheckCircleO from "./check-circle-o"; +import _FaCheckCircle from "./check-circle"; +import _FaCheckSquareO from "./check-square-o"; +import _FaCheckSquare from "./check-square"; +import _FaCheck from "./check"; +import _FaChevronCircleDown from "./chevron-circle-down"; +import _FaChevronCircleLeft from "./chevron-circle-left"; +import _FaChevronCircleRight from "./chevron-circle-right"; +import _FaChevronCircleUp from "./chevron-circle-up"; +import _FaChevronDown from "./chevron-down"; +import _FaChevronLeft from "./chevron-left"; +import _FaChevronRight from "./chevron-right"; +import _FaChevronUp from "./chevron-up"; +import _FaChild from "./child"; +import _FaChrome from "./chrome"; +import _FaCircleONotch from "./circle-o-notch"; +import _FaCircleO from "./circle-o"; +import _FaCircleThin from "./circle-thin"; +import _FaCircle from "./circle"; +import _FaClipboard from "./clipboard"; +import _FaClockO from "./clock-o"; +import _FaClone from "./clone"; +import _FaClose from "./close"; +import _FaCloudDownload from "./cloud-download"; +import _FaCloudUpload from "./cloud-upload"; +import _FaCloud from "./cloud"; +import _FaCny from "./cny"; +import _FaCodeFork from "./code-fork"; +import _FaCode from "./code"; +import _FaCodepen from "./codepen"; +import _FaCodiepie from "./codiepie"; +import _FaCoffee from "./coffee"; +import _FaCog from "./cog"; +import _FaCogs from "./cogs"; +import _FaColumns from "./columns"; +import _FaCommentO from "./comment-o"; +import _FaComment from "./comment"; +import _FaCommentingO from "./commenting-o"; +import _FaCommenting from "./commenting"; +import _FaCommentsO from "./comments-o"; +import _FaComments from "./comments"; +import _FaCompass from "./compass"; +import _FaCompress from "./compress"; +import _FaConnectdevelop from "./connectdevelop"; +import _FaContao from "./contao"; +import _FaCopy from "./copy"; +import _FaCopyright from "./copyright"; +import _FaCreativeCommons from "./creative-commons"; +import _FaCreditCardAlt from "./credit-card-alt"; +import _FaCreditCard from "./credit-card"; +import _FaCrop from "./crop"; +import _FaCrosshairs from "./crosshairs"; +import _FaCss3 from "./css3"; +import _FaCube from "./cube"; +import _FaCubes from "./cubes"; +import _FaCut from "./cut"; +import _FaCutlery from "./cutlery"; +import _FaDashboard from "./dashboard"; +import _FaDashcube from "./dashcube"; +import _FaDatabase from "./database"; +import _FaDeaf from "./deaf"; +import _FaDedent from "./dedent"; +import _FaDelicious from "./delicious"; +import _FaDesktop from "./desktop"; +import _FaDeviantart from "./deviantart"; +import _FaDiamond from "./diamond"; +import _FaDigg from "./digg"; +import _FaDollar from "./dollar"; +import _FaDotCircleO from "./dot-circle-o"; +import _FaDownload from "./download"; +import _FaDribbble from "./dribbble"; +import _FaDropbox from "./dropbox"; +import _FaDrupal from "./drupal"; +import _FaEdge from "./edge"; +import _FaEdit from "./edit"; +import _FaEject from "./eject"; +import _FaEllipsisH from "./ellipsis-h"; +import _FaEllipsisV from "./ellipsis-v"; +import _FaEmpire from "./empire"; +import _FaEnvelopeO from "./envelope-o"; +import _FaEnvelopeSquare from "./envelope-square"; +import _FaEnvelope from "./envelope"; +import _FaEnvira from "./envira"; +import _FaEraser from "./eraser"; +import _FaEur from "./eur"; +import _FaExchange from "./exchange"; +import _FaExclamationCircle from "./exclamation-circle"; +import _FaExclamationTriangle from "./exclamation-triangle"; +import _FaExclamation from "./exclamation"; +import _FaExpand from "./expand"; +import _FaExpeditedssl from "./expeditedssl"; +import _FaExternalLinkSquare from "./external-link-square"; +import _FaExternalLink from "./external-link"; +import _FaEyeSlash from "./eye-slash"; +import _FaEye from "./eye"; +import _FaEyedropper from "./eyedropper"; +import _FaFacebookOfficial from "./facebook-official"; +import _FaFacebookSquare from "./facebook-square"; +import _FaFacebook from "./facebook"; +import _FaFastBackward from "./fast-backward"; +import _FaFastForward from "./fast-forward"; +import _FaFax from "./fax"; +import _FaFeed from "./feed"; +import _FaFemale from "./female"; +import _FaFighterJet from "./fighter-jet"; +import _FaFileArchiveO from "./file-archive-o"; +import _FaFileAudioO from "./file-audio-o"; +import _FaFileCodeO from "./file-code-o"; +import _FaFileExcelO from "./file-excel-o"; +import _FaFileImageO from "./file-image-o"; +import _FaFileMovieO from "./file-movie-o"; +import _FaFileO from "./file-o"; +import _FaFilePdfO from "./file-pdf-o"; +import _FaFilePowerpointO from "./file-powerpoint-o"; +import _FaFileTextO from "./file-text-o"; +import _FaFileText from "./file-text"; +import _FaFileWordO from "./file-word-o"; +import _FaFile from "./file"; +import _FaFilm from "./film"; +import _FaFilter from "./filter"; +import _FaFireExtinguisher from "./fire-extinguisher"; +import _FaFire from "./fire"; +import _FaFirefox from "./firefox"; +import _FaFlagCheckered from "./flag-checkered"; +import _FaFlagO from "./flag-o"; +import _FaFlag from "./flag"; +import _FaFlask from "./flask"; +import _FaFlickr from "./flickr"; +import _FaFloppyO from "./floppy-o"; +import _FaFolderO from "./folder-o"; +import _FaFolderOpenO from "./folder-open-o"; +import _FaFolderOpen from "./folder-open"; +import _FaFolder from "./folder"; +import _FaFont from "./font"; +import _FaFonticons from "./fonticons"; +import _FaFortAwesome from "./fort-awesome"; +import _FaForumbee from "./forumbee"; +import _FaForward from "./forward"; +import _FaFoursquare from "./foursquare"; +import _FaFrownO from "./frown-o"; +import _FaFutbolO from "./futbol-o"; +import _FaGamepad from "./gamepad"; +import _FaGavel from "./gavel"; +import _FaGbp from "./gbp"; +import _FaGenderless from "./genderless"; +import _FaGetPocket from "./get-pocket"; +import _FaGgCircle from "./gg-circle"; +import _FaGg from "./gg"; +import _FaGift from "./gift"; +import _FaGitSquare from "./git-square"; +import _FaGit from "./git"; +import _FaGithubAlt from "./github-alt"; +import _FaGithubSquare from "./github-square"; +import _FaGithub from "./github"; +import _FaGitlab from "./gitlab"; +import _FaGittip from "./gittip"; +import _FaGlass from "./glass"; +import _FaGlideG from "./glide-g"; +import _FaGlide from "./glide"; +import _FaGlobe from "./globe"; +import _FaGooglePlusSquare from "./google-plus-square"; +import _FaGooglePlus from "./google-plus"; +import _FaGoogleWallet from "./google-wallet"; +import _FaGoogle from "./google"; +import _FaGraduationCap from "./graduation-cap"; +import _FaGroup from "./group"; +import _FaHSquare from "./h-square"; +import _FaHackerNews from "./hacker-news"; +import _FaHandGrabO from "./hand-grab-o"; +import _FaHandLizardO from "./hand-lizard-o"; +import _FaHandODown from "./hand-o-down"; +import _FaHandOLeft from "./hand-o-left"; +import _FaHandORight from "./hand-o-right"; +import _FaHandOUp from "./hand-o-up"; +import _FaHandPaperO from "./hand-paper-o"; +import _FaHandPeaceO from "./hand-peace-o"; +import _FaHandPointerO from "./hand-pointer-o"; +import _FaHandScissorsO from "./hand-scissors-o"; +import _FaHandSpockO from "./hand-spock-o"; +import _FaHashtag from "./hashtag"; +import _FaHddO from "./hdd-o"; +import _FaHeader from "./header"; +import _FaHeadphones from "./headphones"; +import _FaHeartO from "./heart-o"; +import _FaHeart from "./heart"; +import _FaHeartbeat from "./heartbeat"; +import _FaHistory from "./history"; +import _FaHome from "./home"; +import _FaHospitalO from "./hospital-o"; +import _FaHourglass1 from "./hourglass-1"; +import _FaHourglass2 from "./hourglass-2"; +import _FaHourglass3 from "./hourglass-3"; +import _FaHourglassO from "./hourglass-o"; +import _FaHourglass from "./hourglass"; +import _FaHouzz from "./houzz"; +import _FaHtml5 from "./html5"; +import _FaICursor from "./i-cursor"; +import _FaIls from "./ils"; +import _FaImage from "./image"; +import _FaInbox from "./inbox"; +import _FaIndent from "./indent"; +import _FaIndustry from "./industry"; +import _FaInfoCircle from "./info-circle"; +import _FaInfo from "./info"; +import _FaInr from "./inr"; +import _FaInstagram from "./instagram"; +import _FaInternetExplorer from "./internet-explorer"; +import _FaIntersex from "./intersex"; +import _FaIoxhost from "./ioxhost"; +import _FaItalic from "./italic"; +import _FaJoomla from "./joomla"; +import _FaJsfiddle from "./jsfiddle"; +import _FaKey from "./key"; +import _FaKeyboardO from "./keyboard-o"; +import _FaKrw from "./krw"; +import _FaLanguage from "./language"; +import _FaLaptop from "./laptop"; +import _FaLastfmSquare from "./lastfm-square"; +import _FaLastfm from "./lastfm"; +import _FaLeaf from "./leaf"; +import _FaLeanpub from "./leanpub"; +import _FaLemonO from "./lemon-o"; +import _FaLevelDown from "./level-down"; +import _FaLevelUp from "./level-up"; +import _FaLifeBouy from "./life-bouy"; +import _FaLightbulbO from "./lightbulb-o"; +import _FaLineChart from "./line-chart"; +import _FaLinkedinSquare from "./linkedin-square"; +import _FaLinkedin from "./linkedin"; +import _FaLinux from "./linux"; +import _FaListAlt from "./list-alt"; +import _FaListOl from "./list-ol"; +import _FaListUl from "./list-ul"; +import _FaList from "./list"; +import _FaLocationArrow from "./location-arrow"; +import _FaLock from "./lock"; +import _FaLongArrowDown from "./long-arrow-down"; +import _FaLongArrowLeft from "./long-arrow-left"; +import _FaLongArrowRight from "./long-arrow-right"; +import _FaLongArrowUp from "./long-arrow-up"; +import _FaLowVision from "./low-vision"; +import _FaMagic from "./magic"; +import _FaMagnet from "./magnet"; +import _FaMailForward from "./mail-forward"; +import _FaMailReplyAll from "./mail-reply-all"; +import _FaMailReply from "./mail-reply"; +import _FaMale from "./male"; +import _FaMapMarker from "./map-marker"; +import _FaMapO from "./map-o"; +import _FaMapPin from "./map-pin"; +import _FaMapSigns from "./map-signs"; +import _FaMap from "./map"; +import _FaMarsDouble from "./mars-double"; +import _FaMarsStrokeH from "./mars-stroke-h"; +import _FaMarsStrokeV from "./mars-stroke-v"; +import _FaMarsStroke from "./mars-stroke"; +import _FaMars from "./mars"; +import _FaMaxcdn from "./maxcdn"; +import _FaMeanpath from "./meanpath"; +import _FaMedium from "./medium"; +import _FaMedkit from "./medkit"; +import _FaMehO from "./meh-o"; +import _FaMercury from "./mercury"; +import _FaMicrophoneSlash from "./microphone-slash"; +import _FaMicrophone from "./microphone"; +import _FaMinusCircle from "./minus-circle"; +import _FaMinusSquareO from "./minus-square-o"; +import _FaMinusSquare from "./minus-square"; +import _FaMinus from "./minus"; +import _FaMixcloud from "./mixcloud"; +import _FaMobile from "./mobile"; +import _FaModx from "./modx"; +import _FaMoney from "./money"; +import _FaMoonO from "./moon-o"; +import _FaMotorcycle from "./motorcycle"; +import _FaMousePointer from "./mouse-pointer"; +import _FaMusic from "./music"; +import _FaNeuter from "./neuter"; +import _FaNewspaperO from "./newspaper-o"; +import _FaObjectGroup from "./object-group"; +import _FaObjectUngroup from "./object-ungroup"; +import _FaOdnoklassnikiSquare from "./odnoklassniki-square"; +import _FaOdnoklassniki from "./odnoklassniki"; +import _FaOpencart from "./opencart"; +import _FaOpenid from "./openid"; +import _FaOpera from "./opera"; +import _FaOptinMonster from "./optin-monster"; +import _FaPagelines from "./pagelines"; +import _FaPaintBrush from "./paint-brush"; +import _FaPaperPlaneO from "./paper-plane-o"; +import _FaPaperPlane from "./paper-plane"; +import _FaPaperclip from "./paperclip"; +import _FaParagraph from "./paragraph"; +import _FaPauseCircleO from "./pause-circle-o"; +import _FaPauseCircle from "./pause-circle"; +import _FaPause from "./pause"; +import _FaPaw from "./paw"; +import _FaPaypal from "./paypal"; +import _FaPencilSquare from "./pencil-square"; +import _FaPencil from "./pencil"; +import _FaPercent from "./percent"; +import _FaPhoneSquare from "./phone-square"; +import _FaPhone from "./phone"; +import _FaPieChart from "./pie-chart"; +import _FaPiedPiperAlt from "./pied-piper-alt"; +import _FaPiedPiper from "./pied-piper"; +import _FaPinterestP from "./pinterest-p"; +import _FaPinterestSquare from "./pinterest-square"; +import _FaPinterest from "./pinterest"; +import _FaPlane from "./plane"; +import _FaPlayCircleO from "./play-circle-o"; +import _FaPlayCircle from "./play-circle"; +import _FaPlay from "./play"; +import _FaPlug from "./plug"; +import _FaPlusCircle from "./plus-circle"; +import _FaPlusSquareO from "./plus-square-o"; +import _FaPlusSquare from "./plus-square"; +import _FaPlus from "./plus"; +import _FaPowerOff from "./power-off"; +import _FaPrint from "./print"; +import _FaProductHunt from "./product-hunt"; +import _FaPuzzlePiece from "./puzzle-piece"; +import _FaQq from "./qq"; +import _FaQrcode from "./qrcode"; +import _FaQuestionCircleO from "./question-circle-o"; +import _FaQuestionCircle from "./question-circle"; +import _FaQuestion from "./question"; +import _FaQuoteLeft from "./quote-left"; +import _FaQuoteRight from "./quote-right"; +import _FaRa from "./ra"; +import _FaRandom from "./random"; +import _FaRecycle from "./recycle"; +import _FaRedditAlien from "./reddit-alien"; +import _FaRedditSquare from "./reddit-square"; +import _FaReddit from "./reddit"; +import _FaRefresh from "./refresh"; +import _FaRegistered from "./registered"; +import _FaRenren from "./renren"; +import _FaRepeat from "./repeat"; +import _FaRetweet from "./retweet"; +import _FaRoad from "./road"; +import _FaRocket from "./rocket"; +import _FaRotateLeft from "./rotate-left"; +import _FaRouble from "./rouble"; +import _FaRssSquare from "./rss-square"; +import _FaSafari from "./safari"; +import _FaScribd from "./scribd"; +import _FaSearchMinus from "./search-minus"; +import _FaSearchPlus from "./search-plus"; +import _FaSearch from "./search"; +import _FaSellsy from "./sellsy"; +import _FaServer from "./server"; +import _FaShareAltSquare from "./share-alt-square"; +import _FaShareAlt from "./share-alt"; +import _FaShareSquareO from "./share-square-o"; +import _FaShareSquare from "./share-square"; +import _FaShield from "./shield"; +import _FaShip from "./ship"; +import _FaShirtsinbulk from "./shirtsinbulk"; +import _FaShoppingBag from "./shopping-bag"; +import _FaShoppingBasket from "./shopping-basket"; +import _FaShoppingCart from "./shopping-cart"; +import _FaSignIn from "./sign-in"; +import _FaSignLanguage from "./sign-language"; +import _FaSignOut from "./sign-out"; +import _FaSignal from "./signal"; +import _FaSimplybuilt from "./simplybuilt"; +import _FaSitemap from "./sitemap"; +import _FaSkyatlas from "./skyatlas"; +import _FaSkype from "./skype"; +import _FaSlack from "./slack"; +import _FaSliders from "./sliders"; +import _FaSlideshare from "./slideshare"; +import _FaSmileO from "./smile-o"; +import _FaSnapchatGhost from "./snapchat-ghost"; +import _FaSnapchatSquare from "./snapchat-square"; +import _FaSnapchat from "./snapchat"; +import _FaSortAlphaAsc from "./sort-alpha-asc"; +import _FaSortAlphaDesc from "./sort-alpha-desc"; +import _FaSortAmountAsc from "./sort-amount-asc"; +import _FaSortAmountDesc from "./sort-amount-desc"; +import _FaSortAsc from "./sort-asc"; +import _FaSortDesc from "./sort-desc"; +import _FaSortNumericAsc from "./sort-numeric-asc"; +import _FaSortNumericDesc from "./sort-numeric-desc"; +import _FaSort from "./sort"; +import _FaSoundcloud from "./soundcloud"; +import _FaSpaceShuttle from "./space-shuttle"; +import _FaSpinner from "./spinner"; +import _FaSpoon from "./spoon"; +import _FaSpotify from "./spotify"; +import _FaSquareO from "./square-o"; +import _FaSquare from "./square"; +import _FaStackExchange from "./stack-exchange"; +import _FaStackOverflow from "./stack-overflow"; +import _FaStarHalfEmpty from "./star-half-empty"; +import _FaStarHalf from "./star-half"; +import _FaStarO from "./star-o"; +import _FaStar from "./star"; +import _FaSteamSquare from "./steam-square"; +import _FaSteam from "./steam"; +import _FaStepBackward from "./step-backward"; +import _FaStepForward from "./step-forward"; +import _FaStethoscope from "./stethoscope"; +import _FaStickyNoteO from "./sticky-note-o"; +import _FaStickyNote from "./sticky-note"; +import _FaStopCircleO from "./stop-circle-o"; +import _FaStopCircle from "./stop-circle"; +import _FaStop from "./stop"; +import _FaStreetView from "./street-view"; +import _FaStrikethrough from "./strikethrough"; +import _FaStumbleuponCircle from "./stumbleupon-circle"; +import _FaStumbleupon from "./stumbleupon"; +import _FaSubscript from "./subscript"; +import _FaSubway from "./subway"; +import _FaSuitcase from "./suitcase"; +import _FaSunO from "./sun-o"; +import _FaSuperscript from "./superscript"; +import _FaTable from "./table"; +import _FaTablet from "./tablet"; +import _FaTag from "./tag"; +import _FaTags from "./tags"; +import _FaTasks from "./tasks"; +import _FaTelevision from "./television"; +import _FaTencentWeibo from "./tencent-weibo"; +import _FaTerminal from "./terminal"; +import _FaTextHeight from "./text-height"; +import _FaTextWidth from "./text-width"; +import _FaThLarge from "./th-large"; +import _FaThList from "./th-list"; +import _FaTh from "./th"; +import _FaThumbTack from "./thumb-tack"; +import _FaThumbsDown from "./thumbs-down"; +import _FaThumbsODown from "./thumbs-o-down"; +import _FaThumbsOUp from "./thumbs-o-up"; +import _FaThumbsUp from "./thumbs-up"; +import _FaTicket from "./ticket"; +import _FaTimesCircleO from "./times-circle-o"; +import _FaTimesCircle from "./times-circle"; +import _FaTint from "./tint"; +import _FaToggleOff from "./toggle-off"; +import _FaToggleOn from "./toggle-on"; +import _FaTrademark from "./trademark"; +import _FaTrain from "./train"; +import _FaTransgenderAlt from "./transgender-alt"; +import _FaTrashO from "./trash-o"; +import _FaTrash from "./trash"; +import _FaTree from "./tree"; +import _FaTrello from "./trello"; +import _FaTripadvisor from "./tripadvisor"; +import _FaTrophy from "./trophy"; +import _FaTruck from "./truck"; +import _FaTry from "./try"; +import _FaTty from "./tty"; +import _FaTumblrSquare from "./tumblr-square"; +import _FaTumblr from "./tumblr"; +import _FaTwitch from "./twitch"; +import _FaTwitterSquare from "./twitter-square"; +import _FaTwitter from "./twitter"; +import _FaUmbrella from "./umbrella"; +import _FaUnderline from "./underline"; +import _FaUniversalAccess from "./universal-access"; +import _FaUnlockAlt from "./unlock-alt"; +import _FaUnlock from "./unlock"; +import _FaUpload from "./upload"; +import _FaUsb from "./usb"; +import _FaUserMd from "./user-md"; +import _FaUserPlus from "./user-plus"; +import _FaUserSecret from "./user-secret"; +import _FaUserTimes from "./user-times"; +import _FaUser from "./user"; +import _FaVenusDouble from "./venus-double"; +import _FaVenusMars from "./venus-mars"; +import _FaVenus from "./venus"; +import _FaViacoin from "./viacoin"; +import _FaViadeoSquare from "./viadeo-square"; +import _FaViadeo from "./viadeo"; +import _FaVideoCamera from "./video-camera"; +import _FaVimeoSquare from "./vimeo-square"; +import _FaVimeo from "./vimeo"; +import _FaVine from "./vine"; +import _FaVk from "./vk"; +import _FaVolumeControlPhone from "./volume-control-phone"; +import _FaVolumeDown from "./volume-down"; +import _FaVolumeOff from "./volume-off"; +import _FaVolumeUp from "./volume-up"; +import _FaWechat from "./wechat"; +import _FaWeibo from "./weibo"; +import _FaWhatsapp from "./whatsapp"; +import _FaWheelchairAlt from "./wheelchair-alt"; +import _FaWheelchair from "./wheelchair"; +import _FaWifi from "./wifi"; +import _FaWikipediaW from "./wikipedia-w"; +import _FaWindows from "./windows"; +import _FaWordpress from "./wordpress"; +import _FaWpbeginner from "./wpbeginner"; +import _FaWpforms from "./wpforms"; +import _FaWrench from "./wrench"; +import _FaXingSquare from "./xing-square"; +import _FaXing from "./xing"; +import _FaYCombinator from "./y-combinator"; +import _FaYahoo from "./yahoo"; +import _FaYelp from "./yelp"; +import _FaYoutubePlay from "./youtube-play"; +import _FaYoutubeSquare from "./youtube-square"; +import _FaYoutube from "./youtube"; +export var Fa500px: typeof _Fa500px; +export var FaAdjust: typeof _FaAdjust; +export var FaAdn: typeof _FaAdn; +export var FaAlignCenter: typeof _FaAlignCenter; +export var FaAlignJustify: typeof _FaAlignJustify; +export var FaAlignLeft: typeof _FaAlignLeft; +export var FaAlignRight: typeof _FaAlignRight; +export var FaAmazon: typeof _FaAmazon; +export var FaAmbulance: typeof _FaAmbulance; +export var FaAmericanSignLanguageInterpreting: typeof _FaAmericanSignLanguageInterpreting; +export var FaAnchor: typeof _FaAnchor; +export var FaAndroid: typeof _FaAndroid; +export var FaAngellist: typeof _FaAngellist; +export var FaAngleDoubleDown: typeof _FaAngleDoubleDown; +export var FaAngleDoubleLeft: typeof _FaAngleDoubleLeft; +export var FaAngleDoubleRight: typeof _FaAngleDoubleRight; +export var FaAngleDoubleUp: typeof _FaAngleDoubleUp; +export var FaAngleDown: typeof _FaAngleDown; +export var FaAngleLeft: typeof _FaAngleLeft; +export var FaAngleRight: typeof _FaAngleRight; +export var FaAngleUp: typeof _FaAngleUp; +export var FaApple: typeof _FaApple; +export var FaArchive: typeof _FaArchive; +export var FaAreaChart: typeof _FaAreaChart; +export var FaArrowCircleDown: typeof _FaArrowCircleDown; +export var FaArrowCircleLeft: typeof _FaArrowCircleLeft; +export var FaArrowCircleODown: typeof _FaArrowCircleODown; +export var FaArrowCircleOLeft: typeof _FaArrowCircleOLeft; +export var FaArrowCircleORight: typeof _FaArrowCircleORight; +export var FaArrowCircleOUp: typeof _FaArrowCircleOUp; +export var FaArrowCircleRight: typeof _FaArrowCircleRight; +export var FaArrowCircleUp: typeof _FaArrowCircleUp; +export var FaArrowDown: typeof _FaArrowDown; +export var FaArrowLeft: typeof _FaArrowLeft; +export var FaArrowRight: typeof _FaArrowRight; +export var FaArrowUp: typeof _FaArrowUp; +export var FaArrowsAlt: typeof _FaArrowsAlt; +export var FaArrowsH: typeof _FaArrowsH; +export var FaArrowsV: typeof _FaArrowsV; +export var FaArrows: typeof _FaArrows; +export var FaAssistiveListeningSystems: typeof _FaAssistiveListeningSystems; +export var FaAsterisk: typeof _FaAsterisk; +export var FaAt: typeof _FaAt; +export var FaAudioDescription: typeof _FaAudioDescription; +export var FaAutomobile: typeof _FaAutomobile; +export var FaBackward: typeof _FaBackward; +export var FaBalanceScale: typeof _FaBalanceScale; +export var FaBan: typeof _FaBan; +export var FaBank: typeof _FaBank; +export var FaBarChart: typeof _FaBarChart; +export var FaBarcode: typeof _FaBarcode; +export var FaBars: typeof _FaBars; +export var FaBattery0: typeof _FaBattery0; +export var FaBattery1: typeof _FaBattery1; +export var FaBattery2: typeof _FaBattery2; +export var FaBattery3: typeof _FaBattery3; +export var FaBattery4: typeof _FaBattery4; +export var FaBed: typeof _FaBed; +export var FaBeer: typeof _FaBeer; +export var FaBehanceSquare: typeof _FaBehanceSquare; +export var FaBehance: typeof _FaBehance; +export var FaBellO: typeof _FaBellO; +export var FaBellSlashO: typeof _FaBellSlashO; +export var FaBellSlash: typeof _FaBellSlash; +export var FaBell: typeof _FaBell; +export var FaBicycle: typeof _FaBicycle; +export var FaBinoculars: typeof _FaBinoculars; +export var FaBirthdayCake: typeof _FaBirthdayCake; +export var FaBitbucketSquare: typeof _FaBitbucketSquare; +export var FaBitbucket: typeof _FaBitbucket; +export var FaBitcoin: typeof _FaBitcoin; +export var FaBlackTie: typeof _FaBlackTie; +export var FaBlind: typeof _FaBlind; +export var FaBluetoothB: typeof _FaBluetoothB; +export var FaBluetooth: typeof _FaBluetooth; +export var FaBold: typeof _FaBold; +export var FaBolt: typeof _FaBolt; +export var FaBomb: typeof _FaBomb; +export var FaBook: typeof _FaBook; +export var FaBookmarkO: typeof _FaBookmarkO; +export var FaBookmark: typeof _FaBookmark; +export var FaBraille: typeof _FaBraille; +export var FaBriefcase: typeof _FaBriefcase; +export var FaBug: typeof _FaBug; +export var FaBuildingO: typeof _FaBuildingO; +export var FaBuilding: typeof _FaBuilding; +export var FaBullhorn: typeof _FaBullhorn; +export var FaBullseye: typeof _FaBullseye; +export var FaBus: typeof _FaBus; +export var FaBuysellads: typeof _FaBuysellads; +export var FaCab: typeof _FaCab; +export var FaCalculator: typeof _FaCalculator; +export var FaCalendarCheckO: typeof _FaCalendarCheckO; +export var FaCalendarMinusO: typeof _FaCalendarMinusO; +export var FaCalendarO: typeof _FaCalendarO; +export var FaCalendarPlusO: typeof _FaCalendarPlusO; +export var FaCalendarTimesO: typeof _FaCalendarTimesO; +export var FaCalendar: typeof _FaCalendar; +export var FaCameraRetro: typeof _FaCameraRetro; +export var FaCamera: typeof _FaCamera; +export var FaCaretDown: typeof _FaCaretDown; +export var FaCaretLeft: typeof _FaCaretLeft; +export var FaCaretRight: typeof _FaCaretRight; +export var FaCaretSquareODown: typeof _FaCaretSquareODown; +export var FaCaretSquareOLeft: typeof _FaCaretSquareOLeft; +export var FaCaretSquareORight: typeof _FaCaretSquareORight; +export var FaCaretSquareOUp: typeof _FaCaretSquareOUp; +export var FaCaretUp: typeof _FaCaretUp; +export var FaCartArrowDown: typeof _FaCartArrowDown; +export var FaCartPlus: typeof _FaCartPlus; +export var FaCcAmex: typeof _FaCcAmex; +export var FaCcDinersClub: typeof _FaCcDinersClub; +export var FaCcDiscover: typeof _FaCcDiscover; +export var FaCcJcb: typeof _FaCcJcb; +export var FaCcMastercard: typeof _FaCcMastercard; +export var FaCcPaypal: typeof _FaCcPaypal; +export var FaCcStripe: typeof _FaCcStripe; +export var FaCcVisa: typeof _FaCcVisa; +export var FaCc: typeof _FaCc; +export var FaCertificate: typeof _FaCertificate; +export var FaChainBroken: typeof _FaChainBroken; +export var FaChain: typeof _FaChain; +export var FaCheckCircleO: typeof _FaCheckCircleO; +export var FaCheckCircle: typeof _FaCheckCircle; +export var FaCheckSquareO: typeof _FaCheckSquareO; +export var FaCheckSquare: typeof _FaCheckSquare; +export var FaCheck: typeof _FaCheck; +export var FaChevronCircleDown: typeof _FaChevronCircleDown; +export var FaChevronCircleLeft: typeof _FaChevronCircleLeft; +export var FaChevronCircleRight: typeof _FaChevronCircleRight; +export var FaChevronCircleUp: typeof _FaChevronCircleUp; +export var FaChevronDown: typeof _FaChevronDown; +export var FaChevronLeft: typeof _FaChevronLeft; +export var FaChevronRight: typeof _FaChevronRight; +export var FaChevronUp: typeof _FaChevronUp; +export var FaChild: typeof _FaChild; +export var FaChrome: typeof _FaChrome; +export var FaCircleONotch: typeof _FaCircleONotch; +export var FaCircleO: typeof _FaCircleO; +export var FaCircleThin: typeof _FaCircleThin; +export var FaCircle: typeof _FaCircle; +export var FaClipboard: typeof _FaClipboard; +export var FaClockO: typeof _FaClockO; +export var FaClone: typeof _FaClone; +export var FaClose: typeof _FaClose; +export var FaCloudDownload: typeof _FaCloudDownload; +export var FaCloudUpload: typeof _FaCloudUpload; +export var FaCloud: typeof _FaCloud; +export var FaCny: typeof _FaCny; +export var FaCodeFork: typeof _FaCodeFork; +export var FaCode: typeof _FaCode; +export var FaCodepen: typeof _FaCodepen; +export var FaCodiepie: typeof _FaCodiepie; +export var FaCoffee: typeof _FaCoffee; +export var FaCog: typeof _FaCog; +export var FaCogs: typeof _FaCogs; +export var FaColumns: typeof _FaColumns; +export var FaCommentO: typeof _FaCommentO; +export var FaComment: typeof _FaComment; +export var FaCommentingO: typeof _FaCommentingO; +export var FaCommenting: typeof _FaCommenting; +export var FaCommentsO: typeof _FaCommentsO; +export var FaComments: typeof _FaComments; +export var FaCompass: typeof _FaCompass; +export var FaCompress: typeof _FaCompress; +export var FaConnectdevelop: typeof _FaConnectdevelop; +export var FaContao: typeof _FaContao; +export var FaCopy: typeof _FaCopy; +export var FaCopyright: typeof _FaCopyright; +export var FaCreativeCommons: typeof _FaCreativeCommons; +export var FaCreditCardAlt: typeof _FaCreditCardAlt; +export var FaCreditCard: typeof _FaCreditCard; +export var FaCrop: typeof _FaCrop; +export var FaCrosshairs: typeof _FaCrosshairs; +export var FaCss3: typeof _FaCss3; +export var FaCube: typeof _FaCube; +export var FaCubes: typeof _FaCubes; +export var FaCut: typeof _FaCut; +export var FaCutlery: typeof _FaCutlery; +export var FaDashboard: typeof _FaDashboard; +export var FaDashcube: typeof _FaDashcube; +export var FaDatabase: typeof _FaDatabase; +export var FaDeaf: typeof _FaDeaf; +export var FaDedent: typeof _FaDedent; +export var FaDelicious: typeof _FaDelicious; +export var FaDesktop: typeof _FaDesktop; +export var FaDeviantart: typeof _FaDeviantart; +export var FaDiamond: typeof _FaDiamond; +export var FaDigg: typeof _FaDigg; +export var FaDollar: typeof _FaDollar; +export var FaDotCircleO: typeof _FaDotCircleO; +export var FaDownload: typeof _FaDownload; +export var FaDribbble: typeof _FaDribbble; +export var FaDropbox: typeof _FaDropbox; +export var FaDrupal: typeof _FaDrupal; +export var FaEdge: typeof _FaEdge; +export var FaEdit: typeof _FaEdit; +export var FaEject: typeof _FaEject; +export var FaEllipsisH: typeof _FaEllipsisH; +export var FaEllipsisV: typeof _FaEllipsisV; +export var FaEmpire: typeof _FaEmpire; +export var FaEnvelopeO: typeof _FaEnvelopeO; +export var FaEnvelopeSquare: typeof _FaEnvelopeSquare; +export var FaEnvelope: typeof _FaEnvelope; +export var FaEnvira: typeof _FaEnvira; +export var FaEraser: typeof _FaEraser; +export var FaEur: typeof _FaEur; +export var FaExchange: typeof _FaExchange; +export var FaExclamationCircle: typeof _FaExclamationCircle; +export var FaExclamationTriangle: typeof _FaExclamationTriangle; +export var FaExclamation: typeof _FaExclamation; +export var FaExpand: typeof _FaExpand; +export var FaExpeditedssl: typeof _FaExpeditedssl; +export var FaExternalLinkSquare: typeof _FaExternalLinkSquare; +export var FaExternalLink: typeof _FaExternalLink; +export var FaEyeSlash: typeof _FaEyeSlash; +export var FaEye: typeof _FaEye; +export var FaEyedropper: typeof _FaEyedropper; +export var FaFacebookOfficial: typeof _FaFacebookOfficial; +export var FaFacebookSquare: typeof _FaFacebookSquare; +export var FaFacebook: typeof _FaFacebook; +export var FaFastBackward: typeof _FaFastBackward; +export var FaFastForward: typeof _FaFastForward; +export var FaFax: typeof _FaFax; +export var FaFeed: typeof _FaFeed; +export var FaFemale: typeof _FaFemale; +export var FaFighterJet: typeof _FaFighterJet; +export var FaFileArchiveO: typeof _FaFileArchiveO; +export var FaFileAudioO: typeof _FaFileAudioO; +export var FaFileCodeO: typeof _FaFileCodeO; +export var FaFileExcelO: typeof _FaFileExcelO; +export var FaFileImageO: typeof _FaFileImageO; +export var FaFileMovieO: typeof _FaFileMovieO; +export var FaFileO: typeof _FaFileO; +export var FaFilePdfO: typeof _FaFilePdfO; +export var FaFilePowerpointO: typeof _FaFilePowerpointO; +export var FaFileTextO: typeof _FaFileTextO; +export var FaFileText: typeof _FaFileText; +export var FaFileWordO: typeof _FaFileWordO; +export var FaFile: typeof _FaFile; +export var FaFilm: typeof _FaFilm; +export var FaFilter: typeof _FaFilter; +export var FaFireExtinguisher: typeof _FaFireExtinguisher; +export var FaFire: typeof _FaFire; +export var FaFirefox: typeof _FaFirefox; +export var FaFlagCheckered: typeof _FaFlagCheckered; +export var FaFlagO: typeof _FaFlagO; +export var FaFlag: typeof _FaFlag; +export var FaFlask: typeof _FaFlask; +export var FaFlickr: typeof _FaFlickr; +export var FaFloppyO: typeof _FaFloppyO; +export var FaFolderO: typeof _FaFolderO; +export var FaFolderOpenO: typeof _FaFolderOpenO; +export var FaFolderOpen: typeof _FaFolderOpen; +export var FaFolder: typeof _FaFolder; +export var FaFont: typeof _FaFont; +export var FaFonticons: typeof _FaFonticons; +export var FaFortAwesome: typeof _FaFortAwesome; +export var FaForumbee: typeof _FaForumbee; +export var FaForward: typeof _FaForward; +export var FaFoursquare: typeof _FaFoursquare; +export var FaFrownO: typeof _FaFrownO; +export var FaFutbolO: typeof _FaFutbolO; +export var FaGamepad: typeof _FaGamepad; +export var FaGavel: typeof _FaGavel; +export var FaGbp: typeof _FaGbp; +export var FaGenderless: typeof _FaGenderless; +export var FaGetPocket: typeof _FaGetPocket; +export var FaGgCircle: typeof _FaGgCircle; +export var FaGg: typeof _FaGg; +export var FaGift: typeof _FaGift; +export var FaGitSquare: typeof _FaGitSquare; +export var FaGit: typeof _FaGit; +export var FaGithubAlt: typeof _FaGithubAlt; +export var FaGithubSquare: typeof _FaGithubSquare; +export var FaGithub: typeof _FaGithub; +export var FaGitlab: typeof _FaGitlab; +export var FaGittip: typeof _FaGittip; +export var FaGlass: typeof _FaGlass; +export var FaGlideG: typeof _FaGlideG; +export var FaGlide: typeof _FaGlide; +export var FaGlobe: typeof _FaGlobe; +export var FaGooglePlusSquare: typeof _FaGooglePlusSquare; +export var FaGooglePlus: typeof _FaGooglePlus; +export var FaGoogleWallet: typeof _FaGoogleWallet; +export var FaGoogle: typeof _FaGoogle; +export var FaGraduationCap: typeof _FaGraduationCap; +export var FaGroup: typeof _FaGroup; +export var FaHSquare: typeof _FaHSquare; +export var FaHackerNews: typeof _FaHackerNews; +export var FaHandGrabO: typeof _FaHandGrabO; +export var FaHandLizardO: typeof _FaHandLizardO; +export var FaHandODown: typeof _FaHandODown; +export var FaHandOLeft: typeof _FaHandOLeft; +export var FaHandORight: typeof _FaHandORight; +export var FaHandOUp: typeof _FaHandOUp; +export var FaHandPaperO: typeof _FaHandPaperO; +export var FaHandPeaceO: typeof _FaHandPeaceO; +export var FaHandPointerO: typeof _FaHandPointerO; +export var FaHandScissorsO: typeof _FaHandScissorsO; +export var FaHandSpockO: typeof _FaHandSpockO; +export var FaHashtag: typeof _FaHashtag; +export var FaHddO: typeof _FaHddO; +export var FaHeader: typeof _FaHeader; +export var FaHeadphones: typeof _FaHeadphones; +export var FaHeartO: typeof _FaHeartO; +export var FaHeart: typeof _FaHeart; +export var FaHeartbeat: typeof _FaHeartbeat; +export var FaHistory: typeof _FaHistory; +export var FaHome: typeof _FaHome; +export var FaHospitalO: typeof _FaHospitalO; +export var FaHourglass1: typeof _FaHourglass1; +export var FaHourglass2: typeof _FaHourglass2; +export var FaHourglass3: typeof _FaHourglass3; +export var FaHourglassO: typeof _FaHourglassO; +export var FaHourglass: typeof _FaHourglass; +export var FaHouzz: typeof _FaHouzz; +export var FaHtml5: typeof _FaHtml5; +export var FaICursor: typeof _FaICursor; +export var FaIls: typeof _FaIls; +export var FaImage: typeof _FaImage; +export var FaInbox: typeof _FaInbox; +export var FaIndent: typeof _FaIndent; +export var FaIndustry: typeof _FaIndustry; +export var FaInfoCircle: typeof _FaInfoCircle; +export var FaInfo: typeof _FaInfo; +export var FaInr: typeof _FaInr; +export var FaInstagram: typeof _FaInstagram; +export var FaInternetExplorer: typeof _FaInternetExplorer; +export var FaIntersex: typeof _FaIntersex; +export var FaIoxhost: typeof _FaIoxhost; +export var FaItalic: typeof _FaItalic; +export var FaJoomla: typeof _FaJoomla; +export var FaJsfiddle: typeof _FaJsfiddle; +export var FaKey: typeof _FaKey; +export var FaKeyboardO: typeof _FaKeyboardO; +export var FaKrw: typeof _FaKrw; +export var FaLanguage: typeof _FaLanguage; +export var FaLaptop: typeof _FaLaptop; +export var FaLastfmSquare: typeof _FaLastfmSquare; +export var FaLastfm: typeof _FaLastfm; +export var FaLeaf: typeof _FaLeaf; +export var FaLeanpub: typeof _FaLeanpub; +export var FaLemonO: typeof _FaLemonO; +export var FaLevelDown: typeof _FaLevelDown; +export var FaLevelUp: typeof _FaLevelUp; +export var FaLifeBouy: typeof _FaLifeBouy; +export var FaLightbulbO: typeof _FaLightbulbO; +export var FaLineChart: typeof _FaLineChart; +export var FaLinkedinSquare: typeof _FaLinkedinSquare; +export var FaLinkedin: typeof _FaLinkedin; +export var FaLinux: typeof _FaLinux; +export var FaListAlt: typeof _FaListAlt; +export var FaListOl: typeof _FaListOl; +export var FaListUl: typeof _FaListUl; +export var FaList: typeof _FaList; +export var FaLocationArrow: typeof _FaLocationArrow; +export var FaLock: typeof _FaLock; +export var FaLongArrowDown: typeof _FaLongArrowDown; +export var FaLongArrowLeft: typeof _FaLongArrowLeft; +export var FaLongArrowRight: typeof _FaLongArrowRight; +export var FaLongArrowUp: typeof _FaLongArrowUp; +export var FaLowVision: typeof _FaLowVision; +export var FaMagic: typeof _FaMagic; +export var FaMagnet: typeof _FaMagnet; +export var FaMailForward: typeof _FaMailForward; +export var FaMailReplyAll: typeof _FaMailReplyAll; +export var FaMailReply: typeof _FaMailReply; +export var FaMale: typeof _FaMale; +export var FaMapMarker: typeof _FaMapMarker; +export var FaMapO: typeof _FaMapO; +export var FaMapPin: typeof _FaMapPin; +export var FaMapSigns: typeof _FaMapSigns; +export var FaMap: typeof _FaMap; +export var FaMarsDouble: typeof _FaMarsDouble; +export var FaMarsStrokeH: typeof _FaMarsStrokeH; +export var FaMarsStrokeV: typeof _FaMarsStrokeV; +export var FaMarsStroke: typeof _FaMarsStroke; +export var FaMars: typeof _FaMars; +export var FaMaxcdn: typeof _FaMaxcdn; +export var FaMeanpath: typeof _FaMeanpath; +export var FaMedium: typeof _FaMedium; +export var FaMedkit: typeof _FaMedkit; +export var FaMehO: typeof _FaMehO; +export var FaMercury: typeof _FaMercury; +export var FaMicrophoneSlash: typeof _FaMicrophoneSlash; +export var FaMicrophone: typeof _FaMicrophone; +export var FaMinusCircle: typeof _FaMinusCircle; +export var FaMinusSquareO: typeof _FaMinusSquareO; +export var FaMinusSquare: typeof _FaMinusSquare; +export var FaMinus: typeof _FaMinus; +export var FaMixcloud: typeof _FaMixcloud; +export var FaMobile: typeof _FaMobile; +export var FaModx: typeof _FaModx; +export var FaMoney: typeof _FaMoney; +export var FaMoonO: typeof _FaMoonO; +export var FaMotorcycle: typeof _FaMotorcycle; +export var FaMousePointer: typeof _FaMousePointer; +export var FaMusic: typeof _FaMusic; +export var FaNeuter: typeof _FaNeuter; +export var FaNewspaperO: typeof _FaNewspaperO; +export var FaObjectGroup: typeof _FaObjectGroup; +export var FaObjectUngroup: typeof _FaObjectUngroup; +export var FaOdnoklassnikiSquare: typeof _FaOdnoklassnikiSquare; +export var FaOdnoklassniki: typeof _FaOdnoklassniki; +export var FaOpencart: typeof _FaOpencart; +export var FaOpenid: typeof _FaOpenid; +export var FaOpera: typeof _FaOpera; +export var FaOptinMonster: typeof _FaOptinMonster; +export var FaPagelines: typeof _FaPagelines; +export var FaPaintBrush: typeof _FaPaintBrush; +export var FaPaperPlaneO: typeof _FaPaperPlaneO; +export var FaPaperPlane: typeof _FaPaperPlane; +export var FaPaperclip: typeof _FaPaperclip; +export var FaParagraph: typeof _FaParagraph; +export var FaPauseCircleO: typeof _FaPauseCircleO; +export var FaPauseCircle: typeof _FaPauseCircle; +export var FaPause: typeof _FaPause; +export var FaPaw: typeof _FaPaw; +export var FaPaypal: typeof _FaPaypal; +export var FaPencilSquare: typeof _FaPencilSquare; +export var FaPencil: typeof _FaPencil; +export var FaPercent: typeof _FaPercent; +export var FaPhoneSquare: typeof _FaPhoneSquare; +export var FaPhone: typeof _FaPhone; +export var FaPieChart: typeof _FaPieChart; +export var FaPiedPiperAlt: typeof _FaPiedPiperAlt; +export var FaPiedPiper: typeof _FaPiedPiper; +export var FaPinterestP: typeof _FaPinterestP; +export var FaPinterestSquare: typeof _FaPinterestSquare; +export var FaPinterest: typeof _FaPinterest; +export var FaPlane: typeof _FaPlane; +export var FaPlayCircleO: typeof _FaPlayCircleO; +export var FaPlayCircle: typeof _FaPlayCircle; +export var FaPlay: typeof _FaPlay; +export var FaPlug: typeof _FaPlug; +export var FaPlusCircle: typeof _FaPlusCircle; +export var FaPlusSquareO: typeof _FaPlusSquareO; +export var FaPlusSquare: typeof _FaPlusSquare; +export var FaPlus: typeof _FaPlus; +export var FaPowerOff: typeof _FaPowerOff; +export var FaPrint: typeof _FaPrint; +export var FaProductHunt: typeof _FaProductHunt; +export var FaPuzzlePiece: typeof _FaPuzzlePiece; +export var FaQq: typeof _FaQq; +export var FaQrcode: typeof _FaQrcode; +export var FaQuestionCircleO: typeof _FaQuestionCircleO; +export var FaQuestionCircle: typeof _FaQuestionCircle; +export var FaQuestion: typeof _FaQuestion; +export var FaQuoteLeft: typeof _FaQuoteLeft; +export var FaQuoteRight: typeof _FaQuoteRight; +export var FaRa: typeof _FaRa; +export var FaRandom: typeof _FaRandom; +export var FaRecycle: typeof _FaRecycle; +export var FaRedditAlien: typeof _FaRedditAlien; +export var FaRedditSquare: typeof _FaRedditSquare; +export var FaReddit: typeof _FaReddit; +export var FaRefresh: typeof _FaRefresh; +export var FaRegistered: typeof _FaRegistered; +export var FaRenren: typeof _FaRenren; +export var FaRepeat: typeof _FaRepeat; +export var FaRetweet: typeof _FaRetweet; +export var FaRoad: typeof _FaRoad; +export var FaRocket: typeof _FaRocket; +export var FaRotateLeft: typeof _FaRotateLeft; +export var FaRouble: typeof _FaRouble; +export var FaRssSquare: typeof _FaRssSquare; +export var FaSafari: typeof _FaSafari; +export var FaScribd: typeof _FaScribd; +export var FaSearchMinus: typeof _FaSearchMinus; +export var FaSearchPlus: typeof _FaSearchPlus; +export var FaSearch: typeof _FaSearch; +export var FaSellsy: typeof _FaSellsy; +export var FaServer: typeof _FaServer; +export var FaShareAltSquare: typeof _FaShareAltSquare; +export var FaShareAlt: typeof _FaShareAlt; +export var FaShareSquareO: typeof _FaShareSquareO; +export var FaShareSquare: typeof _FaShareSquare; +export var FaShield: typeof _FaShield; +export var FaShip: typeof _FaShip; +export var FaShirtsinbulk: typeof _FaShirtsinbulk; +export var FaShoppingBag: typeof _FaShoppingBag; +export var FaShoppingBasket: typeof _FaShoppingBasket; +export var FaShoppingCart: typeof _FaShoppingCart; +export var FaSignIn: typeof _FaSignIn; +export var FaSignLanguage: typeof _FaSignLanguage; +export var FaSignOut: typeof _FaSignOut; +export var FaSignal: typeof _FaSignal; +export var FaSimplybuilt: typeof _FaSimplybuilt; +export var FaSitemap: typeof _FaSitemap; +export var FaSkyatlas: typeof _FaSkyatlas; +export var FaSkype: typeof _FaSkype; +export var FaSlack: typeof _FaSlack; +export var FaSliders: typeof _FaSliders; +export var FaSlideshare: typeof _FaSlideshare; +export var FaSmileO: typeof _FaSmileO; +export var FaSnapchatGhost: typeof _FaSnapchatGhost; +export var FaSnapchatSquare: typeof _FaSnapchatSquare; +export var FaSnapchat: typeof _FaSnapchat; +export var FaSortAlphaAsc: typeof _FaSortAlphaAsc; +export var FaSortAlphaDesc: typeof _FaSortAlphaDesc; +export var FaSortAmountAsc: typeof _FaSortAmountAsc; +export var FaSortAmountDesc: typeof _FaSortAmountDesc; +export var FaSortAsc: typeof _FaSortAsc; +export var FaSortDesc: typeof _FaSortDesc; +export var FaSortNumericAsc: typeof _FaSortNumericAsc; +export var FaSortNumericDesc: typeof _FaSortNumericDesc; +export var FaSort: typeof _FaSort; +export var FaSoundcloud: typeof _FaSoundcloud; +export var FaSpaceShuttle: typeof _FaSpaceShuttle; +export var FaSpinner: typeof _FaSpinner; +export var FaSpoon: typeof _FaSpoon; +export var FaSpotify: typeof _FaSpotify; +export var FaSquareO: typeof _FaSquareO; +export var FaSquare: typeof _FaSquare; +export var FaStackExchange: typeof _FaStackExchange; +export var FaStackOverflow: typeof _FaStackOverflow; +export var FaStarHalfEmpty: typeof _FaStarHalfEmpty; +export var FaStarHalf: typeof _FaStarHalf; +export var FaStarO: typeof _FaStarO; +export var FaStar: typeof _FaStar; +export var FaSteamSquare: typeof _FaSteamSquare; +export var FaSteam: typeof _FaSteam; +export var FaStepBackward: typeof _FaStepBackward; +export var FaStepForward: typeof _FaStepForward; +export var FaStethoscope: typeof _FaStethoscope; +export var FaStickyNoteO: typeof _FaStickyNoteO; +export var FaStickyNote: typeof _FaStickyNote; +export var FaStopCircleO: typeof _FaStopCircleO; +export var FaStopCircle: typeof _FaStopCircle; +export var FaStop: typeof _FaStop; +export var FaStreetView: typeof _FaStreetView; +export var FaStrikethrough: typeof _FaStrikethrough; +export var FaStumbleuponCircle: typeof _FaStumbleuponCircle; +export var FaStumbleupon: typeof _FaStumbleupon; +export var FaSubscript: typeof _FaSubscript; +export var FaSubway: typeof _FaSubway; +export var FaSuitcase: typeof _FaSuitcase; +export var FaSunO: typeof _FaSunO; +export var FaSuperscript: typeof _FaSuperscript; +export var FaTable: typeof _FaTable; +export var FaTablet: typeof _FaTablet; +export var FaTag: typeof _FaTag; +export var FaTags: typeof _FaTags; +export var FaTasks: typeof _FaTasks; +export var FaTelevision: typeof _FaTelevision; +export var FaTencentWeibo: typeof _FaTencentWeibo; +export var FaTerminal: typeof _FaTerminal; +export var FaTextHeight: typeof _FaTextHeight; +export var FaTextWidth: typeof _FaTextWidth; +export var FaThLarge: typeof _FaThLarge; +export var FaThList: typeof _FaThList; +export var FaTh: typeof _FaTh; +export var FaThumbTack: typeof _FaThumbTack; +export var FaThumbsDown: typeof _FaThumbsDown; +export var FaThumbsODown: typeof _FaThumbsODown; +export var FaThumbsOUp: typeof _FaThumbsOUp; +export var FaThumbsUp: typeof _FaThumbsUp; +export var FaTicket: typeof _FaTicket; +export var FaTimesCircleO: typeof _FaTimesCircleO; +export var FaTimesCircle: typeof _FaTimesCircle; +export var FaTint: typeof _FaTint; +export var FaToggleOff: typeof _FaToggleOff; +export var FaToggleOn: typeof _FaToggleOn; +export var FaTrademark: typeof _FaTrademark; +export var FaTrain: typeof _FaTrain; +export var FaTransgenderAlt: typeof _FaTransgenderAlt; +export var FaTrashO: typeof _FaTrashO; +export var FaTrash: typeof _FaTrash; +export var FaTree: typeof _FaTree; +export var FaTrello: typeof _FaTrello; +export var FaTripadvisor: typeof _FaTripadvisor; +export var FaTrophy: typeof _FaTrophy; +export var FaTruck: typeof _FaTruck; +export var FaTry: typeof _FaTry; +export var FaTty: typeof _FaTty; +export var FaTumblrSquare: typeof _FaTumblrSquare; +export var FaTumblr: typeof _FaTumblr; +export var FaTwitch: typeof _FaTwitch; +export var FaTwitterSquare: typeof _FaTwitterSquare; +export var FaTwitter: typeof _FaTwitter; +export var FaUmbrella: typeof _FaUmbrella; +export var FaUnderline: typeof _FaUnderline; +export var FaUniversalAccess: typeof _FaUniversalAccess; +export var FaUnlockAlt: typeof _FaUnlockAlt; +export var FaUnlock: typeof _FaUnlock; +export var FaUpload: typeof _FaUpload; +export var FaUsb: typeof _FaUsb; +export var FaUserMd: typeof _FaUserMd; +export var FaUserPlus: typeof _FaUserPlus; +export var FaUserSecret: typeof _FaUserSecret; +export var FaUserTimes: typeof _FaUserTimes; +export var FaUser: typeof _FaUser; +export var FaVenusDouble: typeof _FaVenusDouble; +export var FaVenusMars: typeof _FaVenusMars; +export var FaVenus: typeof _FaVenus; +export var FaViacoin: typeof _FaViacoin; +export var FaViadeoSquare: typeof _FaViadeoSquare; +export var FaViadeo: typeof _FaViadeo; +export var FaVideoCamera: typeof _FaVideoCamera; +export var FaVimeoSquare: typeof _FaVimeoSquare; +export var FaVimeo: typeof _FaVimeo; +export var FaVine: typeof _FaVine; +export var FaVk: typeof _FaVk; +export var FaVolumeControlPhone: typeof _FaVolumeControlPhone; +export var FaVolumeDown: typeof _FaVolumeDown; +export var FaVolumeOff: typeof _FaVolumeOff; +export var FaVolumeUp: typeof _FaVolumeUp; +export var FaWechat: typeof _FaWechat; +export var FaWeibo: typeof _FaWeibo; +export var FaWhatsapp: typeof _FaWhatsapp; +export var FaWheelchairAlt: typeof _FaWheelchairAlt; +export var FaWheelchair: typeof _FaWheelchair; +export var FaWifi: typeof _FaWifi; +export var FaWikipediaW: typeof _FaWikipediaW; +export var FaWindows: typeof _FaWindows; +export var FaWordpress: typeof _FaWordpress; +export var FaWpbeginner: typeof _FaWpbeginner; +export var FaWpforms: typeof _FaWpforms; +export var FaWrench: typeof _FaWrench; +export var FaXingSquare: typeof _FaXingSquare; +export var FaXing: typeof _FaXing; +export var FaYCombinator: typeof _FaYCombinator; +export var FaYahoo: typeof _FaYahoo; +export var FaYelp: typeof _FaYelp; +export var FaYoutubePlay: typeof _FaYoutubePlay; +export var FaYoutubeSquare: typeof _FaYoutubeSquare; +export var FaYoutube: typeof _FaYoutube; \ No newline at end of file diff --git a/react-icons/fa/industry.d.ts b/react-icons/fa/industry.d.ts new file mode 100644 index 0000000000..065603029d --- /dev/null +++ b/react-icons/fa/industry.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaIndustry extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/info-circle.d.ts b/react-icons/fa/info-circle.d.ts new file mode 100644 index 0000000000..3cdd4ba910 --- /dev/null +++ b/react-icons/fa/info-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInfoCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/info.d.ts b/react-icons/fa/info.d.ts new file mode 100644 index 0000000000..12d384346c --- /dev/null +++ b/react-icons/fa/info.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/inr.d.ts b/react-icons/fa/inr.d.ts new file mode 100644 index 0000000000..2a6866f938 --- /dev/null +++ b/react-icons/fa/inr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/instagram.d.ts b/react-icons/fa/instagram.d.ts new file mode 100644 index 0000000000..7d7de6bd2a --- /dev/null +++ b/react-icons/fa/instagram.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/internet-explorer.d.ts b/react-icons/fa/internet-explorer.d.ts new file mode 100644 index 0000000000..a8f01ab4b2 --- /dev/null +++ b/react-icons/fa/internet-explorer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaInternetExplorer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/intersex.d.ts b/react-icons/fa/intersex.d.ts new file mode 100644 index 0000000000..dbee84f6ad --- /dev/null +++ b/react-icons/fa/intersex.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaIntersex extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ioxhost.d.ts b/react-icons/fa/ioxhost.d.ts new file mode 100644 index 0000000000..9780683693 --- /dev/null +++ b/react-icons/fa/ioxhost.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaIoxhost extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/italic.d.ts b/react-icons/fa/italic.d.ts new file mode 100644 index 0000000000..14e917dc7e --- /dev/null +++ b/react-icons/fa/italic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaItalic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/joomla.d.ts b/react-icons/fa/joomla.d.ts new file mode 100644 index 0000000000..d8b9aeccab --- /dev/null +++ b/react-icons/fa/joomla.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaJoomla extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/jsfiddle.d.ts b/react-icons/fa/jsfiddle.d.ts new file mode 100644 index 0000000000..9c639e451e --- /dev/null +++ b/react-icons/fa/jsfiddle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaJsfiddle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/key.d.ts b/react-icons/fa/key.d.ts new file mode 100644 index 0000000000..3f3dc8582e --- /dev/null +++ b/react-icons/fa/key.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/keyboard-o.d.ts b/react-icons/fa/keyboard-o.d.ts new file mode 100644 index 0000000000..c0c7868c28 --- /dev/null +++ b/react-icons/fa/keyboard-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaKeyboardO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/krw.d.ts b/react-icons/fa/krw.d.ts new file mode 100644 index 0000000000..c992f907af --- /dev/null +++ b/react-icons/fa/krw.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaKrw extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/language.d.ts b/react-icons/fa/language.d.ts new file mode 100644 index 0000000000..df9d7a4f6e --- /dev/null +++ b/react-icons/fa/language.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/laptop.d.ts b/react-icons/fa/laptop.d.ts new file mode 100644 index 0000000000..82c3b88653 --- /dev/null +++ b/react-icons/fa/laptop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lastfm-square.d.ts b/react-icons/fa/lastfm-square.d.ts new file mode 100644 index 0000000000..fb5e99b2c2 --- /dev/null +++ b/react-icons/fa/lastfm-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLastfmSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lastfm.d.ts b/react-icons/fa/lastfm.d.ts new file mode 100644 index 0000000000..7d7e3a6bc9 --- /dev/null +++ b/react-icons/fa/lastfm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLastfm extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/leaf.d.ts b/react-icons/fa/leaf.d.ts new file mode 100644 index 0000000000..5cf93b0df7 --- /dev/null +++ b/react-icons/fa/leaf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/leanpub.d.ts b/react-icons/fa/leanpub.d.ts new file mode 100644 index 0000000000..bf8513f910 --- /dev/null +++ b/react-icons/fa/leanpub.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLeanpub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lemon-o.d.ts b/react-icons/fa/lemon-o.d.ts new file mode 100644 index 0000000000..378c6e4290 --- /dev/null +++ b/react-icons/fa/lemon-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLemonO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/level-down.d.ts b/react-icons/fa/level-down.d.ts new file mode 100644 index 0000000000..0ed37125d1 --- /dev/null +++ b/react-icons/fa/level-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLevelDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/level-up.d.ts b/react-icons/fa/level-up.d.ts new file mode 100644 index 0000000000..a467875d8d --- /dev/null +++ b/react-icons/fa/level-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLevelUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/life-bouy.d.ts b/react-icons/fa/life-bouy.d.ts new file mode 100644 index 0000000000..a1bc9bb7e7 --- /dev/null +++ b/react-icons/fa/life-bouy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLifeBouy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lightbulb-o.d.ts b/react-icons/fa/lightbulb-o.d.ts new file mode 100644 index 0000000000..a92e219c42 --- /dev/null +++ b/react-icons/fa/lightbulb-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLightbulbO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/line-chart.d.ts b/react-icons/fa/line-chart.d.ts new file mode 100644 index 0000000000..e92ad7c28e --- /dev/null +++ b/react-icons/fa/line-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLineChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linkedin-square.d.ts b/react-icons/fa/linkedin-square.d.ts new file mode 100644 index 0000000000..c245a515f1 --- /dev/null +++ b/react-icons/fa/linkedin-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLinkedinSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linkedin.d.ts b/react-icons/fa/linkedin.d.ts new file mode 100644 index 0000000000..2e3058eb6d --- /dev/null +++ b/react-icons/fa/linkedin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linux.d.ts b/react-icons/fa/linux.d.ts new file mode 100644 index 0000000000..ba1c90215a --- /dev/null +++ b/react-icons/fa/linux.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLinux extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-alt.d.ts b/react-icons/fa/list-alt.d.ts new file mode 100644 index 0000000000..8469ec582d --- /dev/null +++ b/react-icons/fa/list-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaListAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-ol.d.ts b/react-icons/fa/list-ol.d.ts new file mode 100644 index 0000000000..64d4387b55 --- /dev/null +++ b/react-icons/fa/list-ol.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaListOl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-ul.d.ts b/react-icons/fa/list-ul.d.ts new file mode 100644 index 0000000000..be4fcac55c --- /dev/null +++ b/react-icons/fa/list-ul.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaListUl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list.d.ts b/react-icons/fa/list.d.ts new file mode 100644 index 0000000000..940a3c7e3e --- /dev/null +++ b/react-icons/fa/list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaList extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/location-arrow.d.ts b/react-icons/fa/location-arrow.d.ts new file mode 100644 index 0000000000..6384a6872e --- /dev/null +++ b/react-icons/fa/location-arrow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLocationArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lock.d.ts b/react-icons/fa/lock.d.ts new file mode 100644 index 0000000000..a0b901cb0f --- /dev/null +++ b/react-icons/fa/lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-down.d.ts b/react-icons/fa/long-arrow-down.d.ts new file mode 100644 index 0000000000..2662b7b62c --- /dev/null +++ b/react-icons/fa/long-arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLongArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-left.d.ts b/react-icons/fa/long-arrow-left.d.ts new file mode 100644 index 0000000000..70a24fa77e --- /dev/null +++ b/react-icons/fa/long-arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLongArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-right.d.ts b/react-icons/fa/long-arrow-right.d.ts new file mode 100644 index 0000000000..49a1e41143 --- /dev/null +++ b/react-icons/fa/long-arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLongArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-up.d.ts b/react-icons/fa/long-arrow-up.d.ts new file mode 100644 index 0000000000..cea0a0e3e1 --- /dev/null +++ b/react-icons/fa/long-arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLongArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/low-vision.d.ts b/react-icons/fa/low-vision.d.ts new file mode 100644 index 0000000000..af6de88707 --- /dev/null +++ b/react-icons/fa/low-vision.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaLowVision extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/magic.d.ts b/react-icons/fa/magic.d.ts new file mode 100644 index 0000000000..9973e70e3a --- /dev/null +++ b/react-icons/fa/magic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMagic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/magnet.d.ts b/react-icons/fa/magnet.d.ts new file mode 100644 index 0000000000..dae7fb414b --- /dev/null +++ b/react-icons/fa/magnet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMagnet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-forward.d.ts b/react-icons/fa/mail-forward.d.ts new file mode 100644 index 0000000000..205b2c5186 --- /dev/null +++ b/react-icons/fa/mail-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMailForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-reply-all.d.ts b/react-icons/fa/mail-reply-all.d.ts new file mode 100644 index 0000000000..65488971f1 --- /dev/null +++ b/react-icons/fa/mail-reply-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMailReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-reply.d.ts b/react-icons/fa/mail-reply.d.ts new file mode 100644 index 0000000000..0bf9506f9f --- /dev/null +++ b/react-icons/fa/mail-reply.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMailReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/male.d.ts b/react-icons/fa/male.d.ts new file mode 100644 index 0000000000..2021eed6cf --- /dev/null +++ b/react-icons/fa/male.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-marker.d.ts b/react-icons/fa/map-marker.d.ts new file mode 100644 index 0000000000..1020a0d962 --- /dev/null +++ b/react-icons/fa/map-marker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMapMarker extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-o.d.ts b/react-icons/fa/map-o.d.ts new file mode 100644 index 0000000000..338425c827 --- /dev/null +++ b/react-icons/fa/map-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMapO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-pin.d.ts b/react-icons/fa/map-pin.d.ts new file mode 100644 index 0000000000..f24ecf840b --- /dev/null +++ b/react-icons/fa/map-pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMapPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-signs.d.ts b/react-icons/fa/map-signs.d.ts new file mode 100644 index 0000000000..303b1d7255 --- /dev/null +++ b/react-icons/fa/map-signs.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMapSigns extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map.d.ts b/react-icons/fa/map.d.ts new file mode 100644 index 0000000000..32715de18a --- /dev/null +++ b/react-icons/fa/map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-double.d.ts b/react-icons/fa/mars-double.d.ts new file mode 100644 index 0000000000..a703a4b58d --- /dev/null +++ b/react-icons/fa/mars-double.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMarsDouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke-h.d.ts b/react-icons/fa/mars-stroke-h.d.ts new file mode 100644 index 0000000000..052359b4ad --- /dev/null +++ b/react-icons/fa/mars-stroke-h.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMarsStrokeH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke-v.d.ts b/react-icons/fa/mars-stroke-v.d.ts new file mode 100644 index 0000000000..a98be26bf3 --- /dev/null +++ b/react-icons/fa/mars-stroke-v.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMarsStrokeV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke.d.ts b/react-icons/fa/mars-stroke.d.ts new file mode 100644 index 0000000000..ba35e62d87 --- /dev/null +++ b/react-icons/fa/mars-stroke.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMarsStroke extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars.d.ts b/react-icons/fa/mars.d.ts new file mode 100644 index 0000000000..8ad3052cd6 --- /dev/null +++ b/react-icons/fa/mars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/maxcdn.d.ts b/react-icons/fa/maxcdn.d.ts new file mode 100644 index 0000000000..1980392ee3 --- /dev/null +++ b/react-icons/fa/maxcdn.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMaxcdn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/meanpath.d.ts b/react-icons/fa/meanpath.d.ts new file mode 100644 index 0000000000..d8e4dc6e68 --- /dev/null +++ b/react-icons/fa/meanpath.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMeanpath extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/medium.d.ts b/react-icons/fa/medium.d.ts new file mode 100644 index 0000000000..905ffd3423 --- /dev/null +++ b/react-icons/fa/medium.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/medkit.d.ts b/react-icons/fa/medkit.d.ts new file mode 100644 index 0000000000..acbdec4234 --- /dev/null +++ b/react-icons/fa/medkit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/meh-o.d.ts b/react-icons/fa/meh-o.d.ts new file mode 100644 index 0000000000..4a5cb9cbc8 --- /dev/null +++ b/react-icons/fa/meh-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMehO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mercury.d.ts b/react-icons/fa/mercury.d.ts new file mode 100644 index 0000000000..28b5633f2a --- /dev/null +++ b/react-icons/fa/mercury.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMercury extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/microphone-slash.d.ts b/react-icons/fa/microphone-slash.d.ts new file mode 100644 index 0000000000..533f4e9011 --- /dev/null +++ b/react-icons/fa/microphone-slash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMicrophoneSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/microphone.d.ts b/react-icons/fa/microphone.d.ts new file mode 100644 index 0000000000..2b16001ed5 --- /dev/null +++ b/react-icons/fa/microphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-circle.d.ts b/react-icons/fa/minus-circle.d.ts new file mode 100644 index 0000000000..5f447e9d3c --- /dev/null +++ b/react-icons/fa/minus-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMinusCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-square-o.d.ts b/react-icons/fa/minus-square-o.d.ts new file mode 100644 index 0000000000..3f214e57c0 --- /dev/null +++ b/react-icons/fa/minus-square-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMinusSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-square.d.ts b/react-icons/fa/minus-square.d.ts new file mode 100644 index 0000000000..0df8af13e1 --- /dev/null +++ b/react-icons/fa/minus-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMinusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus.d.ts b/react-icons/fa/minus.d.ts new file mode 100644 index 0000000000..7bfdce664a --- /dev/null +++ b/react-icons/fa/minus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mixcloud.d.ts b/react-icons/fa/mixcloud.d.ts new file mode 100644 index 0000000000..3ebde165ba --- /dev/null +++ b/react-icons/fa/mixcloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMixcloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mobile.d.ts b/react-icons/fa/mobile.d.ts new file mode 100644 index 0000000000..5c9b2bb0cf --- /dev/null +++ b/react-icons/fa/mobile.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/modx.d.ts b/react-icons/fa/modx.d.ts new file mode 100644 index 0000000000..456bc4c2be --- /dev/null +++ b/react-icons/fa/modx.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaModx extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/money.d.ts b/react-icons/fa/money.d.ts new file mode 100644 index 0000000000..d71ef449fc --- /dev/null +++ b/react-icons/fa/money.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMoney extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/moon-o.d.ts b/react-icons/fa/moon-o.d.ts new file mode 100644 index 0000000000..facd689e1d --- /dev/null +++ b/react-icons/fa/moon-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMoonO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/motorcycle.d.ts b/react-icons/fa/motorcycle.d.ts new file mode 100644 index 0000000000..712ccfdc72 --- /dev/null +++ b/react-icons/fa/motorcycle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMotorcycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mouse-pointer.d.ts b/react-icons/fa/mouse-pointer.d.ts new file mode 100644 index 0000000000..e4963a4449 --- /dev/null +++ b/react-icons/fa/mouse-pointer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMousePointer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/music.d.ts b/react-icons/fa/music.d.ts new file mode 100644 index 0000000000..95ec220b25 --- /dev/null +++ b/react-icons/fa/music.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/neuter.d.ts b/react-icons/fa/neuter.d.ts new file mode 100644 index 0000000000..baada6e8a0 --- /dev/null +++ b/react-icons/fa/neuter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaNeuter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/newspaper-o.d.ts b/react-icons/fa/newspaper-o.d.ts new file mode 100644 index 0000000000..d13977de93 --- /dev/null +++ b/react-icons/fa/newspaper-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaNewspaperO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/object-group.d.ts b/react-icons/fa/object-group.d.ts new file mode 100644 index 0000000000..fd46228d1e --- /dev/null +++ b/react-icons/fa/object-group.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaObjectGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/object-ungroup.d.ts b/react-icons/fa/object-ungroup.d.ts new file mode 100644 index 0000000000..e1b0ec954d --- /dev/null +++ b/react-icons/fa/object-ungroup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaObjectUngroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/odnoklassniki-square.d.ts b/react-icons/fa/odnoklassniki-square.d.ts new file mode 100644 index 0000000000..328a8a4549 --- /dev/null +++ b/react-icons/fa/odnoklassniki-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOdnoklassnikiSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/odnoklassniki.d.ts b/react-icons/fa/odnoklassniki.d.ts new file mode 100644 index 0000000000..20f5993252 --- /dev/null +++ b/react-icons/fa/odnoklassniki.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOdnoklassniki extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/opencart.d.ts b/react-icons/fa/opencart.d.ts new file mode 100644 index 0000000000..38cd697ea8 --- /dev/null +++ b/react-icons/fa/opencart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOpencart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/openid.d.ts b/react-icons/fa/openid.d.ts new file mode 100644 index 0000000000..ec4f05bb35 --- /dev/null +++ b/react-icons/fa/openid.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOpenid extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/opera.d.ts b/react-icons/fa/opera.d.ts new file mode 100644 index 0000000000..f258ccde96 --- /dev/null +++ b/react-icons/fa/opera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOpera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/optin-monster.d.ts b/react-icons/fa/optin-monster.d.ts new file mode 100644 index 0000000000..beac65b808 --- /dev/null +++ b/react-icons/fa/optin-monster.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaOptinMonster extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pagelines.d.ts b/react-icons/fa/pagelines.d.ts new file mode 100644 index 0000000000..207e16391b --- /dev/null +++ b/react-icons/fa/pagelines.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPagelines extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paint-brush.d.ts b/react-icons/fa/paint-brush.d.ts new file mode 100644 index 0000000000..bac6fb90c2 --- /dev/null +++ b/react-icons/fa/paint-brush.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaintBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paper-plane-o.d.ts b/react-icons/fa/paper-plane-o.d.ts new file mode 100644 index 0000000000..dbeff1ec55 --- /dev/null +++ b/react-icons/fa/paper-plane-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaperPlaneO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paper-plane.d.ts b/react-icons/fa/paper-plane.d.ts new file mode 100644 index 0000000000..2a6d9c2ae0 --- /dev/null +++ b/react-icons/fa/paper-plane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaperPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paperclip.d.ts b/react-icons/fa/paperclip.d.ts new file mode 100644 index 0000000000..dc5c3f3fa4 --- /dev/null +++ b/react-icons/fa/paperclip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaperclip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paragraph.d.ts b/react-icons/fa/paragraph.d.ts new file mode 100644 index 0000000000..6a3d0a1c26 --- /dev/null +++ b/react-icons/fa/paragraph.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaParagraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause-circle-o.d.ts b/react-icons/fa/pause-circle-o.d.ts new file mode 100644 index 0000000000..a3e92cf0a2 --- /dev/null +++ b/react-icons/fa/pause-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPauseCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause-circle.d.ts b/react-icons/fa/pause-circle.d.ts new file mode 100644 index 0000000000..19a13c5b7c --- /dev/null +++ b/react-icons/fa/pause-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPauseCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause.d.ts b/react-icons/fa/pause.d.ts new file mode 100644 index 0000000000..5dbc6cc8f5 --- /dev/null +++ b/react-icons/fa/pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paw.d.ts b/react-icons/fa/paw.d.ts new file mode 100644 index 0000000000..43ec45421b --- /dev/null +++ b/react-icons/fa/paw.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paypal.d.ts b/react-icons/fa/paypal.d.ts new file mode 100644 index 0000000000..656ce66d66 --- /dev/null +++ b/react-icons/fa/paypal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPaypal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pencil-square.d.ts b/react-icons/fa/pencil-square.d.ts new file mode 100644 index 0000000000..7a6ef09d67 --- /dev/null +++ b/react-icons/fa/pencil-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPencilSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pencil.d.ts b/react-icons/fa/pencil.d.ts new file mode 100644 index 0000000000..824e32f274 --- /dev/null +++ b/react-icons/fa/pencil.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/percent.d.ts b/react-icons/fa/percent.d.ts new file mode 100644 index 0000000000..4e29b9aa8a --- /dev/null +++ b/react-icons/fa/percent.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPercent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/phone-square.d.ts b/react-icons/fa/phone-square.d.ts new file mode 100644 index 0000000000..13add3a285 --- /dev/null +++ b/react-icons/fa/phone-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPhoneSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/phone.d.ts b/react-icons/fa/phone.d.ts new file mode 100644 index 0000000000..f3e8097ebe --- /dev/null +++ b/react-icons/fa/phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pie-chart.d.ts b/react-icons/fa/pie-chart.d.ts new file mode 100644 index 0000000000..4be742a543 --- /dev/null +++ b/react-icons/fa/pie-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPieChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pied-piper-alt.d.ts b/react-icons/fa/pied-piper-alt.d.ts new file mode 100644 index 0000000000..859eb5b879 --- /dev/null +++ b/react-icons/fa/pied-piper-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPiedPiperAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pied-piper.d.ts b/react-icons/fa/pied-piper.d.ts new file mode 100644 index 0000000000..3ed85cdc58 --- /dev/null +++ b/react-icons/fa/pied-piper.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPiedPiper extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest-p.d.ts b/react-icons/fa/pinterest-p.d.ts new file mode 100644 index 0000000000..d5291a5e63 --- /dev/null +++ b/react-icons/fa/pinterest-p.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPinterestP extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest-square.d.ts b/react-icons/fa/pinterest-square.d.ts new file mode 100644 index 0000000000..cb0a5649fb --- /dev/null +++ b/react-icons/fa/pinterest-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPinterestSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest.d.ts b/react-icons/fa/pinterest.d.ts new file mode 100644 index 0000000000..9648489719 --- /dev/null +++ b/react-icons/fa/pinterest.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plane.d.ts b/react-icons/fa/plane.d.ts new file mode 100644 index 0000000000..3bba3ad6cd --- /dev/null +++ b/react-icons/fa/plane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play-circle-o.d.ts b/react-icons/fa/play-circle-o.d.ts new file mode 100644 index 0000000000..a5e06c3bbd --- /dev/null +++ b/react-icons/fa/play-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlayCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play-circle.d.ts b/react-icons/fa/play-circle.d.ts new file mode 100644 index 0000000000..20d80fdd26 --- /dev/null +++ b/react-icons/fa/play-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlayCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play.d.ts b/react-icons/fa/play.d.ts new file mode 100644 index 0000000000..3c7e7f3b2e --- /dev/null +++ b/react-icons/fa/play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plug.d.ts b/react-icons/fa/plug.d.ts new file mode 100644 index 0000000000..0de21392e5 --- /dev/null +++ b/react-icons/fa/plug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-circle.d.ts b/react-icons/fa/plus-circle.d.ts new file mode 100644 index 0000000000..dcc8b22b2e --- /dev/null +++ b/react-icons/fa/plus-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlusCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-square-o.d.ts b/react-icons/fa/plus-square-o.d.ts new file mode 100644 index 0000000000..196ced0ab4 --- /dev/null +++ b/react-icons/fa/plus-square-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlusSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-square.d.ts b/react-icons/fa/plus-square.d.ts new file mode 100644 index 0000000000..ac73117f04 --- /dev/null +++ b/react-icons/fa/plus-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus.d.ts b/react-icons/fa/plus.d.ts new file mode 100644 index 0000000000..4e33e15df1 --- /dev/null +++ b/react-icons/fa/plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/power-off.d.ts b/react-icons/fa/power-off.d.ts new file mode 100644 index 0000000000..b16847d0e7 --- /dev/null +++ b/react-icons/fa/power-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPowerOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/print.d.ts b/react-icons/fa/print.d.ts new file mode 100644 index 0000000000..4326176239 --- /dev/null +++ b/react-icons/fa/print.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/product-hunt.d.ts b/react-icons/fa/product-hunt.d.ts new file mode 100644 index 0000000000..c819bdd885 --- /dev/null +++ b/react-icons/fa/product-hunt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaProductHunt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/puzzle-piece.d.ts b/react-icons/fa/puzzle-piece.d.ts new file mode 100644 index 0000000000..b1796b4170 --- /dev/null +++ b/react-icons/fa/puzzle-piece.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaPuzzlePiece extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/qq.d.ts b/react-icons/fa/qq.d.ts new file mode 100644 index 0000000000..fbe26d67c1 --- /dev/null +++ b/react-icons/fa/qq.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQq extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/qrcode.d.ts b/react-icons/fa/qrcode.d.ts new file mode 100644 index 0000000000..8c741c9e8b --- /dev/null +++ b/react-icons/fa/qrcode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQrcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question-circle-o.d.ts b/react-icons/fa/question-circle-o.d.ts new file mode 100644 index 0000000000..5ec089a48b --- /dev/null +++ b/react-icons/fa/question-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQuestionCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question-circle.d.ts b/react-icons/fa/question-circle.d.ts new file mode 100644 index 0000000000..ddb7c6b7ff --- /dev/null +++ b/react-icons/fa/question-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQuestionCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question.d.ts b/react-icons/fa/question.d.ts new file mode 100644 index 0000000000..5b9bb30f32 --- /dev/null +++ b/react-icons/fa/question.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQuestion extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/quote-left.d.ts b/react-icons/fa/quote-left.d.ts new file mode 100644 index 0000000000..dc5900a86b --- /dev/null +++ b/react-icons/fa/quote-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQuoteLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/quote-right.d.ts b/react-icons/fa/quote-right.d.ts new file mode 100644 index 0000000000..cc9aef7f9d --- /dev/null +++ b/react-icons/fa/quote-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaQuoteRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ra.d.ts b/react-icons/fa/ra.d.ts new file mode 100644 index 0000000000..08a9235683 --- /dev/null +++ b/react-icons/fa/ra.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRa extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/random.d.ts b/react-icons/fa/random.d.ts new file mode 100644 index 0000000000..291123b83e --- /dev/null +++ b/react-icons/fa/random.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRandom extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/recycle.d.ts b/react-icons/fa/recycle.d.ts new file mode 100644 index 0000000000..7586a141d5 --- /dev/null +++ b/react-icons/fa/recycle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRecycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit-alien.d.ts b/react-icons/fa/reddit-alien.d.ts new file mode 100644 index 0000000000..3a1653e106 --- /dev/null +++ b/react-icons/fa/reddit-alien.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRedditAlien extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit-square.d.ts b/react-icons/fa/reddit-square.d.ts new file mode 100644 index 0000000000..ccd5cc1941 --- /dev/null +++ b/react-icons/fa/reddit-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRedditSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit.d.ts b/react-icons/fa/reddit.d.ts new file mode 100644 index 0000000000..00f3d45e9d --- /dev/null +++ b/react-icons/fa/reddit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaReddit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/refresh.d.ts b/react-icons/fa/refresh.d.ts new file mode 100644 index 0000000000..2edcde573f --- /dev/null +++ b/react-icons/fa/refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/registered.d.ts b/react-icons/fa/registered.d.ts new file mode 100644 index 0000000000..76fa7a8165 --- /dev/null +++ b/react-icons/fa/registered.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRegistered extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/renren.d.ts b/react-icons/fa/renren.d.ts new file mode 100644 index 0000000000..f9ca02f601 --- /dev/null +++ b/react-icons/fa/renren.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRenren extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/repeat.d.ts b/react-icons/fa/repeat.d.ts new file mode 100644 index 0000000000..59c73627d0 --- /dev/null +++ b/react-icons/fa/repeat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/retweet.d.ts b/react-icons/fa/retweet.d.ts new file mode 100644 index 0000000000..a0a699fdf5 --- /dev/null +++ b/react-icons/fa/retweet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRetweet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/road.d.ts b/react-icons/fa/road.d.ts new file mode 100644 index 0000000000..09a71b92dc --- /dev/null +++ b/react-icons/fa/road.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRoad extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rocket.d.ts b/react-icons/fa/rocket.d.ts new file mode 100644 index 0000000000..a68d569858 --- /dev/null +++ b/react-icons/fa/rocket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rotate-left.d.ts b/react-icons/fa/rotate-left.d.ts new file mode 100644 index 0000000000..11cb8a6193 --- /dev/null +++ b/react-icons/fa/rotate-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRotateLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rouble.d.ts b/react-icons/fa/rouble.d.ts new file mode 100644 index 0000000000..bb230f5309 --- /dev/null +++ b/react-icons/fa/rouble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rss-square.d.ts b/react-icons/fa/rss-square.d.ts new file mode 100644 index 0000000000..6beff109a7 --- /dev/null +++ b/react-icons/fa/rss-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaRssSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/safari.d.ts b/react-icons/fa/safari.d.ts new file mode 100644 index 0000000000..c351ff45ee --- /dev/null +++ b/react-icons/fa/safari.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSafari extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/scribd.d.ts b/react-icons/fa/scribd.d.ts new file mode 100644 index 0000000000..31dc664e43 --- /dev/null +++ b/react-icons/fa/scribd.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaScribd extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search-minus.d.ts b/react-icons/fa/search-minus.d.ts new file mode 100644 index 0000000000..fd87ffc0e4 --- /dev/null +++ b/react-icons/fa/search-minus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSearchMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search-plus.d.ts b/react-icons/fa/search-plus.d.ts new file mode 100644 index 0000000000..0955ad79db --- /dev/null +++ b/react-icons/fa/search-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSearchPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search.d.ts b/react-icons/fa/search.d.ts new file mode 100644 index 0000000000..ebfb8837b9 --- /dev/null +++ b/react-icons/fa/search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sellsy.d.ts b/react-icons/fa/sellsy.d.ts new file mode 100644 index 0000000000..03b1408a6b --- /dev/null +++ b/react-icons/fa/sellsy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSellsy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/server.d.ts b/react-icons/fa/server.d.ts new file mode 100644 index 0000000000..e61ef69c83 --- /dev/null +++ b/react-icons/fa/server.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaServer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-alt-square.d.ts b/react-icons/fa/share-alt-square.d.ts new file mode 100644 index 0000000000..ad508bbef5 --- /dev/null +++ b/react-icons/fa/share-alt-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShareAltSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-alt.d.ts b/react-icons/fa/share-alt.d.ts new file mode 100644 index 0000000000..973b8f4c79 --- /dev/null +++ b/react-icons/fa/share-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShareAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-square-o.d.ts b/react-icons/fa/share-square-o.d.ts new file mode 100644 index 0000000000..a51a0e9eab --- /dev/null +++ b/react-icons/fa/share-square-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShareSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-square.d.ts b/react-icons/fa/share-square.d.ts new file mode 100644 index 0000000000..ca49acb9d6 --- /dev/null +++ b/react-icons/fa/share-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShareSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shield.d.ts b/react-icons/fa/shield.d.ts new file mode 100644 index 0000000000..3f65ea39d9 --- /dev/null +++ b/react-icons/fa/shield.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShield extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ship.d.ts b/react-icons/fa/ship.d.ts new file mode 100644 index 0000000000..fcc289559d --- /dev/null +++ b/react-icons/fa/ship.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shirtsinbulk.d.ts b/react-icons/fa/shirtsinbulk.d.ts new file mode 100644 index 0000000000..8cbc4ee804 --- /dev/null +++ b/react-icons/fa/shirtsinbulk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShirtsinbulk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-bag.d.ts b/react-icons/fa/shopping-bag.d.ts new file mode 100644 index 0000000000..533fcd80d5 --- /dev/null +++ b/react-icons/fa/shopping-bag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShoppingBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-basket.d.ts b/react-icons/fa/shopping-basket.d.ts new file mode 100644 index 0000000000..465aa80127 --- /dev/null +++ b/react-icons/fa/shopping-basket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShoppingBasket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-cart.d.ts b/react-icons/fa/shopping-cart.d.ts new file mode 100644 index 0000000000..97264eb3f0 --- /dev/null +++ b/react-icons/fa/shopping-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-in.d.ts b/react-icons/fa/sign-in.d.ts new file mode 100644 index 0000000000..3ef3761f78 --- /dev/null +++ b/react-icons/fa/sign-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSignIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-language.d.ts b/react-icons/fa/sign-language.d.ts new file mode 100644 index 0000000000..6ffeb6e641 --- /dev/null +++ b/react-icons/fa/sign-language.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSignLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-out.d.ts b/react-icons/fa/sign-out.d.ts new file mode 100644 index 0000000000..cbc5796b88 --- /dev/null +++ b/react-icons/fa/sign-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSignOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/signal.d.ts b/react-icons/fa/signal.d.ts new file mode 100644 index 0000000000..9b579f859b --- /dev/null +++ b/react-icons/fa/signal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSignal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/simplybuilt.d.ts b/react-icons/fa/simplybuilt.d.ts new file mode 100644 index 0000000000..78b3903dce --- /dev/null +++ b/react-icons/fa/simplybuilt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSimplybuilt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sitemap.d.ts b/react-icons/fa/sitemap.d.ts new file mode 100644 index 0000000000..9fdf514ff9 --- /dev/null +++ b/react-icons/fa/sitemap.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSitemap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/skyatlas.d.ts b/react-icons/fa/skyatlas.d.ts new file mode 100644 index 0000000000..07866ff2f8 --- /dev/null +++ b/react-icons/fa/skyatlas.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSkyatlas extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/skype.d.ts b/react-icons/fa/skype.d.ts new file mode 100644 index 0000000000..c7c84f8661 --- /dev/null +++ b/react-icons/fa/skype.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/slack.d.ts b/react-icons/fa/slack.d.ts new file mode 100644 index 0000000000..018f7152cf --- /dev/null +++ b/react-icons/fa/slack.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSlack extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sliders.d.ts b/react-icons/fa/sliders.d.ts new file mode 100644 index 0000000000..7b4baf8ec4 --- /dev/null +++ b/react-icons/fa/sliders.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSliders extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/slideshare.d.ts b/react-icons/fa/slideshare.d.ts new file mode 100644 index 0000000000..e0901acbe3 --- /dev/null +++ b/react-icons/fa/slideshare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSlideshare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/smile-o.d.ts b/react-icons/fa/smile-o.d.ts new file mode 100644 index 0000000000..c32482abfe --- /dev/null +++ b/react-icons/fa/smile-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSmileO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat-ghost.d.ts b/react-icons/fa/snapchat-ghost.d.ts new file mode 100644 index 0000000000..70878dc106 --- /dev/null +++ b/react-icons/fa/snapchat-ghost.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSnapchatGhost extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat-square.d.ts b/react-icons/fa/snapchat-square.d.ts new file mode 100644 index 0000000000..1f35c75403 --- /dev/null +++ b/react-icons/fa/snapchat-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSnapchatSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat.d.ts b/react-icons/fa/snapchat.d.ts new file mode 100644 index 0000000000..8725311af1 --- /dev/null +++ b/react-icons/fa/snapchat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSnapchat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-alpha-asc.d.ts b/react-icons/fa/sort-alpha-asc.d.ts new file mode 100644 index 0000000000..8c6d236107 --- /dev/null +++ b/react-icons/fa/sort-alpha-asc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortAlphaAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-alpha-desc.d.ts b/react-icons/fa/sort-alpha-desc.d.ts new file mode 100644 index 0000000000..d0e10dd71b --- /dev/null +++ b/react-icons/fa/sort-alpha-desc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortAlphaDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-amount-asc.d.ts b/react-icons/fa/sort-amount-asc.d.ts new file mode 100644 index 0000000000..2a39b96f11 --- /dev/null +++ b/react-icons/fa/sort-amount-asc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortAmountAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-amount-desc.d.ts b/react-icons/fa/sort-amount-desc.d.ts new file mode 100644 index 0000000000..c9b97bbeb4 --- /dev/null +++ b/react-icons/fa/sort-amount-desc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortAmountDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-asc.d.ts b/react-icons/fa/sort-asc.d.ts new file mode 100644 index 0000000000..cc031126b4 --- /dev/null +++ b/react-icons/fa/sort-asc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-desc.d.ts b/react-icons/fa/sort-desc.d.ts new file mode 100644 index 0000000000..db873ab0c1 --- /dev/null +++ b/react-icons/fa/sort-desc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-numeric-asc.d.ts b/react-icons/fa/sort-numeric-asc.d.ts new file mode 100644 index 0000000000..d69058f696 --- /dev/null +++ b/react-icons/fa/sort-numeric-asc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortNumericAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-numeric-desc.d.ts b/react-icons/fa/sort-numeric-desc.d.ts new file mode 100644 index 0000000000..48c3917039 --- /dev/null +++ b/react-icons/fa/sort-numeric-desc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSortNumericDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort.d.ts b/react-icons/fa/sort.d.ts new file mode 100644 index 0000000000..37e66da564 --- /dev/null +++ b/react-icons/fa/sort.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSort extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/soundcloud.d.ts b/react-icons/fa/soundcloud.d.ts new file mode 100644 index 0000000000..b6236d9fe3 --- /dev/null +++ b/react-icons/fa/soundcloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSoundcloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/space-shuttle.d.ts b/react-icons/fa/space-shuttle.d.ts new file mode 100644 index 0000000000..00fe47d3d5 --- /dev/null +++ b/react-icons/fa/space-shuttle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSpaceShuttle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spinner.d.ts b/react-icons/fa/spinner.d.ts new file mode 100644 index 0000000000..08ba1bde20 --- /dev/null +++ b/react-icons/fa/spinner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSpinner extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spoon.d.ts b/react-icons/fa/spoon.d.ts new file mode 100644 index 0000000000..88b229054f --- /dev/null +++ b/react-icons/fa/spoon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSpoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spotify.d.ts b/react-icons/fa/spotify.d.ts new file mode 100644 index 0000000000..8f9e26ad7c --- /dev/null +++ b/react-icons/fa/spotify.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSpotify extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/square-o.d.ts b/react-icons/fa/square-o.d.ts new file mode 100644 index 0000000000..176d86d568 --- /dev/null +++ b/react-icons/fa/square-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/square.d.ts b/react-icons/fa/square.d.ts new file mode 100644 index 0000000000..27787bbcba --- /dev/null +++ b/react-icons/fa/square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stack-exchange.d.ts b/react-icons/fa/stack-exchange.d.ts new file mode 100644 index 0000000000..49c6aaa883 --- /dev/null +++ b/react-icons/fa/stack-exchange.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStackExchange extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stack-overflow.d.ts b/react-icons/fa/stack-overflow.d.ts new file mode 100644 index 0000000000..074d18716c --- /dev/null +++ b/react-icons/fa/stack-overflow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStackOverflow extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-half-empty.d.ts b/react-icons/fa/star-half-empty.d.ts new file mode 100644 index 0000000000..cf4ee3847a --- /dev/null +++ b/react-icons/fa/star-half-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStarHalfEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-half.d.ts b/react-icons/fa/star-half.d.ts new file mode 100644 index 0000000000..9d0d22c675 --- /dev/null +++ b/react-icons/fa/star-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-o.d.ts b/react-icons/fa/star-o.d.ts new file mode 100644 index 0000000000..9ed2805b5f --- /dev/null +++ b/react-icons/fa/star-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStarO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star.d.ts b/react-icons/fa/star.d.ts new file mode 100644 index 0000000000..0fb44222a1 --- /dev/null +++ b/react-icons/fa/star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/steam-square.d.ts b/react-icons/fa/steam-square.d.ts new file mode 100644 index 0000000000..e47279cc4f --- /dev/null +++ b/react-icons/fa/steam-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSteamSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/steam.d.ts b/react-icons/fa/steam.d.ts new file mode 100644 index 0000000000..1a7b5c9566 --- /dev/null +++ b/react-icons/fa/steam.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSteam extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/step-backward.d.ts b/react-icons/fa/step-backward.d.ts new file mode 100644 index 0000000000..336711ed00 --- /dev/null +++ b/react-icons/fa/step-backward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStepBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/step-forward.d.ts b/react-icons/fa/step-forward.d.ts new file mode 100644 index 0000000000..ac5a0275f4 --- /dev/null +++ b/react-icons/fa/step-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStepForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stethoscope.d.ts b/react-icons/fa/stethoscope.d.ts new file mode 100644 index 0000000000..8dbcd4e5d7 --- /dev/null +++ b/react-icons/fa/stethoscope.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStethoscope extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sticky-note-o.d.ts b/react-icons/fa/sticky-note-o.d.ts new file mode 100644 index 0000000000..04daed6a30 --- /dev/null +++ b/react-icons/fa/sticky-note-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStickyNoteO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sticky-note.d.ts b/react-icons/fa/sticky-note.d.ts new file mode 100644 index 0000000000..daab8ccbd1 --- /dev/null +++ b/react-icons/fa/sticky-note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStickyNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop-circle-o.d.ts b/react-icons/fa/stop-circle-o.d.ts new file mode 100644 index 0000000000..6682099628 --- /dev/null +++ b/react-icons/fa/stop-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStopCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop-circle.d.ts b/react-icons/fa/stop-circle.d.ts new file mode 100644 index 0000000000..8ee23ccf25 --- /dev/null +++ b/react-icons/fa/stop-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStopCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop.d.ts b/react-icons/fa/stop.d.ts new file mode 100644 index 0000000000..5623c65188 --- /dev/null +++ b/react-icons/fa/stop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/street-view.d.ts b/react-icons/fa/street-view.d.ts new file mode 100644 index 0000000000..db37d921ac --- /dev/null +++ b/react-icons/fa/street-view.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStreetView extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/strikethrough.d.ts b/react-icons/fa/strikethrough.d.ts new file mode 100644 index 0000000000..823115956a --- /dev/null +++ b/react-icons/fa/strikethrough.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStrikethrough extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stumbleupon-circle.d.ts b/react-icons/fa/stumbleupon-circle.d.ts new file mode 100644 index 0000000000..8f15f9da5c --- /dev/null +++ b/react-icons/fa/stumbleupon-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStumbleuponCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stumbleupon.d.ts b/react-icons/fa/stumbleupon.d.ts new file mode 100644 index 0000000000..265e55c750 --- /dev/null +++ b/react-icons/fa/stumbleupon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaStumbleupon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/subscript.d.ts b/react-icons/fa/subscript.d.ts new file mode 100644 index 0000000000..9a82b0ad44 --- /dev/null +++ b/react-icons/fa/subscript.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSubscript extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/subway.d.ts b/react-icons/fa/subway.d.ts new file mode 100644 index 0000000000..3635b73eea --- /dev/null +++ b/react-icons/fa/subway.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/suitcase.d.ts b/react-icons/fa/suitcase.d.ts new file mode 100644 index 0000000000..bd85bfb912 --- /dev/null +++ b/react-icons/fa/suitcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSuitcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sun-o.d.ts b/react-icons/fa/sun-o.d.ts new file mode 100644 index 0000000000..326c08fdbe --- /dev/null +++ b/react-icons/fa/sun-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSunO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/superscript.d.ts b/react-icons/fa/superscript.d.ts new file mode 100644 index 0000000000..93108912ac --- /dev/null +++ b/react-icons/fa/superscript.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaSuperscript extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/table.d.ts b/react-icons/fa/table.d.ts new file mode 100644 index 0000000000..729dc71be7 --- /dev/null +++ b/react-icons/fa/table.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTable extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tablet.d.ts b/react-icons/fa/tablet.d.ts new file mode 100644 index 0000000000..6a0af701ec --- /dev/null +++ b/react-icons/fa/tablet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tag.d.ts b/react-icons/fa/tag.d.ts new file mode 100644 index 0000000000..a2b717b60a --- /dev/null +++ b/react-icons/fa/tag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tags.d.ts b/react-icons/fa/tags.d.ts new file mode 100644 index 0000000000..bdfea932a8 --- /dev/null +++ b/react-icons/fa/tags.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTags extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tasks.d.ts b/react-icons/fa/tasks.d.ts new file mode 100644 index 0000000000..53095f89c8 --- /dev/null +++ b/react-icons/fa/tasks.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTasks extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/television.d.ts b/react-icons/fa/television.d.ts new file mode 100644 index 0000000000..f5bd7fa04c --- /dev/null +++ b/react-icons/fa/television.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTelevision extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tencent-weibo.d.ts b/react-icons/fa/tencent-weibo.d.ts new file mode 100644 index 0000000000..a5a9cd0a8b --- /dev/null +++ b/react-icons/fa/tencent-weibo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTencentWeibo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/terminal.d.ts b/react-icons/fa/terminal.d.ts new file mode 100644 index 0000000000..6765080b39 --- /dev/null +++ b/react-icons/fa/terminal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTerminal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/text-height.d.ts b/react-icons/fa/text-height.d.ts new file mode 100644 index 0000000000..a748212a63 --- /dev/null +++ b/react-icons/fa/text-height.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTextHeight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/text-width.d.ts b/react-icons/fa/text-width.d.ts new file mode 100644 index 0000000000..ffbe193270 --- /dev/null +++ b/react-icons/fa/text-width.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTextWidth extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th-large.d.ts b/react-icons/fa/th-large.d.ts new file mode 100644 index 0000000000..28ec80a8be --- /dev/null +++ b/react-icons/fa/th-large.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th-list.d.ts b/react-icons/fa/th-list.d.ts new file mode 100644 index 0000000000..f883916eae --- /dev/null +++ b/react-icons/fa/th-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThList extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th.d.ts b/react-icons/fa/th.d.ts new file mode 100644 index 0000000000..da425c0e87 --- /dev/null +++ b/react-icons/fa/th.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTh extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumb-tack.d.ts b/react-icons/fa/thumb-tack.d.ts new file mode 100644 index 0000000000..4ce8b60a96 --- /dev/null +++ b/react-icons/fa/thumb-tack.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThumbTack extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-down.d.ts b/react-icons/fa/thumbs-down.d.ts new file mode 100644 index 0000000000..bafbe1262a --- /dev/null +++ b/react-icons/fa/thumbs-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThumbsDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-o-down.d.ts b/react-icons/fa/thumbs-o-down.d.ts new file mode 100644 index 0000000000..c3ad25e41b --- /dev/null +++ b/react-icons/fa/thumbs-o-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThumbsODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-o-up.d.ts b/react-icons/fa/thumbs-o-up.d.ts new file mode 100644 index 0000000000..5ae5db41c5 --- /dev/null +++ b/react-icons/fa/thumbs-o-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThumbsOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-up.d.ts b/react-icons/fa/thumbs-up.d.ts new file mode 100644 index 0000000000..48db5340b7 --- /dev/null +++ b/react-icons/fa/thumbs-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaThumbsUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ticket.d.ts b/react-icons/fa/ticket.d.ts new file mode 100644 index 0000000000..f8a4f66318 --- /dev/null +++ b/react-icons/fa/ticket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTicket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/times-circle-o.d.ts b/react-icons/fa/times-circle-o.d.ts new file mode 100644 index 0000000000..63c2d58e08 --- /dev/null +++ b/react-icons/fa/times-circle-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTimesCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/times-circle.d.ts b/react-icons/fa/times-circle.d.ts new file mode 100644 index 0000000000..622ae90517 --- /dev/null +++ b/react-icons/fa/times-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTimesCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tint.d.ts b/react-icons/fa/tint.d.ts new file mode 100644 index 0000000000..8203fe5f02 --- /dev/null +++ b/react-icons/fa/tint.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTint extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/toggle-off.d.ts b/react-icons/fa/toggle-off.d.ts new file mode 100644 index 0000000000..c7ac1e72c2 --- /dev/null +++ b/react-icons/fa/toggle-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaToggleOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/toggle-on.d.ts b/react-icons/fa/toggle-on.d.ts new file mode 100644 index 0000000000..44790ed347 --- /dev/null +++ b/react-icons/fa/toggle-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaToggleOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trademark.d.ts b/react-icons/fa/trademark.d.ts new file mode 100644 index 0000000000..974550bcf4 --- /dev/null +++ b/react-icons/fa/trademark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrademark extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/train.d.ts b/react-icons/fa/train.d.ts new file mode 100644 index 0000000000..1a64f74d22 --- /dev/null +++ b/react-icons/fa/train.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/transgender-alt.d.ts b/react-icons/fa/transgender-alt.d.ts new file mode 100644 index 0000000000..7a76f08ea2 --- /dev/null +++ b/react-icons/fa/transgender-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTransgenderAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trash-o.d.ts b/react-icons/fa/trash-o.d.ts new file mode 100644 index 0000000000..0a57313fbd --- /dev/null +++ b/react-icons/fa/trash-o.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrashO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trash.d.ts b/react-icons/fa/trash.d.ts new file mode 100644 index 0000000000..cc6fb4f2f6 --- /dev/null +++ b/react-icons/fa/trash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tree.d.ts b/react-icons/fa/tree.d.ts new file mode 100644 index 0000000000..81f7891b45 --- /dev/null +++ b/react-icons/fa/tree.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTree extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trello.d.ts b/react-icons/fa/trello.d.ts new file mode 100644 index 0000000000..0061738bb0 --- /dev/null +++ b/react-icons/fa/trello.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrello extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tripadvisor.d.ts b/react-icons/fa/tripadvisor.d.ts new file mode 100644 index 0000000000..507eaa6bf0 --- /dev/null +++ b/react-icons/fa/tripadvisor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTripadvisor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trophy.d.ts b/react-icons/fa/trophy.d.ts new file mode 100644 index 0000000000..a6015be958 --- /dev/null +++ b/react-icons/fa/trophy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTrophy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/truck.d.ts b/react-icons/fa/truck.d.ts new file mode 100644 index 0000000000..821f63db99 --- /dev/null +++ b/react-icons/fa/truck.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTruck extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/try.d.ts b/react-icons/fa/try.d.ts new file mode 100644 index 0000000000..2706937990 --- /dev/null +++ b/react-icons/fa/try.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTry extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tty.d.ts b/react-icons/fa/tty.d.ts new file mode 100644 index 0000000000..27329a14e1 --- /dev/null +++ b/react-icons/fa/tty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTty extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tumblr-square.d.ts b/react-icons/fa/tumblr-square.d.ts new file mode 100644 index 0000000000..87c52bc295 --- /dev/null +++ b/react-icons/fa/tumblr-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTumblrSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tumblr.d.ts b/react-icons/fa/tumblr.d.ts new file mode 100644 index 0000000000..653879122a --- /dev/null +++ b/react-icons/fa/tumblr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTumblr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitch.d.ts b/react-icons/fa/twitch.d.ts new file mode 100644 index 0000000000..23cb946b8e --- /dev/null +++ b/react-icons/fa/twitch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitter-square.d.ts b/react-icons/fa/twitter-square.d.ts new file mode 100644 index 0000000000..882827f900 --- /dev/null +++ b/react-icons/fa/twitter-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTwitterSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitter.d.ts b/react-icons/fa/twitter.d.ts new file mode 100644 index 0000000000..eaa60c0a45 --- /dev/null +++ b/react-icons/fa/twitter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/umbrella.d.ts b/react-icons/fa/umbrella.d.ts new file mode 100644 index 0000000000..e1ad6dbce2 --- /dev/null +++ b/react-icons/fa/umbrella.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUmbrella extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/underline.d.ts b/react-icons/fa/underline.d.ts new file mode 100644 index 0000000000..9ec88a5fdd --- /dev/null +++ b/react-icons/fa/underline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUnderline extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/universal-access.d.ts b/react-icons/fa/universal-access.d.ts new file mode 100644 index 0000000000..008bc1bdbf --- /dev/null +++ b/react-icons/fa/universal-access.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUniversalAccess extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/unlock-alt.d.ts b/react-icons/fa/unlock-alt.d.ts new file mode 100644 index 0000000000..44b5eb6f28 --- /dev/null +++ b/react-icons/fa/unlock-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUnlockAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/unlock.d.ts b/react-icons/fa/unlock.d.ts new file mode 100644 index 0000000000..30704e6109 --- /dev/null +++ b/react-icons/fa/unlock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUnlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/upload.d.ts b/react-icons/fa/upload.d.ts new file mode 100644 index 0000000000..2abcbc51de --- /dev/null +++ b/react-icons/fa/upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/usb.d.ts b/react-icons/fa/usb.d.ts new file mode 100644 index 0000000000..4058752b75 --- /dev/null +++ b/react-icons/fa/usb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-md.d.ts b/react-icons/fa/user-md.d.ts new file mode 100644 index 0000000000..8997388a24 --- /dev/null +++ b/react-icons/fa/user-md.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUserMd extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-plus.d.ts b/react-icons/fa/user-plus.d.ts new file mode 100644 index 0000000000..15e63b2e0a --- /dev/null +++ b/react-icons/fa/user-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUserPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-secret.d.ts b/react-icons/fa/user-secret.d.ts new file mode 100644 index 0000000000..19840f6ee5 --- /dev/null +++ b/react-icons/fa/user-secret.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUserSecret extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-times.d.ts b/react-icons/fa/user-times.d.ts new file mode 100644 index 0000000000..0a7e325530 --- /dev/null +++ b/react-icons/fa/user-times.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUserTimes extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user.d.ts b/react-icons/fa/user.d.ts new file mode 100644 index 0000000000..e32e68cca3 --- /dev/null +++ b/react-icons/fa/user.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus-double.d.ts b/react-icons/fa/venus-double.d.ts new file mode 100644 index 0000000000..084a381172 --- /dev/null +++ b/react-icons/fa/venus-double.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVenusDouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus-mars.d.ts b/react-icons/fa/venus-mars.d.ts new file mode 100644 index 0000000000..49827813d1 --- /dev/null +++ b/react-icons/fa/venus-mars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVenusMars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus.d.ts b/react-icons/fa/venus.d.ts new file mode 100644 index 0000000000..feea601c7d --- /dev/null +++ b/react-icons/fa/venus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVenus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viacoin.d.ts b/react-icons/fa/viacoin.d.ts new file mode 100644 index 0000000000..cd48e887c1 --- /dev/null +++ b/react-icons/fa/viacoin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaViacoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viadeo-square.d.ts b/react-icons/fa/viadeo-square.d.ts new file mode 100644 index 0000000000..732f50a851 --- /dev/null +++ b/react-icons/fa/viadeo-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaViadeoSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viadeo.d.ts b/react-icons/fa/viadeo.d.ts new file mode 100644 index 0000000000..05a7014a9b --- /dev/null +++ b/react-icons/fa/viadeo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaViadeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/video-camera.d.ts b/react-icons/fa/video-camera.d.ts new file mode 100644 index 0000000000..4c222391be --- /dev/null +++ b/react-icons/fa/video-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVideoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vimeo-square.d.ts b/react-icons/fa/vimeo-square.d.ts new file mode 100644 index 0000000000..94e3a7a0ce --- /dev/null +++ b/react-icons/fa/vimeo-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVimeoSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vimeo.d.ts b/react-icons/fa/vimeo.d.ts new file mode 100644 index 0000000000..28f16ddc1c --- /dev/null +++ b/react-icons/fa/vimeo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vine.d.ts b/react-icons/fa/vine.d.ts new file mode 100644 index 0000000000..2e25da01c8 --- /dev/null +++ b/react-icons/fa/vine.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVine extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vk.d.ts b/react-icons/fa/vk.d.ts new file mode 100644 index 0000000000..214919b26d --- /dev/null +++ b/react-icons/fa/vk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-control-phone.d.ts b/react-icons/fa/volume-control-phone.d.ts new file mode 100644 index 0000000000..68db678334 --- /dev/null +++ b/react-icons/fa/volume-control-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVolumeControlPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-down.d.ts b/react-icons/fa/volume-down.d.ts new file mode 100644 index 0000000000..5f5821c2a1 --- /dev/null +++ b/react-icons/fa/volume-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-off.d.ts b/react-icons/fa/volume-off.d.ts new file mode 100644 index 0000000000..3ffe04d08d --- /dev/null +++ b/react-icons/fa/volume-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-up.d.ts b/react-icons/fa/volume-up.d.ts new file mode 100644 index 0000000000..d8b324ca4d --- /dev/null +++ b/react-icons/fa/volume-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wechat.d.ts b/react-icons/fa/wechat.d.ts new file mode 100644 index 0000000000..0db9e9e145 --- /dev/null +++ b/react-icons/fa/wechat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWechat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/weibo.d.ts b/react-icons/fa/weibo.d.ts new file mode 100644 index 0000000000..eac4f3e6f0 --- /dev/null +++ b/react-icons/fa/weibo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWeibo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/whatsapp.d.ts b/react-icons/fa/whatsapp.d.ts new file mode 100644 index 0000000000..1ba1be9fa4 --- /dev/null +++ b/react-icons/fa/whatsapp.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWhatsapp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wheelchair-alt.d.ts b/react-icons/fa/wheelchair-alt.d.ts new file mode 100644 index 0000000000..83fe093731 --- /dev/null +++ b/react-icons/fa/wheelchair-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWheelchairAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wheelchair.d.ts b/react-icons/fa/wheelchair.d.ts new file mode 100644 index 0000000000..b137d64942 --- /dev/null +++ b/react-icons/fa/wheelchair.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWheelchair extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wifi.d.ts b/react-icons/fa/wifi.d.ts new file mode 100644 index 0000000000..ada4e105c5 --- /dev/null +++ b/react-icons/fa/wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wikipedia-w.d.ts b/react-icons/fa/wikipedia-w.d.ts new file mode 100644 index 0000000000..afe4aa701d --- /dev/null +++ b/react-icons/fa/wikipedia-w.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWikipediaW extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/windows.d.ts b/react-icons/fa/windows.d.ts new file mode 100644 index 0000000000..a501e595a0 --- /dev/null +++ b/react-icons/fa/windows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wordpress.d.ts b/react-icons/fa/wordpress.d.ts new file mode 100644 index 0000000000..665d72483c --- /dev/null +++ b/react-icons/fa/wordpress.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWordpress extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wpbeginner.d.ts b/react-icons/fa/wpbeginner.d.ts new file mode 100644 index 0000000000..5c3aa1edcd --- /dev/null +++ b/react-icons/fa/wpbeginner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWpbeginner extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wpforms.d.ts b/react-icons/fa/wpforms.d.ts new file mode 100644 index 0000000000..3d6db03ca8 --- /dev/null +++ b/react-icons/fa/wpforms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWpforms extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wrench.d.ts b/react-icons/fa/wrench.d.ts new file mode 100644 index 0000000000..ffaf049ab8 --- /dev/null +++ b/react-icons/fa/wrench.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaWrench extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/xing-square.d.ts b/react-icons/fa/xing-square.d.ts new file mode 100644 index 0000000000..b5563b59dc --- /dev/null +++ b/react-icons/fa/xing-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaXingSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/xing.d.ts b/react-icons/fa/xing.d.ts new file mode 100644 index 0000000000..f0502b2a48 --- /dev/null +++ b/react-icons/fa/xing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaXing extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/y-combinator.d.ts b/react-icons/fa/y-combinator.d.ts new file mode 100644 index 0000000000..9f717e2b00 --- /dev/null +++ b/react-icons/fa/y-combinator.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYCombinator extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/yahoo.d.ts b/react-icons/fa/yahoo.d.ts new file mode 100644 index 0000000000..a9ec96f885 --- /dev/null +++ b/react-icons/fa/yahoo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYahoo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/yelp.d.ts b/react-icons/fa/yelp.d.ts new file mode 100644 index 0000000000..bee4fab313 --- /dev/null +++ b/react-icons/fa/yelp.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube-play.d.ts b/react-icons/fa/youtube-play.d.ts new file mode 100644 index 0000000000..bf532735b7 --- /dev/null +++ b/react-icons/fa/youtube-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYoutubePlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube-square.d.ts b/react-icons/fa/youtube-square.d.ts new file mode 100644 index 0000000000..c4fd6abc7f --- /dev/null +++ b/react-icons/fa/youtube-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYoutubeSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube.d.ts b/react-icons/fa/youtube.d.ts new file mode 100644 index 0000000000..8425f93bdb --- /dev/null +++ b/react-icons/fa/youtube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class FaYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alert.d.ts b/react-icons/go/alert.d.ts new file mode 100644 index 0000000000..e3b0898c07 --- /dev/null +++ b/react-icons/go/alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-align.d.ts b/react-icons/go/alignment-align.d.ts new file mode 100644 index 0000000000..ef5a508031 --- /dev/null +++ b/react-icons/go/alignment-align.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoAlignmentAlign extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-aligned-to.d.ts b/react-icons/go/alignment-aligned-to.d.ts new file mode 100644 index 0000000000..58aa30f317 --- /dev/null +++ b/react-icons/go/alignment-aligned-to.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoAlignmentAlignedTo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-unalign.d.ts b/react-icons/go/alignment-unalign.d.ts new file mode 100644 index 0000000000..38aab07e1a --- /dev/null +++ b/react-icons/go/alignment-unalign.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoAlignmentUnalign extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-down.d.ts b/react-icons/go/arrow-down.d.ts new file mode 100644 index 0000000000..2a98e6a1d8 --- /dev/null +++ b/react-icons/go/arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-left.d.ts b/react-icons/go/arrow-left.d.ts new file mode 100644 index 0000000000..fbb8812fee --- /dev/null +++ b/react-icons/go/arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-right.d.ts b/react-icons/go/arrow-right.d.ts new file mode 100644 index 0000000000..a89290787e --- /dev/null +++ b/react-icons/go/arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-down.d.ts b/react-icons/go/arrow-small-down.d.ts new file mode 100644 index 0000000000..ce97a63140 --- /dev/null +++ b/react-icons/go/arrow-small-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowSmallDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-left.d.ts b/react-icons/go/arrow-small-left.d.ts new file mode 100644 index 0000000000..fe58ea64bc --- /dev/null +++ b/react-icons/go/arrow-small-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowSmallLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-right.d.ts b/react-icons/go/arrow-small-right.d.ts new file mode 100644 index 0000000000..edc02ea719 --- /dev/null +++ b/react-icons/go/arrow-small-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowSmallRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-up.d.ts b/react-icons/go/arrow-small-up.d.ts new file mode 100644 index 0000000000..eda8bfda1a --- /dev/null +++ b/react-icons/go/arrow-small-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowSmallUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-up.d.ts b/react-icons/go/arrow-up.d.ts new file mode 100644 index 0000000000..bada51205b --- /dev/null +++ b/react-icons/go/arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/beer.d.ts b/react-icons/go/beer.d.ts new file mode 100644 index 0000000000..7e5abb15a5 --- /dev/null +++ b/react-icons/go/beer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/book.d.ts b/react-icons/go/book.d.ts new file mode 100644 index 0000000000..5e4c7e1f11 --- /dev/null +++ b/react-icons/go/book.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/bookmark.d.ts b/react-icons/go/bookmark.d.ts new file mode 100644 index 0000000000..0806416c0d --- /dev/null +++ b/react-icons/go/bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/briefcase.d.ts b/react-icons/go/briefcase.d.ts new file mode 100644 index 0000000000..c3e4530b62 --- /dev/null +++ b/react-icons/go/briefcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/broadcast.d.ts b/react-icons/go/broadcast.d.ts new file mode 100644 index 0000000000..2393ca3848 --- /dev/null +++ b/react-icons/go/broadcast.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBroadcast extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/browser.d.ts b/react-icons/go/browser.d.ts new file mode 100644 index 0000000000..14bdd59e64 --- /dev/null +++ b/react-icons/go/browser.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBrowser extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/bug.d.ts b/react-icons/go/bug.d.ts new file mode 100644 index 0000000000..8ac917f5eb --- /dev/null +++ b/react-icons/go/bug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/calendar.d.ts b/react-icons/go/calendar.d.ts new file mode 100644 index 0000000000..6654d19e34 --- /dev/null +++ b/react-icons/go/calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/check.d.ts b/react-icons/go/check.d.ts new file mode 100644 index 0000000000..9df2476d3d --- /dev/null +++ b/react-icons/go/check.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/checklist.d.ts b/react-icons/go/checklist.d.ts new file mode 100644 index 0000000000..2436e3ed69 --- /dev/null +++ b/react-icons/go/checklist.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoChecklist extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-down.d.ts b/react-icons/go/chevron-down.d.ts new file mode 100644 index 0000000000..03a27a1e63 --- /dev/null +++ b/react-icons/go/chevron-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-left.d.ts b/react-icons/go/chevron-left.d.ts new file mode 100644 index 0000000000..544c803174 --- /dev/null +++ b/react-icons/go/chevron-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-right.d.ts b/react-icons/go/chevron-right.d.ts new file mode 100644 index 0000000000..ead000dec0 --- /dev/null +++ b/react-icons/go/chevron-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-up.d.ts b/react-icons/go/chevron-up.d.ts new file mode 100644 index 0000000000..e2099adf7c --- /dev/null +++ b/react-icons/go/chevron-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/circle-slash.d.ts b/react-icons/go/circle-slash.d.ts new file mode 100644 index 0000000000..2354b62c73 --- /dev/null +++ b/react-icons/go/circle-slash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCircleSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/circuit-board.d.ts b/react-icons/go/circuit-board.d.ts new file mode 100644 index 0000000000..a9f94df043 --- /dev/null +++ b/react-icons/go/circuit-board.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCircuitBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/clippy.d.ts b/react-icons/go/clippy.d.ts new file mode 100644 index 0000000000..27df7cbe4c --- /dev/null +++ b/react-icons/go/clippy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoClippy extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/clock.d.ts b/react-icons/go/clock.d.ts new file mode 100644 index 0000000000..77007fc562 --- /dev/null +++ b/react-icons/go/clock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/cloud-download.d.ts b/react-icons/go/cloud-download.d.ts new file mode 100644 index 0000000000..ef68deb01d --- /dev/null +++ b/react-icons/go/cloud-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/cloud-upload.d.ts b/react-icons/go/cloud-upload.d.ts new file mode 100644 index 0000000000..4e47a69aa4 --- /dev/null +++ b/react-icons/go/cloud-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/code.d.ts b/react-icons/go/code.d.ts new file mode 100644 index 0000000000..f0d98b4025 --- /dev/null +++ b/react-icons/go/code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/color-mode.d.ts b/react-icons/go/color-mode.d.ts new file mode 100644 index 0000000000..ee7d5c1abd --- /dev/null +++ b/react-icons/go/color-mode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoColorMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/comment-discussion.d.ts b/react-icons/go/comment-discussion.d.ts new file mode 100644 index 0000000000..b19d9d6a97 --- /dev/null +++ b/react-icons/go/comment-discussion.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCommentDiscussion extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/comment.d.ts b/react-icons/go/comment.d.ts new file mode 100644 index 0000000000..ddc869ebf6 --- /dev/null +++ b/react-icons/go/comment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/credit-card.d.ts b/react-icons/go/credit-card.d.ts new file mode 100644 index 0000000000..ad7b4dddb5 --- /dev/null +++ b/react-icons/go/credit-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/dash.d.ts b/react-icons/go/dash.d.ts new file mode 100644 index 0000000000..aa86737ff2 --- /dev/null +++ b/react-icons/go/dash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDash extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/dashboard.d.ts b/react-icons/go/dashboard.d.ts new file mode 100644 index 0000000000..f0bf4b674e --- /dev/null +++ b/react-icons/go/dashboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/database.d.ts b/react-icons/go/database.d.ts new file mode 100644 index 0000000000..a91d8f3471 --- /dev/null +++ b/react-icons/go/database.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-camera-video.d.ts b/react-icons/go/device-camera-video.d.ts new file mode 100644 index 0000000000..34d06ea23a --- /dev/null +++ b/react-icons/go/device-camera-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDeviceCameraVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-camera.d.ts b/react-icons/go/device-camera.d.ts new file mode 100644 index 0000000000..913e545891 --- /dev/null +++ b/react-icons/go/device-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDeviceCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-desktop.d.ts b/react-icons/go/device-desktop.d.ts new file mode 100644 index 0000000000..dd4475ca10 --- /dev/null +++ b/react-icons/go/device-desktop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDeviceDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-mobile.d.ts b/react-icons/go/device-mobile.d.ts new file mode 100644 index 0000000000..3d9a31fc2c --- /dev/null +++ b/react-icons/go/device-mobile.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDeviceMobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-added.d.ts b/react-icons/go/diff-added.d.ts new file mode 100644 index 0000000000..e0beb91dc6 --- /dev/null +++ b/react-icons/go/diff-added.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiffAdded extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-ignored.d.ts b/react-icons/go/diff-ignored.d.ts new file mode 100644 index 0000000000..68e5bb0f5e --- /dev/null +++ b/react-icons/go/diff-ignored.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiffIgnored extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-modified.d.ts b/react-icons/go/diff-modified.d.ts new file mode 100644 index 0000000000..89f7fa5ce2 --- /dev/null +++ b/react-icons/go/diff-modified.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiffModified extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-removed.d.ts b/react-icons/go/diff-removed.d.ts new file mode 100644 index 0000000000..1b2e78c3cc --- /dev/null +++ b/react-icons/go/diff-removed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiffRemoved extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-renamed.d.ts b/react-icons/go/diff-renamed.d.ts new file mode 100644 index 0000000000..154fa6623e --- /dev/null +++ b/react-icons/go/diff-renamed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiffRenamed extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff.d.ts b/react-icons/go/diff.d.ts new file mode 100644 index 0000000000..ba3007d132 --- /dev/null +++ b/react-icons/go/diff.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoDiff extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/ellipsis.d.ts b/react-icons/go/ellipsis.d.ts new file mode 100644 index 0000000000..7ee63b2c98 --- /dev/null +++ b/react-icons/go/ellipsis.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoEllipsis extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/eye.d.ts b/react-icons/go/eye.d.ts new file mode 100644 index 0000000000..b88658ed96 --- /dev/null +++ b/react-icons/go/eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-binary.d.ts b/react-icons/go/file-binary.d.ts new file mode 100644 index 0000000000..f802393034 --- /dev/null +++ b/react-icons/go/file-binary.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileBinary extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-code.d.ts b/react-icons/go/file-code.d.ts new file mode 100644 index 0000000000..b8cf7ad006 --- /dev/null +++ b/react-icons/go/file-code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-directory.d.ts b/react-icons/go/file-directory.d.ts new file mode 100644 index 0000000000..18f7aa4f08 --- /dev/null +++ b/react-icons/go/file-directory.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-media.d.ts b/react-icons/go/file-media.d.ts new file mode 100644 index 0000000000..1c26cfb75d --- /dev/null +++ b/react-icons/go/file-media.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileMedia extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-pdf.d.ts b/react-icons/go/file-pdf.d.ts new file mode 100644 index 0000000000..27a4e10cea --- /dev/null +++ b/react-icons/go/file-pdf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFilePdf extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-submodule.d.ts b/react-icons/go/file-submodule.d.ts new file mode 100644 index 0000000000..70ca15a831 --- /dev/null +++ b/react-icons/go/file-submodule.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileSubmodule extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-symlink-directory.d.ts b/react-icons/go/file-symlink-directory.d.ts new file mode 100644 index 0000000000..e0836c35eb --- /dev/null +++ b/react-icons/go/file-symlink-directory.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileSymlinkDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-symlink-file.d.ts b/react-icons/go/file-symlink-file.d.ts new file mode 100644 index 0000000000..164eeb2a92 --- /dev/null +++ b/react-icons/go/file-symlink-file.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileSymlinkFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-text.d.ts b/react-icons/go/file-text.d.ts new file mode 100644 index 0000000000..ac6506096d --- /dev/null +++ b/react-icons/go/file-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileText extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-zip.d.ts b/react-icons/go/file-zip.d.ts new file mode 100644 index 0000000000..74a207eb49 --- /dev/null +++ b/react-icons/go/file-zip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFileZip extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/flame.d.ts b/react-icons/go/flame.d.ts new file mode 100644 index 0000000000..1073fe069e --- /dev/null +++ b/react-icons/go/flame.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/fold.d.ts b/react-icons/go/fold.d.ts new file mode 100644 index 0000000000..3388aa31c0 --- /dev/null +++ b/react-icons/go/fold.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoFold extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gear.d.ts b/react-icons/go/gear.d.ts new file mode 100644 index 0000000000..36741bbd9a --- /dev/null +++ b/react-icons/go/gear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGear extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gift.d.ts b/react-icons/go/gift.d.ts new file mode 100644 index 0000000000..361f50a227 --- /dev/null +++ b/react-icons/go/gift.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gist-secret.d.ts b/react-icons/go/gist-secret.d.ts new file mode 100644 index 0000000000..bb06848b5a --- /dev/null +++ b/react-icons/go/gist-secret.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGistSecret extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gist.d.ts b/react-icons/go/gist.d.ts new file mode 100644 index 0000000000..1aed620bb5 --- /dev/null +++ b/react-icons/go/gist.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGist extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-branch.d.ts b/react-icons/go/git-branch.d.ts new file mode 100644 index 0000000000..2007fbe986 --- /dev/null +++ b/react-icons/go/git-branch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGitBranch extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-commit.d.ts b/react-icons/go/git-commit.d.ts new file mode 100644 index 0000000000..60170f451c --- /dev/null +++ b/react-icons/go/git-commit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGitCommit extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-compare.d.ts b/react-icons/go/git-compare.d.ts new file mode 100644 index 0000000000..7901bd1527 --- /dev/null +++ b/react-icons/go/git-compare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGitCompare extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-merge.d.ts b/react-icons/go/git-merge.d.ts new file mode 100644 index 0000000000..89b492f6d1 --- /dev/null +++ b/react-icons/go/git-merge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGitMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-pull-request.d.ts b/react-icons/go/git-pull-request.d.ts new file mode 100644 index 0000000000..227967cf66 --- /dev/null +++ b/react-icons/go/git-pull-request.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGitPullRequest extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/globe.d.ts b/react-icons/go/globe.d.ts new file mode 100644 index 0000000000..fd72d5356e --- /dev/null +++ b/react-icons/go/globe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/graph.d.ts b/react-icons/go/graph.d.ts new file mode 100644 index 0000000000..ee16d661de --- /dev/null +++ b/react-icons/go/graph.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoGraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/heart.d.ts b/react-icons/go/heart.d.ts new file mode 100644 index 0000000000..205127a6b8 --- /dev/null +++ b/react-icons/go/heart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/history.d.ts b/react-icons/go/history.d.ts new file mode 100644 index 0000000000..8321416f73 --- /dev/null +++ b/react-icons/go/history.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/home.d.ts b/react-icons/go/home.d.ts new file mode 100644 index 0000000000..daf61c56b7 --- /dev/null +++ b/react-icons/go/home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/horizontal-rule.d.ts b/react-icons/go/horizontal-rule.d.ts new file mode 100644 index 0000000000..f50b818fcc --- /dev/null +++ b/react-icons/go/horizontal-rule.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHorizontalRule extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/hourglass.d.ts b/react-icons/go/hourglass.d.ts new file mode 100644 index 0000000000..1f2c735f86 --- /dev/null +++ b/react-icons/go/hourglass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHourglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/hubot.d.ts b/react-icons/go/hubot.d.ts new file mode 100644 index 0000000000..0ff249f748 --- /dev/null +++ b/react-icons/go/hubot.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoHubot extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/inbox.d.ts b/react-icons/go/inbox.d.ts new file mode 100644 index 0000000000..5f60f10ecb --- /dev/null +++ b/react-icons/go/inbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/index.d.ts b/react-icons/go/index.d.ts new file mode 100644 index 0000000000..93ada39c2b --- /dev/null +++ b/react-icons/go/index.d.ts @@ -0,0 +1,354 @@ +import _GoAlert from "./alert"; +import _GoAlignmentAlign from "./alignment-align"; +import _GoAlignmentAlignedTo from "./alignment-aligned-to"; +import _GoAlignmentUnalign from "./alignment-unalign"; +import _GoArrowDown from "./arrow-down"; +import _GoArrowLeft from "./arrow-left"; +import _GoArrowRight from "./arrow-right"; +import _GoArrowSmallDown from "./arrow-small-down"; +import _GoArrowSmallLeft from "./arrow-small-left"; +import _GoArrowSmallRight from "./arrow-small-right"; +import _GoArrowSmallUp from "./arrow-small-up"; +import _GoArrowUp from "./arrow-up"; +import _GoBeer from "./beer"; +import _GoBook from "./book"; +import _GoBookmark from "./bookmark"; +import _GoBriefcase from "./briefcase"; +import _GoBroadcast from "./broadcast"; +import _GoBrowser from "./browser"; +import _GoBug from "./bug"; +import _GoCalendar from "./calendar"; +import _GoCheck from "./check"; +import _GoChecklist from "./checklist"; +import _GoChevronDown from "./chevron-down"; +import _GoChevronLeft from "./chevron-left"; +import _GoChevronRight from "./chevron-right"; +import _GoChevronUp from "./chevron-up"; +import _GoCircleSlash from "./circle-slash"; +import _GoCircuitBoard from "./circuit-board"; +import _GoClippy from "./clippy"; +import _GoClock from "./clock"; +import _GoCloudDownload from "./cloud-download"; +import _GoCloudUpload from "./cloud-upload"; +import _GoCode from "./code"; +import _GoColorMode from "./color-mode"; +import _GoCommentDiscussion from "./comment-discussion"; +import _GoComment from "./comment"; +import _GoCreditCard from "./credit-card"; +import _GoDash from "./dash"; +import _GoDashboard from "./dashboard"; +import _GoDatabase from "./database"; +import _GoDeviceCameraVideo from "./device-camera-video"; +import _GoDeviceCamera from "./device-camera"; +import _GoDeviceDesktop from "./device-desktop"; +import _GoDeviceMobile from "./device-mobile"; +import _GoDiffAdded from "./diff-added"; +import _GoDiffIgnored from "./diff-ignored"; +import _GoDiffModified from "./diff-modified"; +import _GoDiffRemoved from "./diff-removed"; +import _GoDiffRenamed from "./diff-renamed"; +import _GoDiff from "./diff"; +import _GoEllipsis from "./ellipsis"; +import _GoEye from "./eye"; +import _GoFileBinary from "./file-binary"; +import _GoFileCode from "./file-code"; +import _GoFileDirectory from "./file-directory"; +import _GoFileMedia from "./file-media"; +import _GoFilePdf from "./file-pdf"; +import _GoFileSubmodule from "./file-submodule"; +import _GoFileSymlinkDirectory from "./file-symlink-directory"; +import _GoFileSymlinkFile from "./file-symlink-file"; +import _GoFileText from "./file-text"; +import _GoFileZip from "./file-zip"; +import _GoFlame from "./flame"; +import _GoFold from "./fold"; +import _GoGear from "./gear"; +import _GoGift from "./gift"; +import _GoGistSecret from "./gist-secret"; +import _GoGist from "./gist"; +import _GoGitBranch from "./git-branch"; +import _GoGitCommit from "./git-commit"; +import _GoGitCompare from "./git-compare"; +import _GoGitMerge from "./git-merge"; +import _GoGitPullRequest from "./git-pull-request"; +import _GoGlobe from "./globe"; +import _GoGraph from "./graph"; +import _GoHeart from "./heart"; +import _GoHistory from "./history"; +import _GoHome from "./home"; +import _GoHorizontalRule from "./horizontal-rule"; +import _GoHourglass from "./hourglass"; +import _GoHubot from "./hubot"; +import _GoInbox from "./inbox"; +import _GoInfo from "./info"; +import _GoIssueClosed from "./issue-closed"; +import _GoIssueOpened from "./issue-opened"; +import _GoIssueReopened from "./issue-reopened"; +import _GoJersey from "./jersey"; +import _GoJumpDown from "./jump-down"; +import _GoJumpLeft from "./jump-left"; +import _GoJumpRight from "./jump-right"; +import _GoJumpUp from "./jump-up"; +import _GoKey from "./key"; +import _GoKeyboard from "./keyboard"; +import _GoLaw from "./law"; +import _GoLightBulb from "./light-bulb"; +import _GoLinkExternal from "./link-external"; +import _GoLink from "./link"; +import _GoListOrdered from "./list-ordered"; +import _GoListUnordered from "./list-unordered"; +import _GoLocation from "./location"; +import _GoLock from "./lock"; +import _GoLogoGithub from "./logo-github"; +import _GoMailRead from "./mail-read"; +import _GoMailReply from "./mail-reply"; +import _GoMail from "./mail"; +import _GoMarkGithub from "./mark-github"; +import _GoMarkdown from "./markdown"; +import _GoMegaphone from "./megaphone"; +import _GoMention from "./mention"; +import _GoMicroscope from "./microscope"; +import _GoMilestone from "./milestone"; +import _GoMirror from "./mirror"; +import _GoMortarBoard from "./mortar-board"; +import _GoMoveDown from "./move-down"; +import _GoMoveLeft from "./move-left"; +import _GoMoveRight from "./move-right"; +import _GoMoveUp from "./move-up"; +import _GoMute from "./mute"; +import _GoNoNewline from "./no-newline"; +import _GoOctoface from "./octoface"; +import _GoOrganization from "./organization"; +import _GoPackage from "./package"; +import _GoPaintcan from "./paintcan"; +import _GoPencil from "./pencil"; +import _GoPerson from "./person"; +import _GoPin from "./pin"; +import _GoPlaybackFastForward from "./playback-fast-forward"; +import _GoPlaybackPause from "./playback-pause"; +import _GoPlaybackPlay from "./playback-play"; +import _GoPlaybackRewind from "./playback-rewind"; +import _GoPlug from "./plug"; +import _GoPlus from "./plus"; +import _GoPodium from "./podium"; +import _GoPrimitiveDot from "./primitive-dot"; +import _GoPrimitiveSquare from "./primitive-square"; +import _GoPulse from "./pulse"; +import _GoPuzzle from "./puzzle"; +import _GoQuestion from "./question"; +import _GoQuote from "./quote"; +import _GoRadioTower from "./radio-tower"; +import _GoRepoClone from "./repo-clone"; +import _GoRepoForcePush from "./repo-force-push"; +import _GoRepoForked from "./repo-forked"; +import _GoRepoPull from "./repo-pull"; +import _GoRepoPush from "./repo-push"; +import _GoRepo from "./repo"; +import _GoRocket from "./rocket"; +import _GoRss from "./rss"; +import _GoRuby from "./ruby"; +import _GoScreenFull from "./screen-full"; +import _GoScreenNormal from "./screen-normal"; +import _GoSearch from "./search"; +import _GoServer from "./server"; +import _GoSettings from "./settings"; +import _GoSignIn from "./sign-in"; +import _GoSignOut from "./sign-out"; +import _GoSplit from "./split"; +import _GoSquirrel from "./squirrel"; +import _GoStar from "./star"; +import _GoSteps from "./steps"; +import _GoStop from "./stop"; +import _GoSync from "./sync"; +import _GoTag from "./tag"; +import _GoTelescope from "./telescope"; +import _GoTerminal from "./terminal"; +import _GoThreeBars from "./three-bars"; +import _GoTools from "./tools"; +import _GoTrashcan from "./trashcan"; +import _GoTriangleDown from "./triangle-down"; +import _GoTriangleLeft from "./triangle-left"; +import _GoTriangleRight from "./triangle-right"; +import _GoTriangleUp from "./triangle-up"; +import _GoUnfold from "./unfold"; +import _GoUnmute from "./unmute"; +import _GoVersions from "./versions"; +import _GoX from "./x"; +import _GoZap from "./zap"; +export var GoAlert: typeof _GoAlert; +export var GoAlignmentAlign: typeof _GoAlignmentAlign; +export var GoAlignmentAlignedTo: typeof _GoAlignmentAlignedTo; +export var GoAlignmentUnalign: typeof _GoAlignmentUnalign; +export var GoArrowDown: typeof _GoArrowDown; +export var GoArrowLeft: typeof _GoArrowLeft; +export var GoArrowRight: typeof _GoArrowRight; +export var GoArrowSmallDown: typeof _GoArrowSmallDown; +export var GoArrowSmallLeft: typeof _GoArrowSmallLeft; +export var GoArrowSmallRight: typeof _GoArrowSmallRight; +export var GoArrowSmallUp: typeof _GoArrowSmallUp; +export var GoArrowUp: typeof _GoArrowUp; +export var GoBeer: typeof _GoBeer; +export var GoBook: typeof _GoBook; +export var GoBookmark: typeof _GoBookmark; +export var GoBriefcase: typeof _GoBriefcase; +export var GoBroadcast: typeof _GoBroadcast; +export var GoBrowser: typeof _GoBrowser; +export var GoBug: typeof _GoBug; +export var GoCalendar: typeof _GoCalendar; +export var GoCheck: typeof _GoCheck; +export var GoChecklist: typeof _GoChecklist; +export var GoChevronDown: typeof _GoChevronDown; +export var GoChevronLeft: typeof _GoChevronLeft; +export var GoChevronRight: typeof _GoChevronRight; +export var GoChevronUp: typeof _GoChevronUp; +export var GoCircleSlash: typeof _GoCircleSlash; +export var GoCircuitBoard: typeof _GoCircuitBoard; +export var GoClippy: typeof _GoClippy; +export var GoClock: typeof _GoClock; +export var GoCloudDownload: typeof _GoCloudDownload; +export var GoCloudUpload: typeof _GoCloudUpload; +export var GoCode: typeof _GoCode; +export var GoColorMode: typeof _GoColorMode; +export var GoCommentDiscussion: typeof _GoCommentDiscussion; +export var GoComment: typeof _GoComment; +export var GoCreditCard: typeof _GoCreditCard; +export var GoDash: typeof _GoDash; +export var GoDashboard: typeof _GoDashboard; +export var GoDatabase: typeof _GoDatabase; +export var GoDeviceCameraVideo: typeof _GoDeviceCameraVideo; +export var GoDeviceCamera: typeof _GoDeviceCamera; +export var GoDeviceDesktop: typeof _GoDeviceDesktop; +export var GoDeviceMobile: typeof _GoDeviceMobile; +export var GoDiffAdded: typeof _GoDiffAdded; +export var GoDiffIgnored: typeof _GoDiffIgnored; +export var GoDiffModified: typeof _GoDiffModified; +export var GoDiffRemoved: typeof _GoDiffRemoved; +export var GoDiffRenamed: typeof _GoDiffRenamed; +export var GoDiff: typeof _GoDiff; +export var GoEllipsis: typeof _GoEllipsis; +export var GoEye: typeof _GoEye; +export var GoFileBinary: typeof _GoFileBinary; +export var GoFileCode: typeof _GoFileCode; +export var GoFileDirectory: typeof _GoFileDirectory; +export var GoFileMedia: typeof _GoFileMedia; +export var GoFilePdf: typeof _GoFilePdf; +export var GoFileSubmodule: typeof _GoFileSubmodule; +export var GoFileSymlinkDirectory: typeof _GoFileSymlinkDirectory; +export var GoFileSymlinkFile: typeof _GoFileSymlinkFile; +export var GoFileText: typeof _GoFileText; +export var GoFileZip: typeof _GoFileZip; +export var GoFlame: typeof _GoFlame; +export var GoFold: typeof _GoFold; +export var GoGear: typeof _GoGear; +export var GoGift: typeof _GoGift; +export var GoGistSecret: typeof _GoGistSecret; +export var GoGist: typeof _GoGist; +export var GoGitBranch: typeof _GoGitBranch; +export var GoGitCommit: typeof _GoGitCommit; +export var GoGitCompare: typeof _GoGitCompare; +export var GoGitMerge: typeof _GoGitMerge; +export var GoGitPullRequest: typeof _GoGitPullRequest; +export var GoGlobe: typeof _GoGlobe; +export var GoGraph: typeof _GoGraph; +export var GoHeart: typeof _GoHeart; +export var GoHistory: typeof _GoHistory; +export var GoHome: typeof _GoHome; +export var GoHorizontalRule: typeof _GoHorizontalRule; +export var GoHourglass: typeof _GoHourglass; +export var GoHubot: typeof _GoHubot; +export var GoInbox: typeof _GoInbox; +export var GoInfo: typeof _GoInfo; +export var GoIssueClosed: typeof _GoIssueClosed; +export var GoIssueOpened: typeof _GoIssueOpened; +export var GoIssueReopened: typeof _GoIssueReopened; +export var GoJersey: typeof _GoJersey; +export var GoJumpDown: typeof _GoJumpDown; +export var GoJumpLeft: typeof _GoJumpLeft; +export var GoJumpRight: typeof _GoJumpRight; +export var GoJumpUp: typeof _GoJumpUp; +export var GoKey: typeof _GoKey; +export var GoKeyboard: typeof _GoKeyboard; +export var GoLaw: typeof _GoLaw; +export var GoLightBulb: typeof _GoLightBulb; +export var GoLinkExternal: typeof _GoLinkExternal; +export var GoLink: typeof _GoLink; +export var GoListOrdered: typeof _GoListOrdered; +export var GoListUnordered: typeof _GoListUnordered; +export var GoLocation: typeof _GoLocation; +export var GoLock: typeof _GoLock; +export var GoLogoGithub: typeof _GoLogoGithub; +export var GoMailRead: typeof _GoMailRead; +export var GoMailReply: typeof _GoMailReply; +export var GoMail: typeof _GoMail; +export var GoMarkGithub: typeof _GoMarkGithub; +export var GoMarkdown: typeof _GoMarkdown; +export var GoMegaphone: typeof _GoMegaphone; +export var GoMention: typeof _GoMention; +export var GoMicroscope: typeof _GoMicroscope; +export var GoMilestone: typeof _GoMilestone; +export var GoMirror: typeof _GoMirror; +export var GoMortarBoard: typeof _GoMortarBoard; +export var GoMoveDown: typeof _GoMoveDown; +export var GoMoveLeft: typeof _GoMoveLeft; +export var GoMoveRight: typeof _GoMoveRight; +export var GoMoveUp: typeof _GoMoveUp; +export var GoMute: typeof _GoMute; +export var GoNoNewline: typeof _GoNoNewline; +export var GoOctoface: typeof _GoOctoface; +export var GoOrganization: typeof _GoOrganization; +export var GoPackage: typeof _GoPackage; +export var GoPaintcan: typeof _GoPaintcan; +export var GoPencil: typeof _GoPencil; +export var GoPerson: typeof _GoPerson; +export var GoPin: typeof _GoPin; +export var GoPlaybackFastForward: typeof _GoPlaybackFastForward; +export var GoPlaybackPause: typeof _GoPlaybackPause; +export var GoPlaybackPlay: typeof _GoPlaybackPlay; +export var GoPlaybackRewind: typeof _GoPlaybackRewind; +export var GoPlug: typeof _GoPlug; +export var GoPlus: typeof _GoPlus; +export var GoPodium: typeof _GoPodium; +export var GoPrimitiveDot: typeof _GoPrimitiveDot; +export var GoPrimitiveSquare: typeof _GoPrimitiveSquare; +export var GoPulse: typeof _GoPulse; +export var GoPuzzle: typeof _GoPuzzle; +export var GoQuestion: typeof _GoQuestion; +export var GoQuote: typeof _GoQuote; +export var GoRadioTower: typeof _GoRadioTower; +export var GoRepoClone: typeof _GoRepoClone; +export var GoRepoForcePush: typeof _GoRepoForcePush; +export var GoRepoForked: typeof _GoRepoForked; +export var GoRepoPull: typeof _GoRepoPull; +export var GoRepoPush: typeof _GoRepoPush; +export var GoRepo: typeof _GoRepo; +export var GoRocket: typeof _GoRocket; +export var GoRss: typeof _GoRss; +export var GoRuby: typeof _GoRuby; +export var GoScreenFull: typeof _GoScreenFull; +export var GoScreenNormal: typeof _GoScreenNormal; +export var GoSearch: typeof _GoSearch; +export var GoServer: typeof _GoServer; +export var GoSettings: typeof _GoSettings; +export var GoSignIn: typeof _GoSignIn; +export var GoSignOut: typeof _GoSignOut; +export var GoSplit: typeof _GoSplit; +export var GoSquirrel: typeof _GoSquirrel; +export var GoStar: typeof _GoStar; +export var GoSteps: typeof _GoSteps; +export var GoStop: typeof _GoStop; +export var GoSync: typeof _GoSync; +export var GoTag: typeof _GoTag; +export var GoTelescope: typeof _GoTelescope; +export var GoTerminal: typeof _GoTerminal; +export var GoThreeBars: typeof _GoThreeBars; +export var GoTools: typeof _GoTools; +export var GoTrashcan: typeof _GoTrashcan; +export var GoTriangleDown: typeof _GoTriangleDown; +export var GoTriangleLeft: typeof _GoTriangleLeft; +export var GoTriangleRight: typeof _GoTriangleRight; +export var GoTriangleUp: typeof _GoTriangleUp; +export var GoUnfold: typeof _GoUnfold; +export var GoUnmute: typeof _GoUnmute; +export var GoVersions: typeof _GoVersions; +export var GoX: typeof _GoX; +export var GoZap: typeof _GoZap; \ No newline at end of file diff --git a/react-icons/go/info.d.ts b/react-icons/go/info.d.ts new file mode 100644 index 0000000000..64996130cf --- /dev/null +++ b/react-icons/go/info.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-closed.d.ts b/react-icons/go/issue-closed.d.ts new file mode 100644 index 0000000000..80f7dd2f7c --- /dev/null +++ b/react-icons/go/issue-closed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoIssueClosed extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-opened.d.ts b/react-icons/go/issue-opened.d.ts new file mode 100644 index 0000000000..1f0b7d1b01 --- /dev/null +++ b/react-icons/go/issue-opened.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoIssueOpened extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-reopened.d.ts b/react-icons/go/issue-reopened.d.ts new file mode 100644 index 0000000000..c724b3447b --- /dev/null +++ b/react-icons/go/issue-reopened.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoIssueReopened extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jersey.d.ts b/react-icons/go/jersey.d.ts new file mode 100644 index 0000000000..f2daefb8e3 --- /dev/null +++ b/react-icons/go/jersey.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoJersey extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-down.d.ts b/react-icons/go/jump-down.d.ts new file mode 100644 index 0000000000..75bdcf7e91 --- /dev/null +++ b/react-icons/go/jump-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoJumpDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-left.d.ts b/react-icons/go/jump-left.d.ts new file mode 100644 index 0000000000..1357710e07 --- /dev/null +++ b/react-icons/go/jump-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoJumpLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-right.d.ts b/react-icons/go/jump-right.d.ts new file mode 100644 index 0000000000..07b9c18fcd --- /dev/null +++ b/react-icons/go/jump-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoJumpRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-up.d.ts b/react-icons/go/jump-up.d.ts new file mode 100644 index 0000000000..2b9cdc939d --- /dev/null +++ b/react-icons/go/jump-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoJumpUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/key.d.ts b/react-icons/go/key.d.ts new file mode 100644 index 0000000000..59c06906c8 --- /dev/null +++ b/react-icons/go/key.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/keyboard.d.ts b/react-icons/go/keyboard.d.ts new file mode 100644 index 0000000000..661906ee7d --- /dev/null +++ b/react-icons/go/keyboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/law.d.ts b/react-icons/go/law.d.ts new file mode 100644 index 0000000000..2cffbfc93a --- /dev/null +++ b/react-icons/go/law.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/light-bulb.d.ts b/react-icons/go/light-bulb.d.ts new file mode 100644 index 0000000000..510edd36d4 --- /dev/null +++ b/react-icons/go/light-bulb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLightBulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/link-external.d.ts b/react-icons/go/link-external.d.ts new file mode 100644 index 0000000000..7b9a7ae2e9 --- /dev/null +++ b/react-icons/go/link-external.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLinkExternal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/link.d.ts b/react-icons/go/link.d.ts new file mode 100644 index 0000000000..0042a8b472 --- /dev/null +++ b/react-icons/go/link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/list-ordered.d.ts b/react-icons/go/list-ordered.d.ts new file mode 100644 index 0000000000..9f4c179d8e --- /dev/null +++ b/react-icons/go/list-ordered.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoListOrdered extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/list-unordered.d.ts b/react-icons/go/list-unordered.d.ts new file mode 100644 index 0000000000..97518ae8f5 --- /dev/null +++ b/react-icons/go/list-unordered.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoListUnordered extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/location.d.ts b/react-icons/go/location.d.ts new file mode 100644 index 0000000000..364c0c3b97 --- /dev/null +++ b/react-icons/go/location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/lock.d.ts b/react-icons/go/lock.d.ts new file mode 100644 index 0000000000..892b825a7f --- /dev/null +++ b/react-icons/go/lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/logo-github.d.ts b/react-icons/go/logo-github.d.ts new file mode 100644 index 0000000000..dd0db3759e --- /dev/null +++ b/react-icons/go/logo-github.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoLogoGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail-read.d.ts b/react-icons/go/mail-read.d.ts new file mode 100644 index 0000000000..752b16077c --- /dev/null +++ b/react-icons/go/mail-read.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMailRead extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail-reply.d.ts b/react-icons/go/mail-reply.d.ts new file mode 100644 index 0000000000..1dad821128 --- /dev/null +++ b/react-icons/go/mail-reply.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMailReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail.d.ts b/react-icons/go/mail.d.ts new file mode 100644 index 0000000000..54bb23cbab --- /dev/null +++ b/react-icons/go/mail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mark-github.d.ts b/react-icons/go/mark-github.d.ts new file mode 100644 index 0000000000..6baf32ff14 --- /dev/null +++ b/react-icons/go/mark-github.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMarkGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/markdown.d.ts b/react-icons/go/markdown.d.ts new file mode 100644 index 0000000000..bbe3db8c4a --- /dev/null +++ b/react-icons/go/markdown.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMarkdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/megaphone.d.ts b/react-icons/go/megaphone.d.ts new file mode 100644 index 0000000000..afb75c1c2a --- /dev/null +++ b/react-icons/go/megaphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMegaphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mention.d.ts b/react-icons/go/mention.d.ts new file mode 100644 index 0000000000..f8a61d7ec5 --- /dev/null +++ b/react-icons/go/mention.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMention extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/microscope.d.ts b/react-icons/go/microscope.d.ts new file mode 100644 index 0000000000..a5d21edb27 --- /dev/null +++ b/react-icons/go/microscope.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMicroscope extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/milestone.d.ts b/react-icons/go/milestone.d.ts new file mode 100644 index 0000000000..3a4da83497 --- /dev/null +++ b/react-icons/go/milestone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMilestone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mirror.d.ts b/react-icons/go/mirror.d.ts new file mode 100644 index 0000000000..441363fe1e --- /dev/null +++ b/react-icons/go/mirror.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMirror extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mortar-board.d.ts b/react-icons/go/mortar-board.d.ts new file mode 100644 index 0000000000..53922393e9 --- /dev/null +++ b/react-icons/go/mortar-board.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMortarBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-down.d.ts b/react-icons/go/move-down.d.ts new file mode 100644 index 0000000000..1c6ffd674f --- /dev/null +++ b/react-icons/go/move-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMoveDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-left.d.ts b/react-icons/go/move-left.d.ts new file mode 100644 index 0000000000..16c0597440 --- /dev/null +++ b/react-icons/go/move-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMoveLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-right.d.ts b/react-icons/go/move-right.d.ts new file mode 100644 index 0000000000..8902ab82d7 --- /dev/null +++ b/react-icons/go/move-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMoveRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-up.d.ts b/react-icons/go/move-up.d.ts new file mode 100644 index 0000000000..234c0b1ce0 --- /dev/null +++ b/react-icons/go/move-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMoveUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mute.d.ts b/react-icons/go/mute.d.ts new file mode 100644 index 0000000000..796749c1d0 --- /dev/null +++ b/react-icons/go/mute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/no-newline.d.ts b/react-icons/go/no-newline.d.ts new file mode 100644 index 0000000000..c80469ea8c --- /dev/null +++ b/react-icons/go/no-newline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoNoNewline extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/octoface.d.ts b/react-icons/go/octoface.d.ts new file mode 100644 index 0000000000..d568614cff --- /dev/null +++ b/react-icons/go/octoface.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoOctoface extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/organization.d.ts b/react-icons/go/organization.d.ts new file mode 100644 index 0000000000..908f01dfbc --- /dev/null +++ b/react-icons/go/organization.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoOrganization extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/package.d.ts b/react-icons/go/package.d.ts new file mode 100644 index 0000000000..4b8b3edab3 --- /dev/null +++ b/react-icons/go/package.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPackage extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/paintcan.d.ts b/react-icons/go/paintcan.d.ts new file mode 100644 index 0000000000..ad64f2208b --- /dev/null +++ b/react-icons/go/paintcan.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPaintcan extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pencil.d.ts b/react-icons/go/pencil.d.ts new file mode 100644 index 0000000000..cb69b1856e --- /dev/null +++ b/react-icons/go/pencil.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/person.d.ts b/react-icons/go/person.d.ts new file mode 100644 index 0000000000..58de6b2fef --- /dev/null +++ b/react-icons/go/person.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pin.d.ts b/react-icons/go/pin.d.ts new file mode 100644 index 0000000000..19ac4c65d1 --- /dev/null +++ b/react-icons/go/pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-fast-forward.d.ts b/react-icons/go/playback-fast-forward.d.ts new file mode 100644 index 0000000000..499c29c52a --- /dev/null +++ b/react-icons/go/playback-fast-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlaybackFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-pause.d.ts b/react-icons/go/playback-pause.d.ts new file mode 100644 index 0000000000..b169dbdba1 --- /dev/null +++ b/react-icons/go/playback-pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlaybackPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-play.d.ts b/react-icons/go/playback-play.d.ts new file mode 100644 index 0000000000..068a3afbe3 --- /dev/null +++ b/react-icons/go/playback-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlaybackPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-rewind.d.ts b/react-icons/go/playback-rewind.d.ts new file mode 100644 index 0000000000..1e799a4c9b --- /dev/null +++ b/react-icons/go/playback-rewind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlaybackRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/plug.d.ts b/react-icons/go/plug.d.ts new file mode 100644 index 0000000000..3d159a3b7c --- /dev/null +++ b/react-icons/go/plug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/plus.d.ts b/react-icons/go/plus.d.ts new file mode 100644 index 0000000000..9a4ec51d53 --- /dev/null +++ b/react-icons/go/plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/podium.d.ts b/react-icons/go/podium.d.ts new file mode 100644 index 0000000000..e9658fb6a6 --- /dev/null +++ b/react-icons/go/podium.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPodium extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/primitive-dot.d.ts b/react-icons/go/primitive-dot.d.ts new file mode 100644 index 0000000000..35df7f982d --- /dev/null +++ b/react-icons/go/primitive-dot.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPrimitiveDot extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/primitive-square.d.ts b/react-icons/go/primitive-square.d.ts new file mode 100644 index 0000000000..1950723171 --- /dev/null +++ b/react-icons/go/primitive-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPrimitiveSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pulse.d.ts b/react-icons/go/pulse.d.ts new file mode 100644 index 0000000000..c0504a243b --- /dev/null +++ b/react-icons/go/pulse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPulse extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/puzzle.d.ts b/react-icons/go/puzzle.d.ts new file mode 100644 index 0000000000..c880f0cd54 --- /dev/null +++ b/react-icons/go/puzzle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoPuzzle extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/question.d.ts b/react-icons/go/question.d.ts new file mode 100644 index 0000000000..5457ec638b --- /dev/null +++ b/react-icons/go/question.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoQuestion extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/quote.d.ts b/react-icons/go/quote.d.ts new file mode 100644 index 0000000000..1d15a8df93 --- /dev/null +++ b/react-icons/go/quote.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/radio-tower.d.ts b/react-icons/go/radio-tower.d.ts new file mode 100644 index 0000000000..46a1a6155e --- /dev/null +++ b/react-icons/go/radio-tower.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRadioTower extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-clone.d.ts b/react-icons/go/repo-clone.d.ts new file mode 100644 index 0000000000..dc9bfafa35 --- /dev/null +++ b/react-icons/go/repo-clone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepoClone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-force-push.d.ts b/react-icons/go/repo-force-push.d.ts new file mode 100644 index 0000000000..29f11743a9 --- /dev/null +++ b/react-icons/go/repo-force-push.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepoForcePush extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-forked.d.ts b/react-icons/go/repo-forked.d.ts new file mode 100644 index 0000000000..5c0b370827 --- /dev/null +++ b/react-icons/go/repo-forked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepoForked extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-pull.d.ts b/react-icons/go/repo-pull.d.ts new file mode 100644 index 0000000000..733a3365a0 --- /dev/null +++ b/react-icons/go/repo-pull.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepoPull extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-push.d.ts b/react-icons/go/repo-push.d.ts new file mode 100644 index 0000000000..446a9b91e4 --- /dev/null +++ b/react-icons/go/repo-push.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepoPush extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo.d.ts b/react-icons/go/repo.d.ts new file mode 100644 index 0000000000..fd5f76ede7 --- /dev/null +++ b/react-icons/go/repo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRepo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/rocket.d.ts b/react-icons/go/rocket.d.ts new file mode 100644 index 0000000000..f37282178e --- /dev/null +++ b/react-icons/go/rocket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/rss.d.ts b/react-icons/go/rss.d.ts new file mode 100644 index 0000000000..a5fdf86c69 --- /dev/null +++ b/react-icons/go/rss.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/ruby.d.ts b/react-icons/go/ruby.d.ts new file mode 100644 index 0000000000..23237942f1 --- /dev/null +++ b/react-icons/go/ruby.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoRuby extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/screen-full.d.ts b/react-icons/go/screen-full.d.ts new file mode 100644 index 0000000000..b204307751 --- /dev/null +++ b/react-icons/go/screen-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoScreenFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/screen-normal.d.ts b/react-icons/go/screen-normal.d.ts new file mode 100644 index 0000000000..d6425302a7 --- /dev/null +++ b/react-icons/go/screen-normal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoScreenNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/search.d.ts b/react-icons/go/search.d.ts new file mode 100644 index 0000000000..8bdc1606d0 --- /dev/null +++ b/react-icons/go/search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/server.d.ts b/react-icons/go/server.d.ts new file mode 100644 index 0000000000..289aeb6736 --- /dev/null +++ b/react-icons/go/server.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoServer extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/settings.d.ts b/react-icons/go/settings.d.ts new file mode 100644 index 0000000000..cd5e2b9c6f --- /dev/null +++ b/react-icons/go/settings.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sign-in.d.ts b/react-icons/go/sign-in.d.ts new file mode 100644 index 0000000000..625403d73c --- /dev/null +++ b/react-icons/go/sign-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSignIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sign-out.d.ts b/react-icons/go/sign-out.d.ts new file mode 100644 index 0000000000..bcb90cf9b9 --- /dev/null +++ b/react-icons/go/sign-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSignOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/split.d.ts b/react-icons/go/split.d.ts new file mode 100644 index 0000000000..ee2ce21671 --- /dev/null +++ b/react-icons/go/split.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSplit extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/squirrel.d.ts b/react-icons/go/squirrel.d.ts new file mode 100644 index 0000000000..5c8e89a2e6 --- /dev/null +++ b/react-icons/go/squirrel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSquirrel extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/star.d.ts b/react-icons/go/star.d.ts new file mode 100644 index 0000000000..534b1c89d7 --- /dev/null +++ b/react-icons/go/star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/steps.d.ts b/react-icons/go/steps.d.ts new file mode 100644 index 0000000000..b10dd6ff8c --- /dev/null +++ b/react-icons/go/steps.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSteps extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/stop.d.ts b/react-icons/go/stop.d.ts new file mode 100644 index 0000000000..7aa216371b --- /dev/null +++ b/react-icons/go/stop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sync.d.ts b/react-icons/go/sync.d.ts new file mode 100644 index 0000000000..dd3929203b --- /dev/null +++ b/react-icons/go/sync.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/tag.d.ts b/react-icons/go/tag.d.ts new file mode 100644 index 0000000000..7c052129fb --- /dev/null +++ b/react-icons/go/tag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/telescope.d.ts b/react-icons/go/telescope.d.ts new file mode 100644 index 0000000000..feac7a05c8 --- /dev/null +++ b/react-icons/go/telescope.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTelescope extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/terminal.d.ts b/react-icons/go/terminal.d.ts new file mode 100644 index 0000000000..3cd1379b1e --- /dev/null +++ b/react-icons/go/terminal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTerminal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/three-bars.d.ts b/react-icons/go/three-bars.d.ts new file mode 100644 index 0000000000..7ef14ccc55 --- /dev/null +++ b/react-icons/go/three-bars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoThreeBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/tools.d.ts b/react-icons/go/tools.d.ts new file mode 100644 index 0000000000..288bd5601e --- /dev/null +++ b/react-icons/go/tools.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTools extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/trashcan.d.ts b/react-icons/go/trashcan.d.ts new file mode 100644 index 0000000000..a1a1911db4 --- /dev/null +++ b/react-icons/go/trashcan.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTrashcan extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-down.d.ts b/react-icons/go/triangle-down.d.ts new file mode 100644 index 0000000000..a3b1ce34f7 --- /dev/null +++ b/react-icons/go/triangle-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTriangleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-left.d.ts b/react-icons/go/triangle-left.d.ts new file mode 100644 index 0000000000..adac6298cd --- /dev/null +++ b/react-icons/go/triangle-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTriangleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-right.d.ts b/react-icons/go/triangle-right.d.ts new file mode 100644 index 0000000000..b910ce3d25 --- /dev/null +++ b/react-icons/go/triangle-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTriangleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-up.d.ts b/react-icons/go/triangle-up.d.ts new file mode 100644 index 0000000000..a108802217 --- /dev/null +++ b/react-icons/go/triangle-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoTriangleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/unfold.d.ts b/react-icons/go/unfold.d.ts new file mode 100644 index 0000000000..60d0118c0b --- /dev/null +++ b/react-icons/go/unfold.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoUnfold extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/unmute.d.ts b/react-icons/go/unmute.d.ts new file mode 100644 index 0000000000..bdfc514140 --- /dev/null +++ b/react-icons/go/unmute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoUnmute extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/versions.d.ts b/react-icons/go/versions.d.ts new file mode 100644 index 0000000000..6b0b7d1459 --- /dev/null +++ b/react-icons/go/versions.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoVersions extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/x.d.ts b/react-icons/go/x.d.ts new file mode 100644 index 0000000000..4ffdd863c4 --- /dev/null +++ b/react-icons/go/x.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoX extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/zap.d.ts b/react-icons/go/zap.d.ts new file mode 100644 index 0000000000..3e0f7c9bfa --- /dev/null +++ b/react-icons/go/zap.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class GoZap extends React.Component { } \ No newline at end of file diff --git a/react-icons/index.d.ts b/react-icons/index.d.ts new file mode 100644 index 0000000000..1225532e1c --- /dev/null +++ b/react-icons/index.d.ts @@ -0,0 +1,4 @@ +// Type definitions for react-icons 2.2 +// Project: https://github.com/gorangajic/react-icons#readme +// Definitions by: Alexandre Paré +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped \ No newline at end of file diff --git a/react-icons/io/alert-circled.d.ts b/react-icons/io/alert-circled.d.ts new file mode 100644 index 0000000000..a43b5ae635 --- /dev/null +++ b/react-icons/io/alert-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAlertCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/alert.d.ts b/react-icons/io/alert.d.ts new file mode 100644 index 0000000000..82c0652d87 --- /dev/null +++ b/react-icons/io/alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-add-circle.d.ts b/react-icons/io/android-add-circle.d.ts new file mode 100644 index 0000000000..1ef9872cf2 --- /dev/null +++ b/react-icons/io/android-add-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidAddCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-add.d.ts b/react-icons/io/android-add.d.ts new file mode 100644 index 0000000000..181c704029 --- /dev/null +++ b/react-icons/io/android-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-alarm-clock.d.ts b/react-icons/io/android-alarm-clock.d.ts new file mode 100644 index 0000000000..14f1cf8764 --- /dev/null +++ b/react-icons/io/android-alarm-clock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidAlarmClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-alert.d.ts b/react-icons/io/android-alert.d.ts new file mode 100644 index 0000000000..92d7c9ce54 --- /dev/null +++ b/react-icons/io/android-alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-apps.d.ts b/react-icons/io/android-apps.d.ts new file mode 100644 index 0000000000..c1807a5c1d --- /dev/null +++ b/react-icons/io/android-apps.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidApps extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-archive.d.ts b/react-icons/io/android-archive.d.ts new file mode 100644 index 0000000000..a635c490e7 --- /dev/null +++ b/react-icons/io/android-archive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-back.d.ts b/react-icons/io/android-arrow-back.d.ts new file mode 100644 index 0000000000..5b2cc0dd3a --- /dev/null +++ b/react-icons/io/android-arrow-back.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-down.d.ts b/react-icons/io/android-arrow-down.d.ts new file mode 100644 index 0000000000..7b5381555b --- /dev/null +++ b/react-icons/io/android-arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropdown-circle.d.ts b/react-icons/io/android-arrow-dropdown-circle.d.ts new file mode 100644 index 0000000000..b61e6a6742 --- /dev/null +++ b/react-icons/io/android-arrow-dropdown-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropdownCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropdown.d.ts b/react-icons/io/android-arrow-dropdown.d.ts new file mode 100644 index 0000000000..b044d78ee6 --- /dev/null +++ b/react-icons/io/android-arrow-dropdown.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropleft-circle.d.ts b/react-icons/io/android-arrow-dropleft-circle.d.ts new file mode 100644 index 0000000000..5bdfb3d037 --- /dev/null +++ b/react-icons/io/android-arrow-dropleft-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropleftCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropleft.d.ts b/react-icons/io/android-arrow-dropleft.d.ts new file mode 100644 index 0000000000..21916fd2e7 --- /dev/null +++ b/react-icons/io/android-arrow-dropleft.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropleft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropright-circle.d.ts b/react-icons/io/android-arrow-dropright-circle.d.ts new file mode 100644 index 0000000000..520d74fcf2 --- /dev/null +++ b/react-icons/io/android-arrow-dropright-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDroprightCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropright.d.ts b/react-icons/io/android-arrow-dropright.d.ts new file mode 100644 index 0000000000..e1a0afa684 --- /dev/null +++ b/react-icons/io/android-arrow-dropright.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropright extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropup-circle.d.ts b/react-icons/io/android-arrow-dropup-circle.d.ts new file mode 100644 index 0000000000..cede04b720 --- /dev/null +++ b/react-icons/io/android-arrow-dropup-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropupCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropup.d.ts b/react-icons/io/android-arrow-dropup.d.ts new file mode 100644 index 0000000000..2eaa26691b --- /dev/null +++ b/react-icons/io/android-arrow-dropup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowDropup extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-forward.d.ts b/react-icons/io/android-arrow-forward.d.ts new file mode 100644 index 0000000000..5a0f09249c --- /dev/null +++ b/react-icons/io/android-arrow-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-up.d.ts b/react-icons/io/android-arrow-up.d.ts new file mode 100644 index 0000000000..fe22447527 --- /dev/null +++ b/react-icons/io/android-arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-attach.d.ts b/react-icons/io/android-attach.d.ts new file mode 100644 index 0000000000..0ebda55093 --- /dev/null +++ b/react-icons/io/android-attach.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidAttach extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bar.d.ts b/react-icons/io/android-bar.d.ts new file mode 100644 index 0000000000..4c35002f1d --- /dev/null +++ b/react-icons/io/android-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bicycle.d.ts b/react-icons/io/android-bicycle.d.ts new file mode 100644 index 0000000000..04992767c6 --- /dev/null +++ b/react-icons/io/android-bicycle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBicycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-boat.d.ts b/react-icons/io/android-boat.d.ts new file mode 100644 index 0000000000..8764bc69af --- /dev/null +++ b/react-icons/io/android-boat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bookmark.d.ts b/react-icons/io/android-bookmark.d.ts new file mode 100644 index 0000000000..21dfd2a67d --- /dev/null +++ b/react-icons/io/android-bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bulb.d.ts b/react-icons/io/android-bulb.d.ts new file mode 100644 index 0000000000..b907535d4f --- /dev/null +++ b/react-icons/io/android-bulb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bus.d.ts b/react-icons/io/android-bus.d.ts new file mode 100644 index 0000000000..2185efdf4e --- /dev/null +++ b/react-icons/io/android-bus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-calendar.d.ts b/react-icons/io/android-calendar.d.ts new file mode 100644 index 0000000000..892a8bb304 --- /dev/null +++ b/react-icons/io/android-calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-call.d.ts b/react-icons/io/android-call.d.ts new file mode 100644 index 0000000000..2c4f272d58 --- /dev/null +++ b/react-icons/io/android-call.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-camera.d.ts b/react-icons/io/android-camera.d.ts new file mode 100644 index 0000000000..b071f21e26 --- /dev/null +++ b/react-icons/io/android-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cancel.d.ts b/react-icons/io/android-cancel.d.ts new file mode 100644 index 0000000000..f0897dae5d --- /dev/null +++ b/react-icons/io/android-cancel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-car.d.ts b/react-icons/io/android-car.d.ts new file mode 100644 index 0000000000..3d8517f830 --- /dev/null +++ b/react-icons/io/android-car.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cart.d.ts b/react-icons/io/android-cart.d.ts new file mode 100644 index 0000000000..53aa5b73e2 --- /dev/null +++ b/react-icons/io/android-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-chat.d.ts b/react-icons/io/android-chat.d.ts new file mode 100644 index 0000000000..a8153e8535 --- /dev/null +++ b/react-icons/io/android-chat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-blank.d.ts b/react-icons/io/android-checkbox-blank.d.ts new file mode 100644 index 0000000000..cc0c092564 --- /dev/null +++ b/react-icons/io/android-checkbox-blank.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCheckboxBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-outline-blank.d.ts b/react-icons/io/android-checkbox-outline-blank.d.ts new file mode 100644 index 0000000000..9dd2f75e2e --- /dev/null +++ b/react-icons/io/android-checkbox-outline-blank.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCheckboxOutlineBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-outline.d.ts b/react-icons/io/android-checkbox-outline.d.ts new file mode 100644 index 0000000000..efe703d1c0 --- /dev/null +++ b/react-icons/io/android-checkbox-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCheckboxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox.d.ts b/react-icons/io/android-checkbox.d.ts new file mode 100644 index 0000000000..ee8667f980 --- /dev/null +++ b/react-icons/io/android-checkbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCheckbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkmark-circle.d.ts b/react-icons/io/android-checkmark-circle.d.ts new file mode 100644 index 0000000000..0d159b7f6b --- /dev/null +++ b/react-icons/io/android-checkmark-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCheckmarkCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-clipboard.d.ts b/react-icons/io/android-clipboard.d.ts new file mode 100644 index 0000000000..a953fd87df --- /dev/null +++ b/react-icons/io/android-clipboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-close.d.ts b/react-icons/io/android-close.d.ts new file mode 100644 index 0000000000..eb3cbd0f79 --- /dev/null +++ b/react-icons/io/android-close.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-circle.d.ts b/react-icons/io/android-cloud-circle.d.ts new file mode 100644 index 0000000000..72dd9b9e5b --- /dev/null +++ b/react-icons/io/android-cloud-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCloudCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-done.d.ts b/react-icons/io/android-cloud-done.d.ts new file mode 100644 index 0000000000..0de54d7f34 --- /dev/null +++ b/react-icons/io/android-cloud-done.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCloudDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-outline.d.ts b/react-icons/io/android-cloud-outline.d.ts new file mode 100644 index 0000000000..5246b56474 --- /dev/null +++ b/react-icons/io/android-cloud-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCloudOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud.d.ts b/react-icons/io/android-cloud.d.ts new file mode 100644 index 0000000000..e25bb1be8c --- /dev/null +++ b/react-icons/io/android-cloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-color-palette.d.ts b/react-icons/io/android-color-palette.d.ts new file mode 100644 index 0000000000..eb53e983db --- /dev/null +++ b/react-icons/io/android-color-palette.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidColorPalette extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-compass.d.ts b/react-icons/io/android-compass.d.ts new file mode 100644 index 0000000000..b5fa5b0618 --- /dev/null +++ b/react-icons/io/android-compass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contact.d.ts b/react-icons/io/android-contact.d.ts new file mode 100644 index 0000000000..a2176659a5 --- /dev/null +++ b/react-icons/io/android-contact.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidContact extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contacts.d.ts b/react-icons/io/android-contacts.d.ts new file mode 100644 index 0000000000..b998747e17 --- /dev/null +++ b/react-icons/io/android-contacts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contract.d.ts b/react-icons/io/android-contract.d.ts new file mode 100644 index 0000000000..f607d8d7ee --- /dev/null +++ b/react-icons/io/android-contract.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidContract extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-create.d.ts b/react-icons/io/android-create.d.ts new file mode 100644 index 0000000000..e15c015aa0 --- /dev/null +++ b/react-icons/io/android-create.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidCreate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-delete.d.ts b/react-icons/io/android-delete.d.ts new file mode 100644 index 0000000000..2a9520991f --- /dev/null +++ b/react-icons/io/android-delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-desktop.d.ts b/react-icons/io/android-desktop.d.ts new file mode 100644 index 0000000000..1fef239b28 --- /dev/null +++ b/react-icons/io/android-desktop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-document.d.ts b/react-icons/io/android-document.d.ts new file mode 100644 index 0000000000..9b6de410c4 --- /dev/null +++ b/react-icons/io/android-document.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-done-all.d.ts b/react-icons/io/android-done-all.d.ts new file mode 100644 index 0000000000..f376b7216a --- /dev/null +++ b/react-icons/io/android-done-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDoneAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-done.d.ts b/react-icons/io/android-done.d.ts new file mode 100644 index 0000000000..32e2071533 --- /dev/null +++ b/react-icons/io/android-done.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-download.d.ts b/react-icons/io/android-download.d.ts new file mode 100644 index 0000000000..8ed919e782 --- /dev/null +++ b/react-icons/io/android-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-drafts.d.ts b/react-icons/io/android-drafts.d.ts new file mode 100644 index 0000000000..3616f37d29 --- /dev/null +++ b/react-icons/io/android-drafts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidDrafts extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-exit.d.ts b/react-icons/io/android-exit.d.ts new file mode 100644 index 0000000000..b608f070d4 --- /dev/null +++ b/react-icons/io/android-exit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidExit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-expand.d.ts b/react-icons/io/android-expand.d.ts new file mode 100644 index 0000000000..590a351623 --- /dev/null +++ b/react-icons/io/android-expand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-favorite-outline.d.ts b/react-icons/io/android-favorite-outline.d.ts new file mode 100644 index 0000000000..0d70d0d05f --- /dev/null +++ b/react-icons/io/android-favorite-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFavoriteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-favorite.d.ts b/react-icons/io/android-favorite.d.ts new file mode 100644 index 0000000000..3734d0d383 --- /dev/null +++ b/react-icons/io/android-favorite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFavorite extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-film.d.ts b/react-icons/io/android-film.d.ts new file mode 100644 index 0000000000..cc9fc259f0 --- /dev/null +++ b/react-icons/io/android-film.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-folder-open.d.ts b/react-icons/io/android-folder-open.d.ts new file mode 100644 index 0000000000..dc7ac8fb0f --- /dev/null +++ b/react-icons/io/android-folder-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-folder.d.ts b/react-icons/io/android-folder.d.ts new file mode 100644 index 0000000000..fa2435a9fb --- /dev/null +++ b/react-icons/io/android-folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-funnel.d.ts b/react-icons/io/android-funnel.d.ts new file mode 100644 index 0000000000..6a65c30125 --- /dev/null +++ b/react-icons/io/android-funnel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidFunnel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-globe.d.ts b/react-icons/io/android-globe.d.ts new file mode 100644 index 0000000000..04f3dc1853 --- /dev/null +++ b/react-icons/io/android-globe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-hand.d.ts b/react-icons/io/android-hand.d.ts new file mode 100644 index 0000000000..310d56716f --- /dev/null +++ b/react-icons/io/android-hand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidHand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-hangout.d.ts b/react-icons/io/android-hangout.d.ts new file mode 100644 index 0000000000..2de7eaa886 --- /dev/null +++ b/react-icons/io/android-hangout.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidHangout extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-happy.d.ts b/react-icons/io/android-happy.d.ts new file mode 100644 index 0000000000..e7565a0962 --- /dev/null +++ b/react-icons/io/android-happy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidHappy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-home.d.ts b/react-icons/io/android-home.d.ts new file mode 100644 index 0000000000..d6ff3a72f6 --- /dev/null +++ b/react-icons/io/android-home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-image.d.ts b/react-icons/io/android-image.d.ts new file mode 100644 index 0000000000..234a34200f --- /dev/null +++ b/react-icons/io/android-image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-laptop.d.ts b/react-icons/io/android-laptop.d.ts new file mode 100644 index 0000000000..8f3a514189 --- /dev/null +++ b/react-icons/io/android-laptop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-list.d.ts b/react-icons/io/android-list.d.ts new file mode 100644 index 0000000000..4eaecd910c --- /dev/null +++ b/react-icons/io/android-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidList extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-locate.d.ts b/react-icons/io/android-locate.d.ts new file mode 100644 index 0000000000..3266555433 --- /dev/null +++ b/react-icons/io/android-locate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidLocate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-lock.d.ts b/react-icons/io/android-lock.d.ts new file mode 100644 index 0000000000..d73bb76011 --- /dev/null +++ b/react-icons/io/android-lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-mail.d.ts b/react-icons/io/android-mail.d.ts new file mode 100644 index 0000000000..a460d9347d --- /dev/null +++ b/react-icons/io/android-mail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-map.d.ts b/react-icons/io/android-map.d.ts new file mode 100644 index 0000000000..bd05edba2e --- /dev/null +++ b/react-icons/io/android-map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-menu.d.ts b/react-icons/io/android-menu.d.ts new file mode 100644 index 0000000000..d7362c3142 --- /dev/null +++ b/react-icons/io/android-menu.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-microphone-off.d.ts b/react-icons/io/android-microphone-off.d.ts new file mode 100644 index 0000000000..4b2307dc68 --- /dev/null +++ b/react-icons/io/android-microphone-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMicrophoneOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-microphone.d.ts b/react-icons/io/android-microphone.d.ts new file mode 100644 index 0000000000..3596331d65 --- /dev/null +++ b/react-icons/io/android-microphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-more-horizontal.d.ts b/react-icons/io/android-more-horizontal.d.ts new file mode 100644 index 0000000000..34ecb26ae4 --- /dev/null +++ b/react-icons/io/android-more-horizontal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMoreHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-more-vertical.d.ts b/react-icons/io/android-more-vertical.d.ts new file mode 100644 index 0000000000..c67fd53e56 --- /dev/null +++ b/react-icons/io/android-more-vertical.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidMoreVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-navigate.d.ts b/react-icons/io/android-navigate.d.ts new file mode 100644 index 0000000000..075f8caa05 --- /dev/null +++ b/react-icons/io/android-navigate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications-none.d.ts b/react-icons/io/android-notifications-none.d.ts new file mode 100644 index 0000000000..f92977a171 --- /dev/null +++ b/react-icons/io/android-notifications-none.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidNotificationsNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications-off.d.ts b/react-icons/io/android-notifications-off.d.ts new file mode 100644 index 0000000000..9152b8b8c6 --- /dev/null +++ b/react-icons/io/android-notifications-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidNotificationsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications.d.ts b/react-icons/io/android-notifications.d.ts new file mode 100644 index 0000000000..397d38bce8 --- /dev/null +++ b/react-icons/io/android-notifications.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidNotifications extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-open.d.ts b/react-icons/io/android-open.d.ts new file mode 100644 index 0000000000..e11840cf8b --- /dev/null +++ b/react-icons/io/android-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-options.d.ts b/react-icons/io/android-options.d.ts new file mode 100644 index 0000000000..a3970fbf30 --- /dev/null +++ b/react-icons/io/android-options.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidOptions extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-people.d.ts b/react-icons/io/android-people.d.ts new file mode 100644 index 0000000000..55042c3d62 --- /dev/null +++ b/react-icons/io/android-people.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-person-add.d.ts b/react-icons/io/android-person-add.d.ts new file mode 100644 index 0000000000..b012eb35a4 --- /dev/null +++ b/react-icons/io/android-person-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-person.d.ts b/react-icons/io/android-person.d.ts new file mode 100644 index 0000000000..38a6ff034e --- /dev/null +++ b/react-icons/io/android-person.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-phone-landscape.d.ts b/react-icons/io/android-phone-landscape.d.ts new file mode 100644 index 0000000000..98fb905b92 --- /dev/null +++ b/react-icons/io/android-phone-landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPhoneLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-phone-portrait.d.ts b/react-icons/io/android-phone-portrait.d.ts new file mode 100644 index 0000000000..19d594e5cc --- /dev/null +++ b/react-icons/io/android-phone-portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPhonePortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-pin.d.ts b/react-icons/io/android-pin.d.ts new file mode 100644 index 0000000000..847d1aa932 --- /dev/null +++ b/react-icons/io/android-pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-plane.d.ts b/react-icons/io/android-plane.d.ts new file mode 100644 index 0000000000..73523e363f --- /dev/null +++ b/react-icons/io/android-plane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-playstore.d.ts b/react-icons/io/android-playstore.d.ts new file mode 100644 index 0000000000..5d4bed6904 --- /dev/null +++ b/react-icons/io/android-playstore.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPlaystore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-print.d.ts b/react-icons/io/android-print.d.ts new file mode 100644 index 0000000000..b898bcd5d7 --- /dev/null +++ b/react-icons/io/android-print.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-radio-button-off.d.ts b/react-icons/io/android-radio-button-off.d.ts new file mode 100644 index 0000000000..d26ae44fba --- /dev/null +++ b/react-icons/io/android-radio-button-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRadioButtonOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-radio-button-on.d.ts b/react-icons/io/android-radio-button-on.d.ts new file mode 100644 index 0000000000..a590507c7f --- /dev/null +++ b/react-icons/io/android-radio-button-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRadioButtonOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-refresh.d.ts b/react-icons/io/android-refresh.d.ts new file mode 100644 index 0000000000..6496993708 --- /dev/null +++ b/react-icons/io/android-refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-remove-circle.d.ts b/react-icons/io/android-remove-circle.d.ts new file mode 100644 index 0000000000..13753addf6 --- /dev/null +++ b/react-icons/io/android-remove-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRemoveCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-remove.d.ts b/react-icons/io/android-remove.d.ts new file mode 100644 index 0000000000..757d7d4069 --- /dev/null +++ b/react-icons/io/android-remove.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-restaurant.d.ts b/react-icons/io/android-restaurant.d.ts new file mode 100644 index 0000000000..402f3dcbe9 --- /dev/null +++ b/react-icons/io/android-restaurant.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sad.d.ts b/react-icons/io/android-sad.d.ts new file mode 100644 index 0000000000..e15bdd3ee5 --- /dev/null +++ b/react-icons/io/android-sad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-search.d.ts b/react-icons/io/android-search.d.ts new file mode 100644 index 0000000000..f83770a888 --- /dev/null +++ b/react-icons/io/android-search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-send.d.ts b/react-icons/io/android-send.d.ts new file mode 100644 index 0000000000..2594494bce --- /dev/null +++ b/react-icons/io/android-send.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSend extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-settings.d.ts b/react-icons/io/android-settings.d.ts new file mode 100644 index 0000000000..67b1287744 --- /dev/null +++ b/react-icons/io/android-settings.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-share-alt.d.ts b/react-icons/io/android-share-alt.d.ts new file mode 100644 index 0000000000..6ca634ea27 --- /dev/null +++ b/react-icons/io/android-share-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidShareAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-share.d.ts b/react-icons/io/android-share.d.ts new file mode 100644 index 0000000000..1624115637 --- /dev/null +++ b/react-icons/io/android-share.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star-half.d.ts b/react-icons/io/android-star-half.d.ts new file mode 100644 index 0000000000..8eaa9b49c3 --- /dev/null +++ b/react-icons/io/android-star-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star-outline.d.ts b/react-icons/io/android-star-outline.d.ts new file mode 100644 index 0000000000..82cf2dfd07 --- /dev/null +++ b/react-icons/io/android-star-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star.d.ts b/react-icons/io/android-star.d.ts new file mode 100644 index 0000000000..6ce5994948 --- /dev/null +++ b/react-icons/io/android-star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-stopwatch.d.ts b/react-icons/io/android-stopwatch.d.ts new file mode 100644 index 0000000000..c78609cbec --- /dev/null +++ b/react-icons/io/android-stopwatch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-subway.d.ts b/react-icons/io/android-subway.d.ts new file mode 100644 index 0000000000..927100e826 --- /dev/null +++ b/react-icons/io/android-subway.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sunny.d.ts b/react-icons/io/android-sunny.d.ts new file mode 100644 index 0000000000..c1baf81f2b --- /dev/null +++ b/react-icons/io/android-sunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sync.d.ts b/react-icons/io/android-sync.d.ts new file mode 100644 index 0000000000..9f39b3ca1a --- /dev/null +++ b/react-icons/io/android-sync.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-textsms.d.ts b/react-icons/io/android-textsms.d.ts new file mode 100644 index 0000000000..aef70c3543 --- /dev/null +++ b/react-icons/io/android-textsms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidTextsms extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-time.d.ts b/react-icons/io/android-time.d.ts new file mode 100644 index 0000000000..0e75b302ca --- /dev/null +++ b/react-icons/io/android-time.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-train.d.ts b/react-icons/io/android-train.d.ts new file mode 100644 index 0000000000..6df033c7ab --- /dev/null +++ b/react-icons/io/android-train.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-unlock.d.ts b/react-icons/io/android-unlock.d.ts new file mode 100644 index 0000000000..5ca174216d --- /dev/null +++ b/react-icons/io/android-unlock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidUnlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-upload.d.ts b/react-icons/io/android-upload.d.ts new file mode 100644 index 0000000000..a44eb717d2 --- /dev/null +++ b/react-icons/io/android-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-down.d.ts b/react-icons/io/android-volume-down.d.ts new file mode 100644 index 0000000000..61ddda0408 --- /dev/null +++ b/react-icons/io/android-volume-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-mute.d.ts b/react-icons/io/android-volume-mute.d.ts new file mode 100644 index 0000000000..3904911d77 --- /dev/null +++ b/react-icons/io/android-volume-mute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-off.d.ts b/react-icons/io/android-volume-off.d.ts new file mode 100644 index 0000000000..b35887e8f2 --- /dev/null +++ b/react-icons/io/android-volume-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-up.d.ts b/react-icons/io/android-volume-up.d.ts new file mode 100644 index 0000000000..2b33721165 --- /dev/null +++ b/react-icons/io/android-volume-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-walk.d.ts b/react-icons/io/android-walk.d.ts new file mode 100644 index 0000000000..4044521602 --- /dev/null +++ b/react-icons/io/android-walk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidWalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-warning.d.ts b/react-icons/io/android-warning.d.ts new file mode 100644 index 0000000000..6eb55c23b8 --- /dev/null +++ b/react-icons/io/android-warning.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-watch.d.ts b/react-icons/io/android-watch.d.ts new file mode 100644 index 0000000000..5808d17040 --- /dev/null +++ b/react-icons/io/android-watch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-wifi.d.ts b/react-icons/io/android-wifi.d.ts new file mode 100644 index 0000000000..fb9e7f68ff --- /dev/null +++ b/react-icons/io/android-wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAndroidWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/aperture.d.ts b/react-icons/io/aperture.d.ts new file mode 100644 index 0000000000..0f6757e511 --- /dev/null +++ b/react-icons/io/aperture.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAperture extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/archive.d.ts b/react-icons/io/archive.d.ts new file mode 100644 index 0000000000..8e43c86ef0 --- /dev/null +++ b/react-icons/io/archive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-a.d.ts b/react-icons/io/arrow-down-a.d.ts new file mode 100644 index 0000000000..e129600672 --- /dev/null +++ b/react-icons/io/arrow-down-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowDownA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-b.d.ts b/react-icons/io/arrow-down-b.d.ts new file mode 100644 index 0000000000..2b1c4641fb --- /dev/null +++ b/react-icons/io/arrow-down-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowDownB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-c.d.ts b/react-icons/io/arrow-down-c.d.ts new file mode 100644 index 0000000000..12b128d44f --- /dev/null +++ b/react-icons/io/arrow-down-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowDownC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-expand.d.ts b/react-icons/io/arrow-expand.d.ts new file mode 100644 index 0000000000..39a0ed20f8 --- /dev/null +++ b/react-icons/io/arrow-expand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-down-left.d.ts b/react-icons/io/arrow-graph-down-left.d.ts new file mode 100644 index 0000000000..8c7cf60e6a --- /dev/null +++ b/react-icons/io/arrow-graph-down-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowGraphDownLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-down-right.d.ts b/react-icons/io/arrow-graph-down-right.d.ts new file mode 100644 index 0000000000..00fa9e4c80 --- /dev/null +++ b/react-icons/io/arrow-graph-down-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowGraphDownRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-up-left.d.ts b/react-icons/io/arrow-graph-up-left.d.ts new file mode 100644 index 0000000000..a647eaa771 --- /dev/null +++ b/react-icons/io/arrow-graph-up-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowGraphUpLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-up-right.d.ts b/react-icons/io/arrow-graph-up-right.d.ts new file mode 100644 index 0000000000..9ef13b190a --- /dev/null +++ b/react-icons/io/arrow-graph-up-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowGraphUpRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-a.d.ts b/react-icons/io/arrow-left-a.d.ts new file mode 100644 index 0000000000..9855db5540 --- /dev/null +++ b/react-icons/io/arrow-left-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowLeftA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-b.d.ts b/react-icons/io/arrow-left-b.d.ts new file mode 100644 index 0000000000..db42f717f7 --- /dev/null +++ b/react-icons/io/arrow-left-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowLeftB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-c.d.ts b/react-icons/io/arrow-left-c.d.ts new file mode 100644 index 0000000000..d1d7a3b816 --- /dev/null +++ b/react-icons/io/arrow-left-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowLeftC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-move.d.ts b/react-icons/io/arrow-move.d.ts new file mode 100644 index 0000000000..1f01191993 --- /dev/null +++ b/react-icons/io/arrow-move.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowMove extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-resize.d.ts b/react-icons/io/arrow-resize.d.ts new file mode 100644 index 0000000000..5978c04079 --- /dev/null +++ b/react-icons/io/arrow-resize.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowResize extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-return-left.d.ts b/react-icons/io/arrow-return-left.d.ts new file mode 100644 index 0000000000..b6af1ca1e4 --- /dev/null +++ b/react-icons/io/arrow-return-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowReturnLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-return-right.d.ts b/react-icons/io/arrow-return-right.d.ts new file mode 100644 index 0000000000..a25afc5117 --- /dev/null +++ b/react-icons/io/arrow-return-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowReturnRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-a.d.ts b/react-icons/io/arrow-right-a.d.ts new file mode 100644 index 0000000000..069b3190e3 --- /dev/null +++ b/react-icons/io/arrow-right-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowRightA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-b.d.ts b/react-icons/io/arrow-right-b.d.ts new file mode 100644 index 0000000000..30f4d3ffdb --- /dev/null +++ b/react-icons/io/arrow-right-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowRightB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-c.d.ts b/react-icons/io/arrow-right-c.d.ts new file mode 100644 index 0000000000..23fd4da1c2 --- /dev/null +++ b/react-icons/io/arrow-right-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowRightC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-shrink.d.ts b/react-icons/io/arrow-shrink.d.ts new file mode 100644 index 0000000000..bd96dfc102 --- /dev/null +++ b/react-icons/io/arrow-shrink.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowShrink extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-swap.d.ts b/react-icons/io/arrow-swap.d.ts new file mode 100644 index 0000000000..2f2c71d0ad --- /dev/null +++ b/react-icons/io/arrow-swap.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowSwap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-a.d.ts b/react-icons/io/arrow-up-a.d.ts new file mode 100644 index 0000000000..3edd4915d4 --- /dev/null +++ b/react-icons/io/arrow-up-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowUpA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-b.d.ts b/react-icons/io/arrow-up-b.d.ts new file mode 100644 index 0000000000..ddf288dcfc --- /dev/null +++ b/react-icons/io/arrow-up-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowUpB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-c.d.ts b/react-icons/io/arrow-up-c.d.ts new file mode 100644 index 0000000000..24baab9e4d --- /dev/null +++ b/react-icons/io/arrow-up-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoArrowUpC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/asterisk.d.ts b/react-icons/io/asterisk.d.ts new file mode 100644 index 0000000000..d6d7812590 --- /dev/null +++ b/react-icons/io/asterisk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAsterisk extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/at.d.ts b/react-icons/io/at.d.ts new file mode 100644 index 0000000000..0f529669e1 --- /dev/null +++ b/react-icons/io/at.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/backspace-outline.d.ts b/react-icons/io/backspace-outline.d.ts new file mode 100644 index 0000000000..c8dc87e35d --- /dev/null +++ b/react-icons/io/backspace-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBackspaceOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/backspace.d.ts b/react-icons/io/backspace.d.ts new file mode 100644 index 0000000000..dee0a1a0e1 --- /dev/null +++ b/react-icons/io/backspace.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bag.d.ts b/react-icons/io/bag.d.ts new file mode 100644 index 0000000000..d7c6a70f34 --- /dev/null +++ b/react-icons/io/bag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-charging.d.ts b/react-icons/io/battery-charging.d.ts new file mode 100644 index 0000000000..7bec82b21a --- /dev/null +++ b/react-icons/io/battery-charging.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBatteryCharging extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-empty.d.ts b/react-icons/io/battery-empty.d.ts new file mode 100644 index 0000000000..399c37b871 --- /dev/null +++ b/react-icons/io/battery-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBatteryEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-full.d.ts b/react-icons/io/battery-full.d.ts new file mode 100644 index 0000000000..8f47508e40 --- /dev/null +++ b/react-icons/io/battery-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-half.d.ts b/react-icons/io/battery-half.d.ts new file mode 100644 index 0000000000..b059376e1a --- /dev/null +++ b/react-icons/io/battery-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBatteryHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-low.d.ts b/react-icons/io/battery-low.d.ts new file mode 100644 index 0000000000..e354f3f94c --- /dev/null +++ b/react-icons/io/battery-low.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBatteryLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/beaker.d.ts b/react-icons/io/beaker.d.ts new file mode 100644 index 0000000000..f2a480bc1b --- /dev/null +++ b/react-icons/io/beaker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/beer.d.ts b/react-icons/io/beer.d.ts new file mode 100644 index 0000000000..36a176f79f --- /dev/null +++ b/react-icons/io/beer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bluetooth.d.ts b/react-icons/io/bluetooth.d.ts new file mode 100644 index 0000000000..02ff26a4f0 --- /dev/null +++ b/react-icons/io/bluetooth.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bonfire.d.ts b/react-icons/io/bonfire.d.ts new file mode 100644 index 0000000000..b2f0e0cdc4 --- /dev/null +++ b/react-icons/io/bonfire.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBonfire extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bookmark.d.ts b/react-icons/io/bookmark.d.ts new file mode 100644 index 0000000000..9705b6f86b --- /dev/null +++ b/react-icons/io/bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bowtie.d.ts b/react-icons/io/bowtie.d.ts new file mode 100644 index 0000000000..db6a2b50c1 --- /dev/null +++ b/react-icons/io/bowtie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBowtie extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/briefcase.d.ts b/react-icons/io/briefcase.d.ts new file mode 100644 index 0000000000..726556b2c4 --- /dev/null +++ b/react-icons/io/briefcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bug.d.ts b/react-icons/io/bug.d.ts new file mode 100644 index 0000000000..582bb196b4 --- /dev/null +++ b/react-icons/io/bug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/calculator.d.ts b/react-icons/io/calculator.d.ts new file mode 100644 index 0000000000..55bdb52c59 --- /dev/null +++ b/react-icons/io/calculator.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/calendar.d.ts b/react-icons/io/calendar.d.ts new file mode 100644 index 0000000000..e87c6b4705 --- /dev/null +++ b/react-icons/io/calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/camera.d.ts b/react-icons/io/camera.d.ts new file mode 100644 index 0000000000..b8092ca087 --- /dev/null +++ b/react-icons/io/camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/card.d.ts b/react-icons/io/card.d.ts new file mode 100644 index 0000000000..3222ae3c43 --- /dev/null +++ b/react-icons/io/card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cash.d.ts b/react-icons/io/cash.d.ts new file mode 100644 index 0000000000..7bd4da34ee --- /dev/null +++ b/react-icons/io/cash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbox-working.d.ts b/react-icons/io/chatbox-working.d.ts new file mode 100644 index 0000000000..e3ff38d29d --- /dev/null +++ b/react-icons/io/chatbox-working.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatboxWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbox.d.ts b/react-icons/io/chatbox.d.ts new file mode 100644 index 0000000000..c900e72a12 --- /dev/null +++ b/react-icons/io/chatbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatboxes.d.ts b/react-icons/io/chatboxes.d.ts new file mode 100644 index 0000000000..9bd61d2b56 --- /dev/null +++ b/react-icons/io/chatboxes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatboxes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubble-working.d.ts b/react-icons/io/chatbubble-working.d.ts new file mode 100644 index 0000000000..11bbc83f49 --- /dev/null +++ b/react-icons/io/chatbubble-working.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatbubbleWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubble.d.ts b/react-icons/io/chatbubble.d.ts new file mode 100644 index 0000000000..f38f78bf7d --- /dev/null +++ b/react-icons/io/chatbubble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatbubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubbles.d.ts b/react-icons/io/chatbubbles.d.ts new file mode 100644 index 0000000000..e4620f3ae5 --- /dev/null +++ b/react-icons/io/chatbubbles.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChatbubbles extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark-circled.d.ts b/react-icons/io/checkmark-circled.d.ts new file mode 100644 index 0000000000..545c5dc316 --- /dev/null +++ b/react-icons/io/checkmark-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCheckmarkCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark-round.d.ts b/react-icons/io/checkmark-round.d.ts new file mode 100644 index 0000000000..54b9845bc8 --- /dev/null +++ b/react-icons/io/checkmark-round.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCheckmarkRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark.d.ts b/react-icons/io/checkmark.d.ts new file mode 100644 index 0000000000..58a4235b5e --- /dev/null +++ b/react-icons/io/checkmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCheckmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-down.d.ts b/react-icons/io/chevron-down.d.ts new file mode 100644 index 0000000000..5fa87ad42a --- /dev/null +++ b/react-icons/io/chevron-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-left.d.ts b/react-icons/io/chevron-left.d.ts new file mode 100644 index 0000000000..f8d29748fb --- /dev/null +++ b/react-icons/io/chevron-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-right.d.ts b/react-icons/io/chevron-right.d.ts new file mode 100644 index 0000000000..3d127240f6 --- /dev/null +++ b/react-icons/io/chevron-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-up.d.ts b/react-icons/io/chevron-up.d.ts new file mode 100644 index 0000000000..37958eb35a --- /dev/null +++ b/react-icons/io/chevron-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/clipboard.d.ts b/react-icons/io/clipboard.d.ts new file mode 100644 index 0000000000..215eb099e3 --- /dev/null +++ b/react-icons/io/clipboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/clock.d.ts b/react-icons/io/clock.d.ts new file mode 100644 index 0000000000..c0da4be925 --- /dev/null +++ b/react-icons/io/clock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close-circled.d.ts b/react-icons/io/close-circled.d.ts new file mode 100644 index 0000000000..8abb4b2530 --- /dev/null +++ b/react-icons/io/close-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCloseCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close-round.d.ts b/react-icons/io/close-round.d.ts new file mode 100644 index 0000000000..b8fb0387ff --- /dev/null +++ b/react-icons/io/close-round.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCloseRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close.d.ts b/react-icons/io/close.d.ts new file mode 100644 index 0000000000..a3ee6bcb51 --- /dev/null +++ b/react-icons/io/close.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/closed-captioning.d.ts b/react-icons/io/closed-captioning.d.ts new file mode 100644 index 0000000000..89b555c8ae --- /dev/null +++ b/react-icons/io/closed-captioning.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoClosedCaptioning extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cloud.d.ts b/react-icons/io/cloud.d.ts new file mode 100644 index 0000000000..62b49dea82 --- /dev/null +++ b/react-icons/io/cloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code-download.d.ts b/react-icons/io/code-download.d.ts new file mode 100644 index 0000000000..aaef3255b8 --- /dev/null +++ b/react-icons/io/code-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCodeDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code-working.d.ts b/react-icons/io/code-working.d.ts new file mode 100644 index 0000000000..28d0fd7138 --- /dev/null +++ b/react-icons/io/code-working.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCodeWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code.d.ts b/react-icons/io/code.d.ts new file mode 100644 index 0000000000..708bccfde6 --- /dev/null +++ b/react-icons/io/code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/coffee.d.ts b/react-icons/io/coffee.d.ts new file mode 100644 index 0000000000..f0e8702589 --- /dev/null +++ b/react-icons/io/coffee.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/compass.d.ts b/react-icons/io/compass.d.ts new file mode 100644 index 0000000000..fc5c3e8bda --- /dev/null +++ b/react-icons/io/compass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/compose.d.ts b/react-icons/io/compose.d.ts new file mode 100644 index 0000000000..f0b29565b0 --- /dev/null +++ b/react-icons/io/compose.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCompose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/connectbars.d.ts b/react-icons/io/connectbars.d.ts new file mode 100644 index 0000000000..fd8d54de4a --- /dev/null +++ b/react-icons/io/connectbars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoConnectbars extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/contrast.d.ts b/react-icons/io/contrast.d.ts new file mode 100644 index 0000000000..928bda459e --- /dev/null +++ b/react-icons/io/contrast.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoContrast extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/crop.d.ts b/react-icons/io/crop.d.ts new file mode 100644 index 0000000000..8979954d33 --- /dev/null +++ b/react-icons/io/crop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cube.d.ts b/react-icons/io/cube.d.ts new file mode 100644 index 0000000000..3e058d833a --- /dev/null +++ b/react-icons/io/cube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoCube extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/disc.d.ts b/react-icons/io/disc.d.ts new file mode 100644 index 0000000000..ae0002dd6e --- /dev/null +++ b/react-icons/io/disc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoDisc extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/document-text.d.ts b/react-icons/io/document-text.d.ts new file mode 100644 index 0000000000..9e0914a471 --- /dev/null +++ b/react-icons/io/document-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoDocumentText extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/document.d.ts b/react-icons/io/document.d.ts new file mode 100644 index 0000000000..143e60dfc4 --- /dev/null +++ b/react-icons/io/document.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/drag.d.ts b/react-icons/io/drag.d.ts new file mode 100644 index 0000000000..99a34947ac --- /dev/null +++ b/react-icons/io/drag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoDrag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/earth.d.ts b/react-icons/io/earth.d.ts new file mode 100644 index 0000000000..b518edd828 --- /dev/null +++ b/react-icons/io/earth.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEarth extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/easel.d.ts b/react-icons/io/easel.d.ts new file mode 100644 index 0000000000..f36855e74d --- /dev/null +++ b/react-icons/io/easel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEasel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/edit.d.ts b/react-icons/io/edit.d.ts new file mode 100644 index 0000000000..8868ebddfd --- /dev/null +++ b/react-icons/io/edit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/egg.d.ts b/react-icons/io/egg.d.ts new file mode 100644 index 0000000000..e037ec6695 --- /dev/null +++ b/react-icons/io/egg.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEgg extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eject.d.ts b/react-icons/io/eject.d.ts new file mode 100644 index 0000000000..5352cfaab7 --- /dev/null +++ b/react-icons/io/eject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/email-unread.d.ts b/react-icons/io/email-unread.d.ts new file mode 100644 index 0000000000..d76ddc77a8 --- /dev/null +++ b/react-icons/io/email-unread.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEmailUnread extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/email.d.ts b/react-icons/io/email.d.ts new file mode 100644 index 0000000000..bae7c21977 --- /dev/null +++ b/react-icons/io/email.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/erlenmeyer-flask-bubbles.d.ts b/react-icons/io/erlenmeyer-flask-bubbles.d.ts new file mode 100644 index 0000000000..0e14bb61b7 --- /dev/null +++ b/react-icons/io/erlenmeyer-flask-bubbles.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoErlenmeyerFlaskBubbles extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/erlenmeyer-flask.d.ts b/react-icons/io/erlenmeyer-flask.d.ts new file mode 100644 index 0000000000..e6d115470c --- /dev/null +++ b/react-icons/io/erlenmeyer-flask.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoErlenmeyerFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eye-disabled.d.ts b/react-icons/io/eye-disabled.d.ts new file mode 100644 index 0000000000..dccba3f98d --- /dev/null +++ b/react-icons/io/eye-disabled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEyeDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eye.d.ts b/react-icons/io/eye.d.ts new file mode 100644 index 0000000000..ecd639a2e9 --- /dev/null +++ b/react-icons/io/eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/female.d.ts b/react-icons/io/female.d.ts new file mode 100644 index 0000000000..cb4f74e804 --- /dev/null +++ b/react-icons/io/female.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFemale extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/filing.d.ts b/react-icons/io/filing.d.ts new file mode 100644 index 0000000000..1d23754e3d --- /dev/null +++ b/react-icons/io/filing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFiling extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/film-marker.d.ts b/react-icons/io/film-marker.d.ts new file mode 100644 index 0000000000..0a7028d46d --- /dev/null +++ b/react-icons/io/film-marker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFilmMarker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fireball.d.ts b/react-icons/io/fireball.d.ts new file mode 100644 index 0000000000..4d05bb27d9 --- /dev/null +++ b/react-icons/io/fireball.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFireball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flag.d.ts b/react-icons/io/flag.d.ts new file mode 100644 index 0000000000..48cd7635c8 --- /dev/null +++ b/react-icons/io/flag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flame.d.ts b/react-icons/io/flame.d.ts new file mode 100644 index 0000000000..0f826a74c5 --- /dev/null +++ b/react-icons/io/flame.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flash-off.d.ts b/react-icons/io/flash-off.d.ts new file mode 100644 index 0000000000..060b72368a --- /dev/null +++ b/react-icons/io/flash-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFlashOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flash.d.ts b/react-icons/io/flash.d.ts new file mode 100644 index 0000000000..1bbfde2db9 --- /dev/null +++ b/react-icons/io/flash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/folder.d.ts b/react-icons/io/folder.d.ts new file mode 100644 index 0000000000..b6107a96a7 --- /dev/null +++ b/react-icons/io/folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fork-repo.d.ts b/react-icons/io/fork-repo.d.ts new file mode 100644 index 0000000000..d45323575e --- /dev/null +++ b/react-icons/io/fork-repo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoForkRepo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fork.d.ts b/react-icons/io/fork.d.ts new file mode 100644 index 0000000000..4ca36cbfc8 --- /dev/null +++ b/react-icons/io/fork.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFork extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/forward.d.ts b/react-icons/io/forward.d.ts new file mode 100644 index 0000000000..7ded6be006 --- /dev/null +++ b/react-icons/io/forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/funnel.d.ts b/react-icons/io/funnel.d.ts new file mode 100644 index 0000000000..c0fe6368d4 --- /dev/null +++ b/react-icons/io/funnel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoFunnel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/gear-a.d.ts b/react-icons/io/gear-a.d.ts new file mode 100644 index 0000000000..2a63ea948a --- /dev/null +++ b/react-icons/io/gear-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoGearA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/gear-b.d.ts b/react-icons/io/gear-b.d.ts new file mode 100644 index 0000000000..c76bd647e7 --- /dev/null +++ b/react-icons/io/gear-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoGearB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/grid.d.ts b/react-icons/io/grid.d.ts new file mode 100644 index 0000000000..2f46673e4a --- /dev/null +++ b/react-icons/io/grid.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoGrid extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/hammer.d.ts b/react-icons/io/hammer.d.ts new file mode 100644 index 0000000000..f91f4b5f8b --- /dev/null +++ b/react-icons/io/hammer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHammer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/happy-outline.d.ts b/react-icons/io/happy-outline.d.ts new file mode 100644 index 0000000000..cd7b48f32e --- /dev/null +++ b/react-icons/io/happy-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHappyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/happy.d.ts b/react-icons/io/happy.d.ts new file mode 100644 index 0000000000..40cd43fa16 --- /dev/null +++ b/react-icons/io/happy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHappy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/headphone.d.ts b/react-icons/io/headphone.d.ts new file mode 100644 index 0000000000..286c10772a --- /dev/null +++ b/react-icons/io/headphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHeadphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/heart-broken.d.ts b/react-icons/io/heart-broken.d.ts new file mode 100644 index 0000000000..2c83b5735e --- /dev/null +++ b/react-icons/io/heart-broken.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHeartBroken extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/heart.d.ts b/react-icons/io/heart.d.ts new file mode 100644 index 0000000000..61113e789a --- /dev/null +++ b/react-icons/io/heart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help-buoy.d.ts b/react-icons/io/help-buoy.d.ts new file mode 100644 index 0000000000..8d147f0297 --- /dev/null +++ b/react-icons/io/help-buoy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHelpBuoy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help-circled.d.ts b/react-icons/io/help-circled.d.ts new file mode 100644 index 0000000000..4925dd1bc1 --- /dev/null +++ b/react-icons/io/help-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHelpCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help.d.ts b/react-icons/io/help.d.ts new file mode 100644 index 0000000000..5a2b0e72e7 --- /dev/null +++ b/react-icons/io/help.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/home.d.ts b/react-icons/io/home.d.ts new file mode 100644 index 0000000000..6e195bfd26 --- /dev/null +++ b/react-icons/io/home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/icecream.d.ts b/react-icons/io/icecream.d.ts new file mode 100644 index 0000000000..9d209cb184 --- /dev/null +++ b/react-icons/io/icecream.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIcecream extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/image.d.ts b/react-icons/io/image.d.ts new file mode 100644 index 0000000000..0e7743c010 --- /dev/null +++ b/react-icons/io/image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/images.d.ts b/react-icons/io/images.d.ts new file mode 100644 index 0000000000..b0718cc542 --- /dev/null +++ b/react-icons/io/images.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoImages extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/index.d.ts b/react-icons/io/index.d.ts new file mode 100644 index 0000000000..132c43e88c --- /dev/null +++ b/react-icons/io/index.d.ts @@ -0,0 +1,1466 @@ +import _IoAlertCircled from "./alert-circled"; +import _IoAlert from "./alert"; +import _IoAndroidAddCircle from "./android-add-circle"; +import _IoAndroidAdd from "./android-add"; +import _IoAndroidAlarmClock from "./android-alarm-clock"; +import _IoAndroidAlert from "./android-alert"; +import _IoAndroidApps from "./android-apps"; +import _IoAndroidArchive from "./android-archive"; +import _IoAndroidArrowBack from "./android-arrow-back"; +import _IoAndroidArrowDown from "./android-arrow-down"; +import _IoAndroidArrowDropdownCircle from "./android-arrow-dropdown-circle"; +import _IoAndroidArrowDropdown from "./android-arrow-dropdown"; +import _IoAndroidArrowDropleftCircle from "./android-arrow-dropleft-circle"; +import _IoAndroidArrowDropleft from "./android-arrow-dropleft"; +import _IoAndroidArrowDroprightCircle from "./android-arrow-dropright-circle"; +import _IoAndroidArrowDropright from "./android-arrow-dropright"; +import _IoAndroidArrowDropupCircle from "./android-arrow-dropup-circle"; +import _IoAndroidArrowDropup from "./android-arrow-dropup"; +import _IoAndroidArrowForward from "./android-arrow-forward"; +import _IoAndroidArrowUp from "./android-arrow-up"; +import _IoAndroidAttach from "./android-attach"; +import _IoAndroidBar from "./android-bar"; +import _IoAndroidBicycle from "./android-bicycle"; +import _IoAndroidBoat from "./android-boat"; +import _IoAndroidBookmark from "./android-bookmark"; +import _IoAndroidBulb from "./android-bulb"; +import _IoAndroidBus from "./android-bus"; +import _IoAndroidCalendar from "./android-calendar"; +import _IoAndroidCall from "./android-call"; +import _IoAndroidCamera from "./android-camera"; +import _IoAndroidCancel from "./android-cancel"; +import _IoAndroidCar from "./android-car"; +import _IoAndroidCart from "./android-cart"; +import _IoAndroidChat from "./android-chat"; +import _IoAndroidCheckboxBlank from "./android-checkbox-blank"; +import _IoAndroidCheckboxOutlineBlank from "./android-checkbox-outline-blank"; +import _IoAndroidCheckboxOutline from "./android-checkbox-outline"; +import _IoAndroidCheckbox from "./android-checkbox"; +import _IoAndroidCheckmarkCircle from "./android-checkmark-circle"; +import _IoAndroidClipboard from "./android-clipboard"; +import _IoAndroidClose from "./android-close"; +import _IoAndroidCloudCircle from "./android-cloud-circle"; +import _IoAndroidCloudDone from "./android-cloud-done"; +import _IoAndroidCloudOutline from "./android-cloud-outline"; +import _IoAndroidCloud from "./android-cloud"; +import _IoAndroidColorPalette from "./android-color-palette"; +import _IoAndroidCompass from "./android-compass"; +import _IoAndroidContact from "./android-contact"; +import _IoAndroidContacts from "./android-contacts"; +import _IoAndroidContract from "./android-contract"; +import _IoAndroidCreate from "./android-create"; +import _IoAndroidDelete from "./android-delete"; +import _IoAndroidDesktop from "./android-desktop"; +import _IoAndroidDocument from "./android-document"; +import _IoAndroidDoneAll from "./android-done-all"; +import _IoAndroidDone from "./android-done"; +import _IoAndroidDownload from "./android-download"; +import _IoAndroidDrafts from "./android-drafts"; +import _IoAndroidExit from "./android-exit"; +import _IoAndroidExpand from "./android-expand"; +import _IoAndroidFavoriteOutline from "./android-favorite-outline"; +import _IoAndroidFavorite from "./android-favorite"; +import _IoAndroidFilm from "./android-film"; +import _IoAndroidFolderOpen from "./android-folder-open"; +import _IoAndroidFolder from "./android-folder"; +import _IoAndroidFunnel from "./android-funnel"; +import _IoAndroidGlobe from "./android-globe"; +import _IoAndroidHand from "./android-hand"; +import _IoAndroidHangout from "./android-hangout"; +import _IoAndroidHappy from "./android-happy"; +import _IoAndroidHome from "./android-home"; +import _IoAndroidImage from "./android-image"; +import _IoAndroidLaptop from "./android-laptop"; +import _IoAndroidList from "./android-list"; +import _IoAndroidLocate from "./android-locate"; +import _IoAndroidLock from "./android-lock"; +import _IoAndroidMail from "./android-mail"; +import _IoAndroidMap from "./android-map"; +import _IoAndroidMenu from "./android-menu"; +import _IoAndroidMicrophoneOff from "./android-microphone-off"; +import _IoAndroidMicrophone from "./android-microphone"; +import _IoAndroidMoreHorizontal from "./android-more-horizontal"; +import _IoAndroidMoreVertical from "./android-more-vertical"; +import _IoAndroidNavigate from "./android-navigate"; +import _IoAndroidNotificationsNone from "./android-notifications-none"; +import _IoAndroidNotificationsOff from "./android-notifications-off"; +import _IoAndroidNotifications from "./android-notifications"; +import _IoAndroidOpen from "./android-open"; +import _IoAndroidOptions from "./android-options"; +import _IoAndroidPeople from "./android-people"; +import _IoAndroidPersonAdd from "./android-person-add"; +import _IoAndroidPerson from "./android-person"; +import _IoAndroidPhoneLandscape from "./android-phone-landscape"; +import _IoAndroidPhonePortrait from "./android-phone-portrait"; +import _IoAndroidPin from "./android-pin"; +import _IoAndroidPlane from "./android-plane"; +import _IoAndroidPlaystore from "./android-playstore"; +import _IoAndroidPrint from "./android-print"; +import _IoAndroidRadioButtonOff from "./android-radio-button-off"; +import _IoAndroidRadioButtonOn from "./android-radio-button-on"; +import _IoAndroidRefresh from "./android-refresh"; +import _IoAndroidRemoveCircle from "./android-remove-circle"; +import _IoAndroidRemove from "./android-remove"; +import _IoAndroidRestaurant from "./android-restaurant"; +import _IoAndroidSad from "./android-sad"; +import _IoAndroidSearch from "./android-search"; +import _IoAndroidSend from "./android-send"; +import _IoAndroidSettings from "./android-settings"; +import _IoAndroidShareAlt from "./android-share-alt"; +import _IoAndroidShare from "./android-share"; +import _IoAndroidStarHalf from "./android-star-half"; +import _IoAndroidStarOutline from "./android-star-outline"; +import _IoAndroidStar from "./android-star"; +import _IoAndroidStopwatch from "./android-stopwatch"; +import _IoAndroidSubway from "./android-subway"; +import _IoAndroidSunny from "./android-sunny"; +import _IoAndroidSync from "./android-sync"; +import _IoAndroidTextsms from "./android-textsms"; +import _IoAndroidTime from "./android-time"; +import _IoAndroidTrain from "./android-train"; +import _IoAndroidUnlock from "./android-unlock"; +import _IoAndroidUpload from "./android-upload"; +import _IoAndroidVolumeDown from "./android-volume-down"; +import _IoAndroidVolumeMute from "./android-volume-mute"; +import _IoAndroidVolumeOff from "./android-volume-off"; +import _IoAndroidVolumeUp from "./android-volume-up"; +import _IoAndroidWalk from "./android-walk"; +import _IoAndroidWarning from "./android-warning"; +import _IoAndroidWatch from "./android-watch"; +import _IoAndroidWifi from "./android-wifi"; +import _IoAperture from "./aperture"; +import _IoArchive from "./archive"; +import _IoArrowDownA from "./arrow-down-a"; +import _IoArrowDownB from "./arrow-down-b"; +import _IoArrowDownC from "./arrow-down-c"; +import _IoArrowExpand from "./arrow-expand"; +import _IoArrowGraphDownLeft from "./arrow-graph-down-left"; +import _IoArrowGraphDownRight from "./arrow-graph-down-right"; +import _IoArrowGraphUpLeft from "./arrow-graph-up-left"; +import _IoArrowGraphUpRight from "./arrow-graph-up-right"; +import _IoArrowLeftA from "./arrow-left-a"; +import _IoArrowLeftB from "./arrow-left-b"; +import _IoArrowLeftC from "./arrow-left-c"; +import _IoArrowMove from "./arrow-move"; +import _IoArrowResize from "./arrow-resize"; +import _IoArrowReturnLeft from "./arrow-return-left"; +import _IoArrowReturnRight from "./arrow-return-right"; +import _IoArrowRightA from "./arrow-right-a"; +import _IoArrowRightB from "./arrow-right-b"; +import _IoArrowRightC from "./arrow-right-c"; +import _IoArrowShrink from "./arrow-shrink"; +import _IoArrowSwap from "./arrow-swap"; +import _IoArrowUpA from "./arrow-up-a"; +import _IoArrowUpB from "./arrow-up-b"; +import _IoArrowUpC from "./arrow-up-c"; +import _IoAsterisk from "./asterisk"; +import _IoAt from "./at"; +import _IoBackspaceOutline from "./backspace-outline"; +import _IoBackspace from "./backspace"; +import _IoBag from "./bag"; +import _IoBatteryCharging from "./battery-charging"; +import _IoBatteryEmpty from "./battery-empty"; +import _IoBatteryFull from "./battery-full"; +import _IoBatteryHalf from "./battery-half"; +import _IoBatteryLow from "./battery-low"; +import _IoBeaker from "./beaker"; +import _IoBeer from "./beer"; +import _IoBluetooth from "./bluetooth"; +import _IoBonfire from "./bonfire"; +import _IoBookmark from "./bookmark"; +import _IoBowtie from "./bowtie"; +import _IoBriefcase from "./briefcase"; +import _IoBug from "./bug"; +import _IoCalculator from "./calculator"; +import _IoCalendar from "./calendar"; +import _IoCamera from "./camera"; +import _IoCard from "./card"; +import _IoCash from "./cash"; +import _IoChatboxWorking from "./chatbox-working"; +import _IoChatbox from "./chatbox"; +import _IoChatboxes from "./chatboxes"; +import _IoChatbubbleWorking from "./chatbubble-working"; +import _IoChatbubble from "./chatbubble"; +import _IoChatbubbles from "./chatbubbles"; +import _IoCheckmarkCircled from "./checkmark-circled"; +import _IoCheckmarkRound from "./checkmark-round"; +import _IoCheckmark from "./checkmark"; +import _IoChevronDown from "./chevron-down"; +import _IoChevronLeft from "./chevron-left"; +import _IoChevronRight from "./chevron-right"; +import _IoChevronUp from "./chevron-up"; +import _IoClipboard from "./clipboard"; +import _IoClock from "./clock"; +import _IoCloseCircled from "./close-circled"; +import _IoCloseRound from "./close-round"; +import _IoClose from "./close"; +import _IoClosedCaptioning from "./closed-captioning"; +import _IoCloud from "./cloud"; +import _IoCodeDownload from "./code-download"; +import _IoCodeWorking from "./code-working"; +import _IoCode from "./code"; +import _IoCoffee from "./coffee"; +import _IoCompass from "./compass"; +import _IoCompose from "./compose"; +import _IoConnectbars from "./connectbars"; +import _IoContrast from "./contrast"; +import _IoCrop from "./crop"; +import _IoCube from "./cube"; +import _IoDisc from "./disc"; +import _IoDocumentText from "./document-text"; +import _IoDocument from "./document"; +import _IoDrag from "./drag"; +import _IoEarth from "./earth"; +import _IoEasel from "./easel"; +import _IoEdit from "./edit"; +import _IoEgg from "./egg"; +import _IoEject from "./eject"; +import _IoEmailUnread from "./email-unread"; +import _IoEmail from "./email"; +import _IoErlenmeyerFlaskBubbles from "./erlenmeyer-flask-bubbles"; +import _IoErlenmeyerFlask from "./erlenmeyer-flask"; +import _IoEyeDisabled from "./eye-disabled"; +import _IoEye from "./eye"; +import _IoFemale from "./female"; +import _IoFiling from "./filing"; +import _IoFilmMarker from "./film-marker"; +import _IoFireball from "./fireball"; +import _IoFlag from "./flag"; +import _IoFlame from "./flame"; +import _IoFlashOff from "./flash-off"; +import _IoFlash from "./flash"; +import _IoFolder from "./folder"; +import _IoForkRepo from "./fork-repo"; +import _IoFork from "./fork"; +import _IoForward from "./forward"; +import _IoFunnel from "./funnel"; +import _IoGearA from "./gear-a"; +import _IoGearB from "./gear-b"; +import _IoGrid from "./grid"; +import _IoHammer from "./hammer"; +import _IoHappyOutline from "./happy-outline"; +import _IoHappy from "./happy"; +import _IoHeadphone from "./headphone"; +import _IoHeartBroken from "./heart-broken"; +import _IoHeart from "./heart"; +import _IoHelpBuoy from "./help-buoy"; +import _IoHelpCircled from "./help-circled"; +import _IoHelp from "./help"; +import _IoHome from "./home"; +import _IoIcecream from "./icecream"; +import _IoImage from "./image"; +import _IoImages from "./images"; +import _IoInformatcircled from "./informatcircled"; +import _IoInformation from "./information"; +import _IoIonic from "./ionic"; +import _IoIosAlarmOutline from "./ios-alarm-outline"; +import _IoIosAlarm from "./ios-alarm"; +import _IoIosAlbumsOutline from "./ios-albums-outline"; +import _IoIosAlbums from "./ios-albums"; +import _IoIosAmericanfootballOutline from "./ios-americanfootball-outline"; +import _IoIosAmericanfootball from "./ios-americanfootball"; +import _IoIosAnalyticsOutline from "./ios-analytics-outline"; +import _IoIosAnalytics from "./ios-analytics"; +import _IoIosArrowBack from "./ios-arrow-back"; +import _IoIosArrowDown from "./ios-arrow-down"; +import _IoIosArrowForward from "./ios-arrow-forward"; +import _IoIosArrowLeft from "./ios-arrow-left"; +import _IoIosArrowRight from "./ios-arrow-right"; +import _IoIosArrowThinDown from "./ios-arrow-thin-down"; +import _IoIosArrowThinLeft from "./ios-arrow-thin-left"; +import _IoIosArrowThinRight from "./ios-arrow-thin-right"; +import _IoIosArrowThinUp from "./ios-arrow-thin-up"; +import _IoIosArrowUp from "./ios-arrow-up"; +import _IoIosAtOutline from "./ios-at-outline"; +import _IoIosAt from "./ios-at"; +import _IoIosBarcodeOutline from "./ios-barcode-outline"; +import _IoIosBarcode from "./ios-barcode"; +import _IoIosBaseballOutline from "./ios-baseball-outline"; +import _IoIosBaseball from "./ios-baseball"; +import _IoIosBasketballOutline from "./ios-basketball-outline"; +import _IoIosBasketball from "./ios-basketball"; +import _IoIosBellOutline from "./ios-bell-outline"; +import _IoIosBell from "./ios-bell"; +import _IoIosBodyOutline from "./ios-body-outline"; +import _IoIosBody from "./ios-body"; +import _IoIosBoltOutline from "./ios-bolt-outline"; +import _IoIosBolt from "./ios-bolt"; +import _IoIosBookOutline from "./ios-book-outline"; +import _IoIosBook from "./ios-book"; +import _IoIosBookmarksOutline from "./ios-bookmarks-outline"; +import _IoIosBookmarks from "./ios-bookmarks"; +import _IoIosBoxOutline from "./ios-box-outline"; +import _IoIosBox from "./ios-box"; +import _IoIosBriefcaseOutline from "./ios-briefcase-outline"; +import _IoIosBriefcase from "./ios-briefcase"; +import _IoIosBrowsersOutline from "./ios-browsers-outline"; +import _IoIosBrowsers from "./ios-browsers"; +import _IoIosCalculatorOutline from "./ios-calculator-outline"; +import _IoIosCalculator from "./ios-calculator"; +import _IoIosCalendarOutline from "./ios-calendar-outline"; +import _IoIosCalendar from "./ios-calendar"; +import _IoIosCameraOutline from "./ios-camera-outline"; +import _IoIosCamera from "./ios-camera"; +import _IoIosCartOutline from "./ios-cart-outline"; +import _IoIosCart from "./ios-cart"; +import _IoIosChatboxesOutline from "./ios-chatboxes-outline"; +import _IoIosChatboxes from "./ios-chatboxes"; +import _IoIosChatbubbleOutline from "./ios-chatbubble-outline"; +import _IoIosChatbubble from "./ios-chatbubble"; +import _IoIosCheckmarkEmpty from "./ios-checkmark-empty"; +import _IoIosCheckmarkOutline from "./ios-checkmark-outline"; +import _IoIosCheckmark from "./ios-checkmark"; +import _IoIosCircleFilled from "./ios-circle-filled"; +import _IoIosCircleOutline from "./ios-circle-outline"; +import _IoIosClockOutline from "./ios-clock-outline"; +import _IoIosClock from "./ios-clock"; +import _IoIosCloseEmpty from "./ios-close-empty"; +import _IoIosCloseOutline from "./ios-close-outline"; +import _IoIosClose from "./ios-close"; +import _IoIosCloudDownloadOutline from "./ios-cloud-download-outline"; +import _IoIosCloudDownload from "./ios-cloud-download"; +import _IoIosCloudOutline from "./ios-cloud-outline"; +import _IoIosCloudUploadOutline from "./ios-cloud-upload-outline"; +import _IoIosCloudUpload from "./ios-cloud-upload"; +import _IoIosCloud from "./ios-cloud"; +import _IoIosCloudyNightOutline from "./ios-cloudy-night-outline"; +import _IoIosCloudyNight from "./ios-cloudy-night"; +import _IoIosCloudyOutline from "./ios-cloudy-outline"; +import _IoIosCloudy from "./ios-cloudy"; +import _IoIosCogOutline from "./ios-cog-outline"; +import _IoIosCog from "./ios-cog"; +import _IoIosColorFilterOutline from "./ios-color-filter-outline"; +import _IoIosColorFilter from "./ios-color-filter"; +import _IoIosColorWandOutline from "./ios-color-wand-outline"; +import _IoIosColorWand from "./ios-color-wand"; +import _IoIosComposeOutline from "./ios-compose-outline"; +import _IoIosCompose from "./ios-compose"; +import _IoIosContactOutline from "./ios-contact-outline"; +import _IoIosContact from "./ios-contact"; +import _IoIosCopyOutline from "./ios-copy-outline"; +import _IoIosCopy from "./ios-copy"; +import _IoIosCropStrong from "./ios-crop-strong"; +import _IoIosCrop from "./ios-crop"; +import _IoIosDownloadOutline from "./ios-download-outline"; +import _IoIosDownload from "./ios-download"; +import _IoIosDrag from "./ios-drag"; +import _IoIosEmailOutline from "./ios-email-outline"; +import _IoIosEmail from "./ios-email"; +import _IoIosEyeOutline from "./ios-eye-outline"; +import _IoIosEye from "./ios-eye"; +import _IoIosFastforwardOutline from "./ios-fastforward-outline"; +import _IoIosFastforward from "./ios-fastforward"; +import _IoIosFilingOutline from "./ios-filing-outline"; +import _IoIosFiling from "./ios-filing"; +import _IoIosFilmOutline from "./ios-film-outline"; +import _IoIosFilm from "./ios-film"; +import _IoIosFlagOutline from "./ios-flag-outline"; +import _IoIosFlag from "./ios-flag"; +import _IoIosFlameOutline from "./ios-flame-outline"; +import _IoIosFlame from "./ios-flame"; +import _IoIosFlaskOutline from "./ios-flask-outline"; +import _IoIosFlask from "./ios-flask"; +import _IoIosFlowerOutline from "./ios-flower-outline"; +import _IoIosFlower from "./ios-flower"; +import _IoIosFolderOutline from "./ios-folder-outline"; +import _IoIosFolder from "./ios-folder"; +import _IoIosFootballOutline from "./ios-football-outline"; +import _IoIosFootball from "./ios-football"; +import _IoIosGameControllerAOutline from "./ios-game-controller-a-outline"; +import _IoIosGameControllerA from "./ios-game-controller-a"; +import _IoIosGameControllerBOutline from "./ios-game-controller-b-outline"; +import _IoIosGameControllerB from "./ios-game-controller-b"; +import _IoIosGearOutline from "./ios-gear-outline"; +import _IoIosGear from "./ios-gear"; +import _IoIosGlassesOutline from "./ios-glasses-outline"; +import _IoIosGlasses from "./ios-glasses"; +import _IoIosGridViewOutline from "./ios-grid-view-outline"; +import _IoIosGridView from "./ios-grid-view"; +import _IoIosHeartOutline from "./ios-heart-outline"; +import _IoIosHeart from "./ios-heart"; +import _IoIosHelpEmpty from "./ios-help-empty"; +import _IoIosHelpOutline from "./ios-help-outline"; +import _IoIosHelp from "./ios-help"; +import _IoIosHomeOutline from "./ios-home-outline"; +import _IoIosHome from "./ios-home"; +import _IoIosInfiniteOutline from "./ios-infinite-outline"; +import _IoIosInfinite from "./ios-infinite"; +import _IoIosInformatempty from "./ios-informatempty"; +import _IoIosInformation from "./ios-information"; +import _IoIosInformatoutline from "./ios-informatoutline"; +import _IoIosIonicOutline from "./ios-ionic-outline"; +import _IoIosKeypadOutline from "./ios-keypad-outline"; +import _IoIosKeypad from "./ios-keypad"; +import _IoIosLightbulbOutline from "./ios-lightbulb-outline"; +import _IoIosLightbulb from "./ios-lightbulb"; +import _IoIosListOutline from "./ios-list-outline"; +import _IoIosList from "./ios-list"; +import _IoIosLocation from "./ios-location"; +import _IoIosLocatoutline from "./ios-locatoutline"; +import _IoIosLockedOutline from "./ios-locked-outline"; +import _IoIosLocked from "./ios-locked"; +import _IoIosLoopStrong from "./ios-loop-strong"; +import _IoIosLoop from "./ios-loop"; +import _IoIosMedicalOutline from "./ios-medical-outline"; +import _IoIosMedical from "./ios-medical"; +import _IoIosMedkitOutline from "./ios-medkit-outline"; +import _IoIosMedkit from "./ios-medkit"; +import _IoIosMicOff from "./ios-mic-off"; +import _IoIosMicOutline from "./ios-mic-outline"; +import _IoIosMic from "./ios-mic"; +import _IoIosMinusEmpty from "./ios-minus-empty"; +import _IoIosMinusOutline from "./ios-minus-outline"; +import _IoIosMinus from "./ios-minus"; +import _IoIosMonitorOutline from "./ios-monitor-outline"; +import _IoIosMonitor from "./ios-monitor"; +import _IoIosMoonOutline from "./ios-moon-outline"; +import _IoIosMoon from "./ios-moon"; +import _IoIosMoreOutline from "./ios-more-outline"; +import _IoIosMore from "./ios-more"; +import _IoIosMusicalNote from "./ios-musical-note"; +import _IoIosMusicalNotes from "./ios-musical-notes"; +import _IoIosNavigateOutline from "./ios-navigate-outline"; +import _IoIosNavigate from "./ios-navigate"; +import _IoIosNutrition from "./ios-nutrition"; +import _IoIosNutritoutline from "./ios-nutritoutline"; +import _IoIosPaperOutline from "./ios-paper-outline"; +import _IoIosPaper from "./ios-paper"; +import _IoIosPaperplaneOutline from "./ios-paperplane-outline"; +import _IoIosPaperplane from "./ios-paperplane"; +import _IoIosPartlysunnyOutline from "./ios-partlysunny-outline"; +import _IoIosPartlysunny from "./ios-partlysunny"; +import _IoIosPauseOutline from "./ios-pause-outline"; +import _IoIosPause from "./ios-pause"; +import _IoIosPawOutline from "./ios-paw-outline"; +import _IoIosPaw from "./ios-paw"; +import _IoIosPeopleOutline from "./ios-people-outline"; +import _IoIosPeople from "./ios-people"; +import _IoIosPersonOutline from "./ios-person-outline"; +import _IoIosPerson from "./ios-person"; +import _IoIosPersonaddOutline from "./ios-personadd-outline"; +import _IoIosPersonadd from "./ios-personadd"; +import _IoIosPhotosOutline from "./ios-photos-outline"; +import _IoIosPhotos from "./ios-photos"; +import _IoIosPieOutline from "./ios-pie-outline"; +import _IoIosPie from "./ios-pie"; +import _IoIosPintOutline from "./ios-pint-outline"; +import _IoIosPint from "./ios-pint"; +import _IoIosPlayOutline from "./ios-play-outline"; +import _IoIosPlay from "./ios-play"; +import _IoIosPlusEmpty from "./ios-plus-empty"; +import _IoIosPlusOutline from "./ios-plus-outline"; +import _IoIosPlus from "./ios-plus"; +import _IoIosPricetagOutline from "./ios-pricetag-outline"; +import _IoIosPricetag from "./ios-pricetag"; +import _IoIosPricetagsOutline from "./ios-pricetags-outline"; +import _IoIosPricetags from "./ios-pricetags"; +import _IoIosPrinterOutline from "./ios-printer-outline"; +import _IoIosPrinter from "./ios-printer"; +import _IoIosPulseStrong from "./ios-pulse-strong"; +import _IoIosPulse from "./ios-pulse"; +import _IoIosRainyOutline from "./ios-rainy-outline"; +import _IoIosRainy from "./ios-rainy"; +import _IoIosRecordingOutline from "./ios-recording-outline"; +import _IoIosRecording from "./ios-recording"; +import _IoIosRedoOutline from "./ios-redo-outline"; +import _IoIosRedo from "./ios-redo"; +import _IoIosRefreshEmpty from "./ios-refresh-empty"; +import _IoIosRefreshOutline from "./ios-refresh-outline"; +import _IoIosRefresh from "./ios-refresh"; +import _IoIosReload from "./ios-reload"; +import _IoIosReverseCameraOutline from "./ios-reverse-camera-outline"; +import _IoIosReverseCamera from "./ios-reverse-camera"; +import _IoIosRewindOutline from "./ios-rewind-outline"; +import _IoIosRewind from "./ios-rewind"; +import _IoIosRoseOutline from "./ios-rose-outline"; +import _IoIosRose from "./ios-rose"; +import _IoIosSearchStrong from "./ios-search-strong"; +import _IoIosSearch from "./ios-search"; +import _IoIosSettingsStrong from "./ios-settings-strong"; +import _IoIosSettings from "./ios-settings"; +import _IoIosShuffleStrong from "./ios-shuffle-strong"; +import _IoIosShuffle from "./ios-shuffle"; +import _IoIosSkipbackwardOutline from "./ios-skipbackward-outline"; +import _IoIosSkipbackward from "./ios-skipbackward"; +import _IoIosSkipforwardOutline from "./ios-skipforward-outline"; +import _IoIosSkipforward from "./ios-skipforward"; +import _IoIosSnowy from "./ios-snowy"; +import _IoIosSpeedometerOutline from "./ios-speedometer-outline"; +import _IoIosSpeedometer from "./ios-speedometer"; +import _IoIosStarHalf from "./ios-star-half"; +import _IoIosStarOutline from "./ios-star-outline"; +import _IoIosStar from "./ios-star"; +import _IoIosStopwatchOutline from "./ios-stopwatch-outline"; +import _IoIosStopwatch from "./ios-stopwatch"; +import _IoIosSunnyOutline from "./ios-sunny-outline"; +import _IoIosSunny from "./ios-sunny"; +import _IoIosTelephoneOutline from "./ios-telephone-outline"; +import _IoIosTelephone from "./ios-telephone"; +import _IoIosTennisballOutline from "./ios-tennisball-outline"; +import _IoIosTennisball from "./ios-tennisball"; +import _IoIosThunderstormOutline from "./ios-thunderstorm-outline"; +import _IoIosThunderstorm from "./ios-thunderstorm"; +import _IoIosTimeOutline from "./ios-time-outline"; +import _IoIosTime from "./ios-time"; +import _IoIosTimerOutline from "./ios-timer-outline"; +import _IoIosTimer from "./ios-timer"; +import _IoIosToggleOutline from "./ios-toggle-outline"; +import _IoIosToggle from "./ios-toggle"; +import _IoIosTrashOutline from "./ios-trash-outline"; +import _IoIosTrash from "./ios-trash"; +import _IoIosUndoOutline from "./ios-undo-outline"; +import _IoIosUndo from "./ios-undo"; +import _IoIosUnlockedOutline from "./ios-unlocked-outline"; +import _IoIosUnlocked from "./ios-unlocked"; +import _IoIosUploadOutline from "./ios-upload-outline"; +import _IoIosUpload from "./ios-upload"; +import _IoIosVideocamOutline from "./ios-videocam-outline"; +import _IoIosVideocam from "./ios-videocam"; +import _IoIosVolumeHigh from "./ios-volume-high"; +import _IoIosVolumeLow from "./ios-volume-low"; +import _IoIosWineglassOutline from "./ios-wineglass-outline"; +import _IoIosWineglass from "./ios-wineglass"; +import _IoIosWorldOutline from "./ios-world-outline"; +import _IoIosWorld from "./ios-world"; +import _IoIpad from "./ipad"; +import _IoIphone from "./iphone"; +import _IoIpod from "./ipod"; +import _IoJet from "./jet"; +import _IoKey from "./key"; +import _IoKnife from "./knife"; +import _IoLaptop from "./laptop"; +import _IoLeaf from "./leaf"; +import _IoLevels from "./levels"; +import _IoLightbulb from "./lightbulb"; +import _IoLink from "./link"; +import _IoLoadA from "./load-a"; +import _IoLoadB from "./load-b"; +import _IoLoadC from "./load-c"; +import _IoLoadD from "./load-d"; +import _IoLocation from "./location"; +import _IoLockCombination from "./lock-combination"; +import _IoLocked from "./locked"; +import _IoLogIn from "./log-in"; +import _IoLogOut from "./log-out"; +import _IoLoop from "./loop"; +import _IoMagnet from "./magnet"; +import _IoMale from "./male"; +import _IoMan from "./man"; +import _IoMap from "./map"; +import _IoMedkit from "./medkit"; +import _IoMerge from "./merge"; +import _IoMicA from "./mic-a"; +import _IoMicB from "./mic-b"; +import _IoMicC from "./mic-c"; +import _IoMinusCircled from "./minus-circled"; +import _IoMinusRound from "./minus-round"; +import _IoMinus from "./minus"; +import _IoModelS from "./model-s"; +import _IoMonitor from "./monitor"; +import _IoMore from "./more"; +import _IoMouse from "./mouse"; +import _IoMusicNote from "./music-note"; +import _IoNaviconRound from "./navicon-round"; +import _IoNavicon from "./navicon"; +import _IoNavigate from "./navigate"; +import _IoNetwork from "./network"; +import _IoNoSmoking from "./no-smoking"; +import _IoNuclear from "./nuclear"; +import _IoOutlet from "./outlet"; +import _IoPaintbrush from "./paintbrush"; +import _IoPaintbucket from "./paintbucket"; +import _IoPaperAirplane from "./paper-airplane"; +import _IoPaperclip from "./paperclip"; +import _IoPause from "./pause"; +import _IoPersonAdd from "./person-add"; +import _IoPersonStalker from "./person-stalker"; +import _IoPerson from "./person"; +import _IoPieGraph from "./pie-graph"; +import _IoPin from "./pin"; +import _IoPinpoint from "./pinpoint"; +import _IoPizza from "./pizza"; +import _IoPlane from "./plane"; +import _IoPlanet from "./planet"; +import _IoPlay from "./play"; +import _IoPlaystation from "./playstation"; +import _IoPlusCircled from "./plus-circled"; +import _IoPlusRound from "./plus-round"; +import _IoPlus from "./plus"; +import _IoPodium from "./podium"; +import _IoPound from "./pound"; +import _IoPower from "./power"; +import _IoPricetag from "./pricetag"; +import _IoPricetags from "./pricetags"; +import _IoPrinter from "./printer"; +import _IoPullRequest from "./pull-request"; +import _IoQrScanner from "./qr-scanner"; +import _IoQuote from "./quote"; +import _IoRadioWaves from "./radio-waves"; +import _IoRecord from "./record"; +import _IoRefresh from "./refresh"; +import _IoReplyAll from "./reply-all"; +import _IoReply from "./reply"; +import _IoRibbonA from "./ribbon-a"; +import _IoRibbonB from "./ribbon-b"; +import _IoSadOutline from "./sad-outline"; +import _IoSad from "./sad"; +import _IoScissors from "./scissors"; +import _IoSearch from "./search"; +import _IoSettings from "./settings"; +import _IoShare from "./share"; +import _IoShuffle from "./shuffle"; +import _IoSkipBackward from "./skip-backward"; +import _IoSkipForward from "./skip-forward"; +import _IoSocialAndroidOutline from "./social-android-outline"; +import _IoSocialAndroid from "./social-android"; +import _IoSocialAngularOutline from "./social-angular-outline"; +import _IoSocialAngular from "./social-angular"; +import _IoSocialAppleOutline from "./social-apple-outline"; +import _IoSocialApple from "./social-apple"; +import _IoSocialBitcoinOutline from "./social-bitcoin-outline"; +import _IoSocialBitcoin from "./social-bitcoin"; +import _IoSocialBufferOutline from "./social-buffer-outline"; +import _IoSocialBuffer from "./social-buffer"; +import _IoSocialChromeOutline from "./social-chrome-outline"; +import _IoSocialChrome from "./social-chrome"; +import _IoSocialCodepenOutline from "./social-codepen-outline"; +import _IoSocialCodepen from "./social-codepen"; +import _IoSocialCss3Outline from "./social-css3-outline"; +import _IoSocialCss3 from "./social-css3"; +import _IoSocialDesignernewsOutline from "./social-designernews-outline"; +import _IoSocialDesignernews from "./social-designernews"; +import _IoSocialDribbbleOutline from "./social-dribbble-outline"; +import _IoSocialDribbble from "./social-dribbble"; +import _IoSocialDropboxOutline from "./social-dropbox-outline"; +import _IoSocialDropbox from "./social-dropbox"; +import _IoSocialEuroOutline from "./social-euro-outline"; +import _IoSocialEuro from "./social-euro"; +import _IoSocialFacebookOutline from "./social-facebook-outline"; +import _IoSocialFacebook from "./social-facebook"; +import _IoSocialFoursquareOutline from "./social-foursquare-outline"; +import _IoSocialFoursquare from "./social-foursquare"; +import _IoSocialFreebsdDevil from "./social-freebsd-devil"; +import _IoSocialGithubOutline from "./social-github-outline"; +import _IoSocialGithub from "./social-github"; +import _IoSocialGoogleOutline from "./social-google-outline"; +import _IoSocialGoogle from "./social-google"; +import _IoSocialGoogleplusOutline from "./social-googleplus-outline"; +import _IoSocialGoogleplus from "./social-googleplus"; +import _IoSocialHackernewsOutline from "./social-hackernews-outline"; +import _IoSocialHackernews from "./social-hackernews"; +import _IoSocialHtml5Outline from "./social-html5-outline"; +import _IoSocialHtml5 from "./social-html5"; +import _IoSocialInstagramOutline from "./social-instagram-outline"; +import _IoSocialInstagram from "./social-instagram"; +import _IoSocialJavascriptOutline from "./social-javascript-outline"; +import _IoSocialJavascript from "./social-javascript"; +import _IoSocialLinkedinOutline from "./social-linkedin-outline"; +import _IoSocialLinkedin from "./social-linkedin"; +import _IoSocialMarkdown from "./social-markdown"; +import _IoSocialNodejs from "./social-nodejs"; +import _IoSocialOctocat from "./social-octocat"; +import _IoSocialPinterestOutline from "./social-pinterest-outline"; +import _IoSocialPinterest from "./social-pinterest"; +import _IoSocialPython from "./social-python"; +import _IoSocialRedditOutline from "./social-reddit-outline"; +import _IoSocialReddit from "./social-reddit"; +import _IoSocialRssOutline from "./social-rss-outline"; +import _IoSocialRss from "./social-rss"; +import _IoSocialSass from "./social-sass"; +import _IoSocialSkypeOutline from "./social-skype-outline"; +import _IoSocialSkype from "./social-skype"; +import _IoSocialSnapchatOutline from "./social-snapchat-outline"; +import _IoSocialSnapchat from "./social-snapchat"; +import _IoSocialTumblrOutline from "./social-tumblr-outline"; +import _IoSocialTumblr from "./social-tumblr"; +import _IoSocialTux from "./social-tux"; +import _IoSocialTwitchOutline from "./social-twitch-outline"; +import _IoSocialTwitch from "./social-twitch"; +import _IoSocialTwitterOutline from "./social-twitter-outline"; +import _IoSocialTwitter from "./social-twitter"; +import _IoSocialUsdOutline from "./social-usd-outline"; +import _IoSocialUsd from "./social-usd"; +import _IoSocialVimeoOutline from "./social-vimeo-outline"; +import _IoSocialVimeo from "./social-vimeo"; +import _IoSocialWhatsappOutline from "./social-whatsapp-outline"; +import _IoSocialWhatsapp from "./social-whatsapp"; +import _IoSocialWindowsOutline from "./social-windows-outline"; +import _IoSocialWindows from "./social-windows"; +import _IoSocialWordpressOutline from "./social-wordpress-outline"; +import _IoSocialWordpress from "./social-wordpress"; +import _IoSocialYahooOutline from "./social-yahoo-outline"; +import _IoSocialYahoo from "./social-yahoo"; +import _IoSocialYenOutline from "./social-yen-outline"; +import _IoSocialYen from "./social-yen"; +import _IoSocialYoutubeOutline from "./social-youtube-outline"; +import _IoSocialYoutube from "./social-youtube"; +import _IoSoupCanOutline from "./soup-can-outline"; +import _IoSoupCan from "./soup-can"; +import _IoSpeakerphone from "./speakerphone"; +import _IoSpeedometer from "./speedometer"; +import _IoSpoon from "./spoon"; +import _IoStar from "./star"; +import _IoStatsBars from "./stats-bars"; +import _IoSteam from "./steam"; +import _IoStop from "./stop"; +import _IoThermometer from "./thermometer"; +import _IoThumbsdown from "./thumbsdown"; +import _IoThumbsup from "./thumbsup"; +import _IoToggleFilled from "./toggle-filled"; +import _IoToggle from "./toggle"; +import _IoTransgender from "./transgender"; +import _IoTrashA from "./trash-a"; +import _IoTrashB from "./trash-b"; +import _IoTrophy from "./trophy"; +import _IoTshirtOutline from "./tshirt-outline"; +import _IoTshirt from "./tshirt"; +import _IoUmbrella from "./umbrella"; +import _IoUniversity from "./university"; +import _IoUnlocked from "./unlocked"; +import _IoUpload from "./upload"; +import _IoUsb from "./usb"; +import _IoVideocamera from "./videocamera"; +import _IoVolumeHigh from "./volume-high"; +import _IoVolumeLow from "./volume-low"; +import _IoVolumeMedium from "./volume-medium"; +import _IoVolumeMute from "./volume-mute"; +import _IoWand from "./wand"; +import _IoWaterdrop from "./waterdrop"; +import _IoWifi from "./wifi"; +import _IoWineglass from "./wineglass"; +import _IoWoman from "./woman"; +import _IoWrench from "./wrench"; +import _IoXbox from "./xbox"; +export var IoAlertCircled: typeof _IoAlertCircled; +export var IoAlert: typeof _IoAlert; +export var IoAndroidAddCircle: typeof _IoAndroidAddCircle; +export var IoAndroidAdd: typeof _IoAndroidAdd; +export var IoAndroidAlarmClock: typeof _IoAndroidAlarmClock; +export var IoAndroidAlert: typeof _IoAndroidAlert; +export var IoAndroidApps: typeof _IoAndroidApps; +export var IoAndroidArchive: typeof _IoAndroidArchive; +export var IoAndroidArrowBack: typeof _IoAndroidArrowBack; +export var IoAndroidArrowDown: typeof _IoAndroidArrowDown; +export var IoAndroidArrowDropdownCircle: typeof _IoAndroidArrowDropdownCircle; +export var IoAndroidArrowDropdown: typeof _IoAndroidArrowDropdown; +export var IoAndroidArrowDropleftCircle: typeof _IoAndroidArrowDropleftCircle; +export var IoAndroidArrowDropleft: typeof _IoAndroidArrowDropleft; +export var IoAndroidArrowDroprightCircle: typeof _IoAndroidArrowDroprightCircle; +export var IoAndroidArrowDropright: typeof _IoAndroidArrowDropright; +export var IoAndroidArrowDropupCircle: typeof _IoAndroidArrowDropupCircle; +export var IoAndroidArrowDropup: typeof _IoAndroidArrowDropup; +export var IoAndroidArrowForward: typeof _IoAndroidArrowForward; +export var IoAndroidArrowUp: typeof _IoAndroidArrowUp; +export var IoAndroidAttach: typeof _IoAndroidAttach; +export var IoAndroidBar: typeof _IoAndroidBar; +export var IoAndroidBicycle: typeof _IoAndroidBicycle; +export var IoAndroidBoat: typeof _IoAndroidBoat; +export var IoAndroidBookmark: typeof _IoAndroidBookmark; +export var IoAndroidBulb: typeof _IoAndroidBulb; +export var IoAndroidBus: typeof _IoAndroidBus; +export var IoAndroidCalendar: typeof _IoAndroidCalendar; +export var IoAndroidCall: typeof _IoAndroidCall; +export var IoAndroidCamera: typeof _IoAndroidCamera; +export var IoAndroidCancel: typeof _IoAndroidCancel; +export var IoAndroidCar: typeof _IoAndroidCar; +export var IoAndroidCart: typeof _IoAndroidCart; +export var IoAndroidChat: typeof _IoAndroidChat; +export var IoAndroidCheckboxBlank: typeof _IoAndroidCheckboxBlank; +export var IoAndroidCheckboxOutlineBlank: typeof _IoAndroidCheckboxOutlineBlank; +export var IoAndroidCheckboxOutline: typeof _IoAndroidCheckboxOutline; +export var IoAndroidCheckbox: typeof _IoAndroidCheckbox; +export var IoAndroidCheckmarkCircle: typeof _IoAndroidCheckmarkCircle; +export var IoAndroidClipboard: typeof _IoAndroidClipboard; +export var IoAndroidClose: typeof _IoAndroidClose; +export var IoAndroidCloudCircle: typeof _IoAndroidCloudCircle; +export var IoAndroidCloudDone: typeof _IoAndroidCloudDone; +export var IoAndroidCloudOutline: typeof _IoAndroidCloudOutline; +export var IoAndroidCloud: typeof _IoAndroidCloud; +export var IoAndroidColorPalette: typeof _IoAndroidColorPalette; +export var IoAndroidCompass: typeof _IoAndroidCompass; +export var IoAndroidContact: typeof _IoAndroidContact; +export var IoAndroidContacts: typeof _IoAndroidContacts; +export var IoAndroidContract: typeof _IoAndroidContract; +export var IoAndroidCreate: typeof _IoAndroidCreate; +export var IoAndroidDelete: typeof _IoAndroidDelete; +export var IoAndroidDesktop: typeof _IoAndroidDesktop; +export var IoAndroidDocument: typeof _IoAndroidDocument; +export var IoAndroidDoneAll: typeof _IoAndroidDoneAll; +export var IoAndroidDone: typeof _IoAndroidDone; +export var IoAndroidDownload: typeof _IoAndroidDownload; +export var IoAndroidDrafts: typeof _IoAndroidDrafts; +export var IoAndroidExit: typeof _IoAndroidExit; +export var IoAndroidExpand: typeof _IoAndroidExpand; +export var IoAndroidFavoriteOutline: typeof _IoAndroidFavoriteOutline; +export var IoAndroidFavorite: typeof _IoAndroidFavorite; +export var IoAndroidFilm: typeof _IoAndroidFilm; +export var IoAndroidFolderOpen: typeof _IoAndroidFolderOpen; +export var IoAndroidFolder: typeof _IoAndroidFolder; +export var IoAndroidFunnel: typeof _IoAndroidFunnel; +export var IoAndroidGlobe: typeof _IoAndroidGlobe; +export var IoAndroidHand: typeof _IoAndroidHand; +export var IoAndroidHangout: typeof _IoAndroidHangout; +export var IoAndroidHappy: typeof _IoAndroidHappy; +export var IoAndroidHome: typeof _IoAndroidHome; +export var IoAndroidImage: typeof _IoAndroidImage; +export var IoAndroidLaptop: typeof _IoAndroidLaptop; +export var IoAndroidList: typeof _IoAndroidList; +export var IoAndroidLocate: typeof _IoAndroidLocate; +export var IoAndroidLock: typeof _IoAndroidLock; +export var IoAndroidMail: typeof _IoAndroidMail; +export var IoAndroidMap: typeof _IoAndroidMap; +export var IoAndroidMenu: typeof _IoAndroidMenu; +export var IoAndroidMicrophoneOff: typeof _IoAndroidMicrophoneOff; +export var IoAndroidMicrophone: typeof _IoAndroidMicrophone; +export var IoAndroidMoreHorizontal: typeof _IoAndroidMoreHorizontal; +export var IoAndroidMoreVertical: typeof _IoAndroidMoreVertical; +export var IoAndroidNavigate: typeof _IoAndroidNavigate; +export var IoAndroidNotificationsNone: typeof _IoAndroidNotificationsNone; +export var IoAndroidNotificationsOff: typeof _IoAndroidNotificationsOff; +export var IoAndroidNotifications: typeof _IoAndroidNotifications; +export var IoAndroidOpen: typeof _IoAndroidOpen; +export var IoAndroidOptions: typeof _IoAndroidOptions; +export var IoAndroidPeople: typeof _IoAndroidPeople; +export var IoAndroidPersonAdd: typeof _IoAndroidPersonAdd; +export var IoAndroidPerson: typeof _IoAndroidPerson; +export var IoAndroidPhoneLandscape: typeof _IoAndroidPhoneLandscape; +export var IoAndroidPhonePortrait: typeof _IoAndroidPhonePortrait; +export var IoAndroidPin: typeof _IoAndroidPin; +export var IoAndroidPlane: typeof _IoAndroidPlane; +export var IoAndroidPlaystore: typeof _IoAndroidPlaystore; +export var IoAndroidPrint: typeof _IoAndroidPrint; +export var IoAndroidRadioButtonOff: typeof _IoAndroidRadioButtonOff; +export var IoAndroidRadioButtonOn: typeof _IoAndroidRadioButtonOn; +export var IoAndroidRefresh: typeof _IoAndroidRefresh; +export var IoAndroidRemoveCircle: typeof _IoAndroidRemoveCircle; +export var IoAndroidRemove: typeof _IoAndroidRemove; +export var IoAndroidRestaurant: typeof _IoAndroidRestaurant; +export var IoAndroidSad: typeof _IoAndroidSad; +export var IoAndroidSearch: typeof _IoAndroidSearch; +export var IoAndroidSend: typeof _IoAndroidSend; +export var IoAndroidSettings: typeof _IoAndroidSettings; +export var IoAndroidShareAlt: typeof _IoAndroidShareAlt; +export var IoAndroidShare: typeof _IoAndroidShare; +export var IoAndroidStarHalf: typeof _IoAndroidStarHalf; +export var IoAndroidStarOutline: typeof _IoAndroidStarOutline; +export var IoAndroidStar: typeof _IoAndroidStar; +export var IoAndroidStopwatch: typeof _IoAndroidStopwatch; +export var IoAndroidSubway: typeof _IoAndroidSubway; +export var IoAndroidSunny: typeof _IoAndroidSunny; +export var IoAndroidSync: typeof _IoAndroidSync; +export var IoAndroidTextsms: typeof _IoAndroidTextsms; +export var IoAndroidTime: typeof _IoAndroidTime; +export var IoAndroidTrain: typeof _IoAndroidTrain; +export var IoAndroidUnlock: typeof _IoAndroidUnlock; +export var IoAndroidUpload: typeof _IoAndroidUpload; +export var IoAndroidVolumeDown: typeof _IoAndroidVolumeDown; +export var IoAndroidVolumeMute: typeof _IoAndroidVolumeMute; +export var IoAndroidVolumeOff: typeof _IoAndroidVolumeOff; +export var IoAndroidVolumeUp: typeof _IoAndroidVolumeUp; +export var IoAndroidWalk: typeof _IoAndroidWalk; +export var IoAndroidWarning: typeof _IoAndroidWarning; +export var IoAndroidWatch: typeof _IoAndroidWatch; +export var IoAndroidWifi: typeof _IoAndroidWifi; +export var IoAperture: typeof _IoAperture; +export var IoArchive: typeof _IoArchive; +export var IoArrowDownA: typeof _IoArrowDownA; +export var IoArrowDownB: typeof _IoArrowDownB; +export var IoArrowDownC: typeof _IoArrowDownC; +export var IoArrowExpand: typeof _IoArrowExpand; +export var IoArrowGraphDownLeft: typeof _IoArrowGraphDownLeft; +export var IoArrowGraphDownRight: typeof _IoArrowGraphDownRight; +export var IoArrowGraphUpLeft: typeof _IoArrowGraphUpLeft; +export var IoArrowGraphUpRight: typeof _IoArrowGraphUpRight; +export var IoArrowLeftA: typeof _IoArrowLeftA; +export var IoArrowLeftB: typeof _IoArrowLeftB; +export var IoArrowLeftC: typeof _IoArrowLeftC; +export var IoArrowMove: typeof _IoArrowMove; +export var IoArrowResize: typeof _IoArrowResize; +export var IoArrowReturnLeft: typeof _IoArrowReturnLeft; +export var IoArrowReturnRight: typeof _IoArrowReturnRight; +export var IoArrowRightA: typeof _IoArrowRightA; +export var IoArrowRightB: typeof _IoArrowRightB; +export var IoArrowRightC: typeof _IoArrowRightC; +export var IoArrowShrink: typeof _IoArrowShrink; +export var IoArrowSwap: typeof _IoArrowSwap; +export var IoArrowUpA: typeof _IoArrowUpA; +export var IoArrowUpB: typeof _IoArrowUpB; +export var IoArrowUpC: typeof _IoArrowUpC; +export var IoAsterisk: typeof _IoAsterisk; +export var IoAt: typeof _IoAt; +export var IoBackspaceOutline: typeof _IoBackspaceOutline; +export var IoBackspace: typeof _IoBackspace; +export var IoBag: typeof _IoBag; +export var IoBatteryCharging: typeof _IoBatteryCharging; +export var IoBatteryEmpty: typeof _IoBatteryEmpty; +export var IoBatteryFull: typeof _IoBatteryFull; +export var IoBatteryHalf: typeof _IoBatteryHalf; +export var IoBatteryLow: typeof _IoBatteryLow; +export var IoBeaker: typeof _IoBeaker; +export var IoBeer: typeof _IoBeer; +export var IoBluetooth: typeof _IoBluetooth; +export var IoBonfire: typeof _IoBonfire; +export var IoBookmark: typeof _IoBookmark; +export var IoBowtie: typeof _IoBowtie; +export var IoBriefcase: typeof _IoBriefcase; +export var IoBug: typeof _IoBug; +export var IoCalculator: typeof _IoCalculator; +export var IoCalendar: typeof _IoCalendar; +export var IoCamera: typeof _IoCamera; +export var IoCard: typeof _IoCard; +export var IoCash: typeof _IoCash; +export var IoChatboxWorking: typeof _IoChatboxWorking; +export var IoChatbox: typeof _IoChatbox; +export var IoChatboxes: typeof _IoChatboxes; +export var IoChatbubbleWorking: typeof _IoChatbubbleWorking; +export var IoChatbubble: typeof _IoChatbubble; +export var IoChatbubbles: typeof _IoChatbubbles; +export var IoCheckmarkCircled: typeof _IoCheckmarkCircled; +export var IoCheckmarkRound: typeof _IoCheckmarkRound; +export var IoCheckmark: typeof _IoCheckmark; +export var IoChevronDown: typeof _IoChevronDown; +export var IoChevronLeft: typeof _IoChevronLeft; +export var IoChevronRight: typeof _IoChevronRight; +export var IoChevronUp: typeof _IoChevronUp; +export var IoClipboard: typeof _IoClipboard; +export var IoClock: typeof _IoClock; +export var IoCloseCircled: typeof _IoCloseCircled; +export var IoCloseRound: typeof _IoCloseRound; +export var IoClose: typeof _IoClose; +export var IoClosedCaptioning: typeof _IoClosedCaptioning; +export var IoCloud: typeof _IoCloud; +export var IoCodeDownload: typeof _IoCodeDownload; +export var IoCodeWorking: typeof _IoCodeWorking; +export var IoCode: typeof _IoCode; +export var IoCoffee: typeof _IoCoffee; +export var IoCompass: typeof _IoCompass; +export var IoCompose: typeof _IoCompose; +export var IoConnectbars: typeof _IoConnectbars; +export var IoContrast: typeof _IoContrast; +export var IoCrop: typeof _IoCrop; +export var IoCube: typeof _IoCube; +export var IoDisc: typeof _IoDisc; +export var IoDocumentText: typeof _IoDocumentText; +export var IoDocument: typeof _IoDocument; +export var IoDrag: typeof _IoDrag; +export var IoEarth: typeof _IoEarth; +export var IoEasel: typeof _IoEasel; +export var IoEdit: typeof _IoEdit; +export var IoEgg: typeof _IoEgg; +export var IoEject: typeof _IoEject; +export var IoEmailUnread: typeof _IoEmailUnread; +export var IoEmail: typeof _IoEmail; +export var IoErlenmeyerFlaskBubbles: typeof _IoErlenmeyerFlaskBubbles; +export var IoErlenmeyerFlask: typeof _IoErlenmeyerFlask; +export var IoEyeDisabled: typeof _IoEyeDisabled; +export var IoEye: typeof _IoEye; +export var IoFemale: typeof _IoFemale; +export var IoFiling: typeof _IoFiling; +export var IoFilmMarker: typeof _IoFilmMarker; +export var IoFireball: typeof _IoFireball; +export var IoFlag: typeof _IoFlag; +export var IoFlame: typeof _IoFlame; +export var IoFlashOff: typeof _IoFlashOff; +export var IoFlash: typeof _IoFlash; +export var IoFolder: typeof _IoFolder; +export var IoForkRepo: typeof _IoForkRepo; +export var IoFork: typeof _IoFork; +export var IoForward: typeof _IoForward; +export var IoFunnel: typeof _IoFunnel; +export var IoGearA: typeof _IoGearA; +export var IoGearB: typeof _IoGearB; +export var IoGrid: typeof _IoGrid; +export var IoHammer: typeof _IoHammer; +export var IoHappyOutline: typeof _IoHappyOutline; +export var IoHappy: typeof _IoHappy; +export var IoHeadphone: typeof _IoHeadphone; +export var IoHeartBroken: typeof _IoHeartBroken; +export var IoHeart: typeof _IoHeart; +export var IoHelpBuoy: typeof _IoHelpBuoy; +export var IoHelpCircled: typeof _IoHelpCircled; +export var IoHelp: typeof _IoHelp; +export var IoHome: typeof _IoHome; +export var IoIcecream: typeof _IoIcecream; +export var IoImage: typeof _IoImage; +export var IoImages: typeof _IoImages; +export var IoInformatcircled: typeof _IoInformatcircled; +export var IoInformation: typeof _IoInformation; +export var IoIonic: typeof _IoIonic; +export var IoIosAlarmOutline: typeof _IoIosAlarmOutline; +export var IoIosAlarm: typeof _IoIosAlarm; +export var IoIosAlbumsOutline: typeof _IoIosAlbumsOutline; +export var IoIosAlbums: typeof _IoIosAlbums; +export var IoIosAmericanfootballOutline: typeof _IoIosAmericanfootballOutline; +export var IoIosAmericanfootball: typeof _IoIosAmericanfootball; +export var IoIosAnalyticsOutline: typeof _IoIosAnalyticsOutline; +export var IoIosAnalytics: typeof _IoIosAnalytics; +export var IoIosArrowBack: typeof _IoIosArrowBack; +export var IoIosArrowDown: typeof _IoIosArrowDown; +export var IoIosArrowForward: typeof _IoIosArrowForward; +export var IoIosArrowLeft: typeof _IoIosArrowLeft; +export var IoIosArrowRight: typeof _IoIosArrowRight; +export var IoIosArrowThinDown: typeof _IoIosArrowThinDown; +export var IoIosArrowThinLeft: typeof _IoIosArrowThinLeft; +export var IoIosArrowThinRight: typeof _IoIosArrowThinRight; +export var IoIosArrowThinUp: typeof _IoIosArrowThinUp; +export var IoIosArrowUp: typeof _IoIosArrowUp; +export var IoIosAtOutline: typeof _IoIosAtOutline; +export var IoIosAt: typeof _IoIosAt; +export var IoIosBarcodeOutline: typeof _IoIosBarcodeOutline; +export var IoIosBarcode: typeof _IoIosBarcode; +export var IoIosBaseballOutline: typeof _IoIosBaseballOutline; +export var IoIosBaseball: typeof _IoIosBaseball; +export var IoIosBasketballOutline: typeof _IoIosBasketballOutline; +export var IoIosBasketball: typeof _IoIosBasketball; +export var IoIosBellOutline: typeof _IoIosBellOutline; +export var IoIosBell: typeof _IoIosBell; +export var IoIosBodyOutline: typeof _IoIosBodyOutline; +export var IoIosBody: typeof _IoIosBody; +export var IoIosBoltOutline: typeof _IoIosBoltOutline; +export var IoIosBolt: typeof _IoIosBolt; +export var IoIosBookOutline: typeof _IoIosBookOutline; +export var IoIosBook: typeof _IoIosBook; +export var IoIosBookmarksOutline: typeof _IoIosBookmarksOutline; +export var IoIosBookmarks: typeof _IoIosBookmarks; +export var IoIosBoxOutline: typeof _IoIosBoxOutline; +export var IoIosBox: typeof _IoIosBox; +export var IoIosBriefcaseOutline: typeof _IoIosBriefcaseOutline; +export var IoIosBriefcase: typeof _IoIosBriefcase; +export var IoIosBrowsersOutline: typeof _IoIosBrowsersOutline; +export var IoIosBrowsers: typeof _IoIosBrowsers; +export var IoIosCalculatorOutline: typeof _IoIosCalculatorOutline; +export var IoIosCalculator: typeof _IoIosCalculator; +export var IoIosCalendarOutline: typeof _IoIosCalendarOutline; +export var IoIosCalendar: typeof _IoIosCalendar; +export var IoIosCameraOutline: typeof _IoIosCameraOutline; +export var IoIosCamera: typeof _IoIosCamera; +export var IoIosCartOutline: typeof _IoIosCartOutline; +export var IoIosCart: typeof _IoIosCart; +export var IoIosChatboxesOutline: typeof _IoIosChatboxesOutline; +export var IoIosChatboxes: typeof _IoIosChatboxes; +export var IoIosChatbubbleOutline: typeof _IoIosChatbubbleOutline; +export var IoIosChatbubble: typeof _IoIosChatbubble; +export var IoIosCheckmarkEmpty: typeof _IoIosCheckmarkEmpty; +export var IoIosCheckmarkOutline: typeof _IoIosCheckmarkOutline; +export var IoIosCheckmark: typeof _IoIosCheckmark; +export var IoIosCircleFilled: typeof _IoIosCircleFilled; +export var IoIosCircleOutline: typeof _IoIosCircleOutline; +export var IoIosClockOutline: typeof _IoIosClockOutline; +export var IoIosClock: typeof _IoIosClock; +export var IoIosCloseEmpty: typeof _IoIosCloseEmpty; +export var IoIosCloseOutline: typeof _IoIosCloseOutline; +export var IoIosClose: typeof _IoIosClose; +export var IoIosCloudDownloadOutline: typeof _IoIosCloudDownloadOutline; +export var IoIosCloudDownload: typeof _IoIosCloudDownload; +export var IoIosCloudOutline: typeof _IoIosCloudOutline; +export var IoIosCloudUploadOutline: typeof _IoIosCloudUploadOutline; +export var IoIosCloudUpload: typeof _IoIosCloudUpload; +export var IoIosCloud: typeof _IoIosCloud; +export var IoIosCloudyNightOutline: typeof _IoIosCloudyNightOutline; +export var IoIosCloudyNight: typeof _IoIosCloudyNight; +export var IoIosCloudyOutline: typeof _IoIosCloudyOutline; +export var IoIosCloudy: typeof _IoIosCloudy; +export var IoIosCogOutline: typeof _IoIosCogOutline; +export var IoIosCog: typeof _IoIosCog; +export var IoIosColorFilterOutline: typeof _IoIosColorFilterOutline; +export var IoIosColorFilter: typeof _IoIosColorFilter; +export var IoIosColorWandOutline: typeof _IoIosColorWandOutline; +export var IoIosColorWand: typeof _IoIosColorWand; +export var IoIosComposeOutline: typeof _IoIosComposeOutline; +export var IoIosCompose: typeof _IoIosCompose; +export var IoIosContactOutline: typeof _IoIosContactOutline; +export var IoIosContact: typeof _IoIosContact; +export var IoIosCopyOutline: typeof _IoIosCopyOutline; +export var IoIosCopy: typeof _IoIosCopy; +export var IoIosCropStrong: typeof _IoIosCropStrong; +export var IoIosCrop: typeof _IoIosCrop; +export var IoIosDownloadOutline: typeof _IoIosDownloadOutline; +export var IoIosDownload: typeof _IoIosDownload; +export var IoIosDrag: typeof _IoIosDrag; +export var IoIosEmailOutline: typeof _IoIosEmailOutline; +export var IoIosEmail: typeof _IoIosEmail; +export var IoIosEyeOutline: typeof _IoIosEyeOutline; +export var IoIosEye: typeof _IoIosEye; +export var IoIosFastforwardOutline: typeof _IoIosFastforwardOutline; +export var IoIosFastforward: typeof _IoIosFastforward; +export var IoIosFilingOutline: typeof _IoIosFilingOutline; +export var IoIosFiling: typeof _IoIosFiling; +export var IoIosFilmOutline: typeof _IoIosFilmOutline; +export var IoIosFilm: typeof _IoIosFilm; +export var IoIosFlagOutline: typeof _IoIosFlagOutline; +export var IoIosFlag: typeof _IoIosFlag; +export var IoIosFlameOutline: typeof _IoIosFlameOutline; +export var IoIosFlame: typeof _IoIosFlame; +export var IoIosFlaskOutline: typeof _IoIosFlaskOutline; +export var IoIosFlask: typeof _IoIosFlask; +export var IoIosFlowerOutline: typeof _IoIosFlowerOutline; +export var IoIosFlower: typeof _IoIosFlower; +export var IoIosFolderOutline: typeof _IoIosFolderOutline; +export var IoIosFolder: typeof _IoIosFolder; +export var IoIosFootballOutline: typeof _IoIosFootballOutline; +export var IoIosFootball: typeof _IoIosFootball; +export var IoIosGameControllerAOutline: typeof _IoIosGameControllerAOutline; +export var IoIosGameControllerA: typeof _IoIosGameControllerA; +export var IoIosGameControllerBOutline: typeof _IoIosGameControllerBOutline; +export var IoIosGameControllerB: typeof _IoIosGameControllerB; +export var IoIosGearOutline: typeof _IoIosGearOutline; +export var IoIosGear: typeof _IoIosGear; +export var IoIosGlassesOutline: typeof _IoIosGlassesOutline; +export var IoIosGlasses: typeof _IoIosGlasses; +export var IoIosGridViewOutline: typeof _IoIosGridViewOutline; +export var IoIosGridView: typeof _IoIosGridView; +export var IoIosHeartOutline: typeof _IoIosHeartOutline; +export var IoIosHeart: typeof _IoIosHeart; +export var IoIosHelpEmpty: typeof _IoIosHelpEmpty; +export var IoIosHelpOutline: typeof _IoIosHelpOutline; +export var IoIosHelp: typeof _IoIosHelp; +export var IoIosHomeOutline: typeof _IoIosHomeOutline; +export var IoIosHome: typeof _IoIosHome; +export var IoIosInfiniteOutline: typeof _IoIosInfiniteOutline; +export var IoIosInfinite: typeof _IoIosInfinite; +export var IoIosInformatempty: typeof _IoIosInformatempty; +export var IoIosInformation: typeof _IoIosInformation; +export var IoIosInformatoutline: typeof _IoIosInformatoutline; +export var IoIosIonicOutline: typeof _IoIosIonicOutline; +export var IoIosKeypadOutline: typeof _IoIosKeypadOutline; +export var IoIosKeypad: typeof _IoIosKeypad; +export var IoIosLightbulbOutline: typeof _IoIosLightbulbOutline; +export var IoIosLightbulb: typeof _IoIosLightbulb; +export var IoIosListOutline: typeof _IoIosListOutline; +export var IoIosList: typeof _IoIosList; +export var IoIosLocation: typeof _IoIosLocation; +export var IoIosLocatoutline: typeof _IoIosLocatoutline; +export var IoIosLockedOutline: typeof _IoIosLockedOutline; +export var IoIosLocked: typeof _IoIosLocked; +export var IoIosLoopStrong: typeof _IoIosLoopStrong; +export var IoIosLoop: typeof _IoIosLoop; +export var IoIosMedicalOutline: typeof _IoIosMedicalOutline; +export var IoIosMedical: typeof _IoIosMedical; +export var IoIosMedkitOutline: typeof _IoIosMedkitOutline; +export var IoIosMedkit: typeof _IoIosMedkit; +export var IoIosMicOff: typeof _IoIosMicOff; +export var IoIosMicOutline: typeof _IoIosMicOutline; +export var IoIosMic: typeof _IoIosMic; +export var IoIosMinusEmpty: typeof _IoIosMinusEmpty; +export var IoIosMinusOutline: typeof _IoIosMinusOutline; +export var IoIosMinus: typeof _IoIosMinus; +export var IoIosMonitorOutline: typeof _IoIosMonitorOutline; +export var IoIosMonitor: typeof _IoIosMonitor; +export var IoIosMoonOutline: typeof _IoIosMoonOutline; +export var IoIosMoon: typeof _IoIosMoon; +export var IoIosMoreOutline: typeof _IoIosMoreOutline; +export var IoIosMore: typeof _IoIosMore; +export var IoIosMusicalNote: typeof _IoIosMusicalNote; +export var IoIosMusicalNotes: typeof _IoIosMusicalNotes; +export var IoIosNavigateOutline: typeof _IoIosNavigateOutline; +export var IoIosNavigate: typeof _IoIosNavigate; +export var IoIosNutrition: typeof _IoIosNutrition; +export var IoIosNutritoutline: typeof _IoIosNutritoutline; +export var IoIosPaperOutline: typeof _IoIosPaperOutline; +export var IoIosPaper: typeof _IoIosPaper; +export var IoIosPaperplaneOutline: typeof _IoIosPaperplaneOutline; +export var IoIosPaperplane: typeof _IoIosPaperplane; +export var IoIosPartlysunnyOutline: typeof _IoIosPartlysunnyOutline; +export var IoIosPartlysunny: typeof _IoIosPartlysunny; +export var IoIosPauseOutline: typeof _IoIosPauseOutline; +export var IoIosPause: typeof _IoIosPause; +export var IoIosPawOutline: typeof _IoIosPawOutline; +export var IoIosPaw: typeof _IoIosPaw; +export var IoIosPeopleOutline: typeof _IoIosPeopleOutline; +export var IoIosPeople: typeof _IoIosPeople; +export var IoIosPersonOutline: typeof _IoIosPersonOutline; +export var IoIosPerson: typeof _IoIosPerson; +export var IoIosPersonaddOutline: typeof _IoIosPersonaddOutline; +export var IoIosPersonadd: typeof _IoIosPersonadd; +export var IoIosPhotosOutline: typeof _IoIosPhotosOutline; +export var IoIosPhotos: typeof _IoIosPhotos; +export var IoIosPieOutline: typeof _IoIosPieOutline; +export var IoIosPie: typeof _IoIosPie; +export var IoIosPintOutline: typeof _IoIosPintOutline; +export var IoIosPint: typeof _IoIosPint; +export var IoIosPlayOutline: typeof _IoIosPlayOutline; +export var IoIosPlay: typeof _IoIosPlay; +export var IoIosPlusEmpty: typeof _IoIosPlusEmpty; +export var IoIosPlusOutline: typeof _IoIosPlusOutline; +export var IoIosPlus: typeof _IoIosPlus; +export var IoIosPricetagOutline: typeof _IoIosPricetagOutline; +export var IoIosPricetag: typeof _IoIosPricetag; +export var IoIosPricetagsOutline: typeof _IoIosPricetagsOutline; +export var IoIosPricetags: typeof _IoIosPricetags; +export var IoIosPrinterOutline: typeof _IoIosPrinterOutline; +export var IoIosPrinter: typeof _IoIosPrinter; +export var IoIosPulseStrong: typeof _IoIosPulseStrong; +export var IoIosPulse: typeof _IoIosPulse; +export var IoIosRainyOutline: typeof _IoIosRainyOutline; +export var IoIosRainy: typeof _IoIosRainy; +export var IoIosRecordingOutline: typeof _IoIosRecordingOutline; +export var IoIosRecording: typeof _IoIosRecording; +export var IoIosRedoOutline: typeof _IoIosRedoOutline; +export var IoIosRedo: typeof _IoIosRedo; +export var IoIosRefreshEmpty: typeof _IoIosRefreshEmpty; +export var IoIosRefreshOutline: typeof _IoIosRefreshOutline; +export var IoIosRefresh: typeof _IoIosRefresh; +export var IoIosReload: typeof _IoIosReload; +export var IoIosReverseCameraOutline: typeof _IoIosReverseCameraOutline; +export var IoIosReverseCamera: typeof _IoIosReverseCamera; +export var IoIosRewindOutline: typeof _IoIosRewindOutline; +export var IoIosRewind: typeof _IoIosRewind; +export var IoIosRoseOutline: typeof _IoIosRoseOutline; +export var IoIosRose: typeof _IoIosRose; +export var IoIosSearchStrong: typeof _IoIosSearchStrong; +export var IoIosSearch: typeof _IoIosSearch; +export var IoIosSettingsStrong: typeof _IoIosSettingsStrong; +export var IoIosSettings: typeof _IoIosSettings; +export var IoIosShuffleStrong: typeof _IoIosShuffleStrong; +export var IoIosShuffle: typeof _IoIosShuffle; +export var IoIosSkipbackwardOutline: typeof _IoIosSkipbackwardOutline; +export var IoIosSkipbackward: typeof _IoIosSkipbackward; +export var IoIosSkipforwardOutline: typeof _IoIosSkipforwardOutline; +export var IoIosSkipforward: typeof _IoIosSkipforward; +export var IoIosSnowy: typeof _IoIosSnowy; +export var IoIosSpeedometerOutline: typeof _IoIosSpeedometerOutline; +export var IoIosSpeedometer: typeof _IoIosSpeedometer; +export var IoIosStarHalf: typeof _IoIosStarHalf; +export var IoIosStarOutline: typeof _IoIosStarOutline; +export var IoIosStar: typeof _IoIosStar; +export var IoIosStopwatchOutline: typeof _IoIosStopwatchOutline; +export var IoIosStopwatch: typeof _IoIosStopwatch; +export var IoIosSunnyOutline: typeof _IoIosSunnyOutline; +export var IoIosSunny: typeof _IoIosSunny; +export var IoIosTelephoneOutline: typeof _IoIosTelephoneOutline; +export var IoIosTelephone: typeof _IoIosTelephone; +export var IoIosTennisballOutline: typeof _IoIosTennisballOutline; +export var IoIosTennisball: typeof _IoIosTennisball; +export var IoIosThunderstormOutline: typeof _IoIosThunderstormOutline; +export var IoIosThunderstorm: typeof _IoIosThunderstorm; +export var IoIosTimeOutline: typeof _IoIosTimeOutline; +export var IoIosTime: typeof _IoIosTime; +export var IoIosTimerOutline: typeof _IoIosTimerOutline; +export var IoIosTimer: typeof _IoIosTimer; +export var IoIosToggleOutline: typeof _IoIosToggleOutline; +export var IoIosToggle: typeof _IoIosToggle; +export var IoIosTrashOutline: typeof _IoIosTrashOutline; +export var IoIosTrash: typeof _IoIosTrash; +export var IoIosUndoOutline: typeof _IoIosUndoOutline; +export var IoIosUndo: typeof _IoIosUndo; +export var IoIosUnlockedOutline: typeof _IoIosUnlockedOutline; +export var IoIosUnlocked: typeof _IoIosUnlocked; +export var IoIosUploadOutline: typeof _IoIosUploadOutline; +export var IoIosUpload: typeof _IoIosUpload; +export var IoIosVideocamOutline: typeof _IoIosVideocamOutline; +export var IoIosVideocam: typeof _IoIosVideocam; +export var IoIosVolumeHigh: typeof _IoIosVolumeHigh; +export var IoIosVolumeLow: typeof _IoIosVolumeLow; +export var IoIosWineglassOutline: typeof _IoIosWineglassOutline; +export var IoIosWineglass: typeof _IoIosWineglass; +export var IoIosWorldOutline: typeof _IoIosWorldOutline; +export var IoIosWorld: typeof _IoIosWorld; +export var IoIpad: typeof _IoIpad; +export var IoIphone: typeof _IoIphone; +export var IoIpod: typeof _IoIpod; +export var IoJet: typeof _IoJet; +export var IoKey: typeof _IoKey; +export var IoKnife: typeof _IoKnife; +export var IoLaptop: typeof _IoLaptop; +export var IoLeaf: typeof _IoLeaf; +export var IoLevels: typeof _IoLevels; +export var IoLightbulb: typeof _IoLightbulb; +export var IoLink: typeof _IoLink; +export var IoLoadA: typeof _IoLoadA; +export var IoLoadB: typeof _IoLoadB; +export var IoLoadC: typeof _IoLoadC; +export var IoLoadD: typeof _IoLoadD; +export var IoLocation: typeof _IoLocation; +export var IoLockCombination: typeof _IoLockCombination; +export var IoLocked: typeof _IoLocked; +export var IoLogIn: typeof _IoLogIn; +export var IoLogOut: typeof _IoLogOut; +export var IoLoop: typeof _IoLoop; +export var IoMagnet: typeof _IoMagnet; +export var IoMale: typeof _IoMale; +export var IoMan: typeof _IoMan; +export var IoMap: typeof _IoMap; +export var IoMedkit: typeof _IoMedkit; +export var IoMerge: typeof _IoMerge; +export var IoMicA: typeof _IoMicA; +export var IoMicB: typeof _IoMicB; +export var IoMicC: typeof _IoMicC; +export var IoMinusCircled: typeof _IoMinusCircled; +export var IoMinusRound: typeof _IoMinusRound; +export var IoMinus: typeof _IoMinus; +export var IoModelS: typeof _IoModelS; +export var IoMonitor: typeof _IoMonitor; +export var IoMore: typeof _IoMore; +export var IoMouse: typeof _IoMouse; +export var IoMusicNote: typeof _IoMusicNote; +export var IoNaviconRound: typeof _IoNaviconRound; +export var IoNavicon: typeof _IoNavicon; +export var IoNavigate: typeof _IoNavigate; +export var IoNetwork: typeof _IoNetwork; +export var IoNoSmoking: typeof _IoNoSmoking; +export var IoNuclear: typeof _IoNuclear; +export var IoOutlet: typeof _IoOutlet; +export var IoPaintbrush: typeof _IoPaintbrush; +export var IoPaintbucket: typeof _IoPaintbucket; +export var IoPaperAirplane: typeof _IoPaperAirplane; +export var IoPaperclip: typeof _IoPaperclip; +export var IoPause: typeof _IoPause; +export var IoPersonAdd: typeof _IoPersonAdd; +export var IoPersonStalker: typeof _IoPersonStalker; +export var IoPerson: typeof _IoPerson; +export var IoPieGraph: typeof _IoPieGraph; +export var IoPin: typeof _IoPin; +export var IoPinpoint: typeof _IoPinpoint; +export var IoPizza: typeof _IoPizza; +export var IoPlane: typeof _IoPlane; +export var IoPlanet: typeof _IoPlanet; +export var IoPlay: typeof _IoPlay; +export var IoPlaystation: typeof _IoPlaystation; +export var IoPlusCircled: typeof _IoPlusCircled; +export var IoPlusRound: typeof _IoPlusRound; +export var IoPlus: typeof _IoPlus; +export var IoPodium: typeof _IoPodium; +export var IoPound: typeof _IoPound; +export var IoPower: typeof _IoPower; +export var IoPricetag: typeof _IoPricetag; +export var IoPricetags: typeof _IoPricetags; +export var IoPrinter: typeof _IoPrinter; +export var IoPullRequest: typeof _IoPullRequest; +export var IoQrScanner: typeof _IoQrScanner; +export var IoQuote: typeof _IoQuote; +export var IoRadioWaves: typeof _IoRadioWaves; +export var IoRecord: typeof _IoRecord; +export var IoRefresh: typeof _IoRefresh; +export var IoReplyAll: typeof _IoReplyAll; +export var IoReply: typeof _IoReply; +export var IoRibbonA: typeof _IoRibbonA; +export var IoRibbonB: typeof _IoRibbonB; +export var IoSadOutline: typeof _IoSadOutline; +export var IoSad: typeof _IoSad; +export var IoScissors: typeof _IoScissors; +export var IoSearch: typeof _IoSearch; +export var IoSettings: typeof _IoSettings; +export var IoShare: typeof _IoShare; +export var IoShuffle: typeof _IoShuffle; +export var IoSkipBackward: typeof _IoSkipBackward; +export var IoSkipForward: typeof _IoSkipForward; +export var IoSocialAndroidOutline: typeof _IoSocialAndroidOutline; +export var IoSocialAndroid: typeof _IoSocialAndroid; +export var IoSocialAngularOutline: typeof _IoSocialAngularOutline; +export var IoSocialAngular: typeof _IoSocialAngular; +export var IoSocialAppleOutline: typeof _IoSocialAppleOutline; +export var IoSocialApple: typeof _IoSocialApple; +export var IoSocialBitcoinOutline: typeof _IoSocialBitcoinOutline; +export var IoSocialBitcoin: typeof _IoSocialBitcoin; +export var IoSocialBufferOutline: typeof _IoSocialBufferOutline; +export var IoSocialBuffer: typeof _IoSocialBuffer; +export var IoSocialChromeOutline: typeof _IoSocialChromeOutline; +export var IoSocialChrome: typeof _IoSocialChrome; +export var IoSocialCodepenOutline: typeof _IoSocialCodepenOutline; +export var IoSocialCodepen: typeof _IoSocialCodepen; +export var IoSocialCss3Outline: typeof _IoSocialCss3Outline; +export var IoSocialCss3: typeof _IoSocialCss3; +export var IoSocialDesignernewsOutline: typeof _IoSocialDesignernewsOutline; +export var IoSocialDesignernews: typeof _IoSocialDesignernews; +export var IoSocialDribbbleOutline: typeof _IoSocialDribbbleOutline; +export var IoSocialDribbble: typeof _IoSocialDribbble; +export var IoSocialDropboxOutline: typeof _IoSocialDropboxOutline; +export var IoSocialDropbox: typeof _IoSocialDropbox; +export var IoSocialEuroOutline: typeof _IoSocialEuroOutline; +export var IoSocialEuro: typeof _IoSocialEuro; +export var IoSocialFacebookOutline: typeof _IoSocialFacebookOutline; +export var IoSocialFacebook: typeof _IoSocialFacebook; +export var IoSocialFoursquareOutline: typeof _IoSocialFoursquareOutline; +export var IoSocialFoursquare: typeof _IoSocialFoursquare; +export var IoSocialFreebsdDevil: typeof _IoSocialFreebsdDevil; +export var IoSocialGithubOutline: typeof _IoSocialGithubOutline; +export var IoSocialGithub: typeof _IoSocialGithub; +export var IoSocialGoogleOutline: typeof _IoSocialGoogleOutline; +export var IoSocialGoogle: typeof _IoSocialGoogle; +export var IoSocialGoogleplusOutline: typeof _IoSocialGoogleplusOutline; +export var IoSocialGoogleplus: typeof _IoSocialGoogleplus; +export var IoSocialHackernewsOutline: typeof _IoSocialHackernewsOutline; +export var IoSocialHackernews: typeof _IoSocialHackernews; +export var IoSocialHtml5Outline: typeof _IoSocialHtml5Outline; +export var IoSocialHtml5: typeof _IoSocialHtml5; +export var IoSocialInstagramOutline: typeof _IoSocialInstagramOutline; +export var IoSocialInstagram: typeof _IoSocialInstagram; +export var IoSocialJavascriptOutline: typeof _IoSocialJavascriptOutline; +export var IoSocialJavascript: typeof _IoSocialJavascript; +export var IoSocialLinkedinOutline: typeof _IoSocialLinkedinOutline; +export var IoSocialLinkedin: typeof _IoSocialLinkedin; +export var IoSocialMarkdown: typeof _IoSocialMarkdown; +export var IoSocialNodejs: typeof _IoSocialNodejs; +export var IoSocialOctocat: typeof _IoSocialOctocat; +export var IoSocialPinterestOutline: typeof _IoSocialPinterestOutline; +export var IoSocialPinterest: typeof _IoSocialPinterest; +export var IoSocialPython: typeof _IoSocialPython; +export var IoSocialRedditOutline: typeof _IoSocialRedditOutline; +export var IoSocialReddit: typeof _IoSocialReddit; +export var IoSocialRssOutline: typeof _IoSocialRssOutline; +export var IoSocialRss: typeof _IoSocialRss; +export var IoSocialSass: typeof _IoSocialSass; +export var IoSocialSkypeOutline: typeof _IoSocialSkypeOutline; +export var IoSocialSkype: typeof _IoSocialSkype; +export var IoSocialSnapchatOutline: typeof _IoSocialSnapchatOutline; +export var IoSocialSnapchat: typeof _IoSocialSnapchat; +export var IoSocialTumblrOutline: typeof _IoSocialTumblrOutline; +export var IoSocialTumblr: typeof _IoSocialTumblr; +export var IoSocialTux: typeof _IoSocialTux; +export var IoSocialTwitchOutline: typeof _IoSocialTwitchOutline; +export var IoSocialTwitch: typeof _IoSocialTwitch; +export var IoSocialTwitterOutline: typeof _IoSocialTwitterOutline; +export var IoSocialTwitter: typeof _IoSocialTwitter; +export var IoSocialUsdOutline: typeof _IoSocialUsdOutline; +export var IoSocialUsd: typeof _IoSocialUsd; +export var IoSocialVimeoOutline: typeof _IoSocialVimeoOutline; +export var IoSocialVimeo: typeof _IoSocialVimeo; +export var IoSocialWhatsappOutline: typeof _IoSocialWhatsappOutline; +export var IoSocialWhatsapp: typeof _IoSocialWhatsapp; +export var IoSocialWindowsOutline: typeof _IoSocialWindowsOutline; +export var IoSocialWindows: typeof _IoSocialWindows; +export var IoSocialWordpressOutline: typeof _IoSocialWordpressOutline; +export var IoSocialWordpress: typeof _IoSocialWordpress; +export var IoSocialYahooOutline: typeof _IoSocialYahooOutline; +export var IoSocialYahoo: typeof _IoSocialYahoo; +export var IoSocialYenOutline: typeof _IoSocialYenOutline; +export var IoSocialYen: typeof _IoSocialYen; +export var IoSocialYoutubeOutline: typeof _IoSocialYoutubeOutline; +export var IoSocialYoutube: typeof _IoSocialYoutube; +export var IoSoupCanOutline: typeof _IoSoupCanOutline; +export var IoSoupCan: typeof _IoSoupCan; +export var IoSpeakerphone: typeof _IoSpeakerphone; +export var IoSpeedometer: typeof _IoSpeedometer; +export var IoSpoon: typeof _IoSpoon; +export var IoStar: typeof _IoStar; +export var IoStatsBars: typeof _IoStatsBars; +export var IoSteam: typeof _IoSteam; +export var IoStop: typeof _IoStop; +export var IoThermometer: typeof _IoThermometer; +export var IoThumbsdown: typeof _IoThumbsdown; +export var IoThumbsup: typeof _IoThumbsup; +export var IoToggleFilled: typeof _IoToggleFilled; +export var IoToggle: typeof _IoToggle; +export var IoTransgender: typeof _IoTransgender; +export var IoTrashA: typeof _IoTrashA; +export var IoTrashB: typeof _IoTrashB; +export var IoTrophy: typeof _IoTrophy; +export var IoTshirtOutline: typeof _IoTshirtOutline; +export var IoTshirt: typeof _IoTshirt; +export var IoUmbrella: typeof _IoUmbrella; +export var IoUniversity: typeof _IoUniversity; +export var IoUnlocked: typeof _IoUnlocked; +export var IoUpload: typeof _IoUpload; +export var IoUsb: typeof _IoUsb; +export var IoVideocamera: typeof _IoVideocamera; +export var IoVolumeHigh: typeof _IoVolumeHigh; +export var IoVolumeLow: typeof _IoVolumeLow; +export var IoVolumeMedium: typeof _IoVolumeMedium; +export var IoVolumeMute: typeof _IoVolumeMute; +export var IoWand: typeof _IoWand; +export var IoWaterdrop: typeof _IoWaterdrop; +export var IoWifi: typeof _IoWifi; +export var IoWineglass: typeof _IoWineglass; +export var IoWoman: typeof _IoWoman; +export var IoWrench: typeof _IoWrench; +export var IoXbox: typeof _IoXbox; \ No newline at end of file diff --git a/react-icons/io/informatcircled.d.ts b/react-icons/io/informatcircled.d.ts new file mode 100644 index 0000000000..ab04338a8f --- /dev/null +++ b/react-icons/io/informatcircled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoInformatcircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/information.d.ts b/react-icons/io/information.d.ts new file mode 100644 index 0000000000..b545d42318 --- /dev/null +++ b/react-icons/io/information.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ionic.d.ts b/react-icons/io/ionic.d.ts new file mode 100644 index 0000000000..0b2dc2cfca --- /dev/null +++ b/react-icons/io/ionic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIonic extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-alarm-outline.d.ts b/react-icons/io/ios-alarm-outline.d.ts new file mode 100644 index 0000000000..05381f223e --- /dev/null +++ b/react-icons/io/ios-alarm-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAlarmOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-alarm.d.ts b/react-icons/io/ios-alarm.d.ts new file mode 100644 index 0000000000..7d14bf53e6 --- /dev/null +++ b/react-icons/io/ios-alarm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-albums-outline.d.ts b/react-icons/io/ios-albums-outline.d.ts new file mode 100644 index 0000000000..fc303428bf --- /dev/null +++ b/react-icons/io/ios-albums-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAlbumsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-albums.d.ts b/react-icons/io/ios-albums.d.ts new file mode 100644 index 0000000000..2c4d125c6a --- /dev/null +++ b/react-icons/io/ios-albums.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAlbums extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-americanfootball-outline.d.ts b/react-icons/io/ios-americanfootball-outline.d.ts new file mode 100644 index 0000000000..6497f04a7b --- /dev/null +++ b/react-icons/io/ios-americanfootball-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAmericanfootballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-americanfootball.d.ts b/react-icons/io/ios-americanfootball.d.ts new file mode 100644 index 0000000000..db75f86008 --- /dev/null +++ b/react-icons/io/ios-americanfootball.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAmericanfootball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-analytics-outline.d.ts b/react-icons/io/ios-analytics-outline.d.ts new file mode 100644 index 0000000000..6838f1fdf0 --- /dev/null +++ b/react-icons/io/ios-analytics-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAnalyticsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-analytics.d.ts b/react-icons/io/ios-analytics.d.ts new file mode 100644 index 0000000000..38da48e2df --- /dev/null +++ b/react-icons/io/ios-analytics.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAnalytics extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-back.d.ts b/react-icons/io/ios-arrow-back.d.ts new file mode 100644 index 0000000000..b8db810c70 --- /dev/null +++ b/react-icons/io/ios-arrow-back.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-down.d.ts b/react-icons/io/ios-arrow-down.d.ts new file mode 100644 index 0000000000..35688809ae --- /dev/null +++ b/react-icons/io/ios-arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-forward.d.ts b/react-icons/io/ios-arrow-forward.d.ts new file mode 100644 index 0000000000..001d6ad101 --- /dev/null +++ b/react-icons/io/ios-arrow-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-left.d.ts b/react-icons/io/ios-arrow-left.d.ts new file mode 100644 index 0000000000..5af68f52f9 --- /dev/null +++ b/react-icons/io/ios-arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-right.d.ts b/react-icons/io/ios-arrow-right.d.ts new file mode 100644 index 0000000000..874578e411 --- /dev/null +++ b/react-icons/io/ios-arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-down.d.ts b/react-icons/io/ios-arrow-thin-down.d.ts new file mode 100644 index 0000000000..2743a58fc9 --- /dev/null +++ b/react-icons/io/ios-arrow-thin-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowThinDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-left.d.ts b/react-icons/io/ios-arrow-thin-left.d.ts new file mode 100644 index 0000000000..e1dceedf83 --- /dev/null +++ b/react-icons/io/ios-arrow-thin-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowThinLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-right.d.ts b/react-icons/io/ios-arrow-thin-right.d.ts new file mode 100644 index 0000000000..15bdb17478 --- /dev/null +++ b/react-icons/io/ios-arrow-thin-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowThinRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-up.d.ts b/react-icons/io/ios-arrow-thin-up.d.ts new file mode 100644 index 0000000000..b9c508a30d --- /dev/null +++ b/react-icons/io/ios-arrow-thin-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowThinUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-up.d.ts b/react-icons/io/ios-arrow-up.d.ts new file mode 100644 index 0000000000..8a96c65dd3 --- /dev/null +++ b/react-icons/io/ios-arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-at-outline.d.ts b/react-icons/io/ios-at-outline.d.ts new file mode 100644 index 0000000000..eddc80eaad --- /dev/null +++ b/react-icons/io/ios-at-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAtOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-at.d.ts b/react-icons/io/ios-at.d.ts new file mode 100644 index 0000000000..3a78d364cc --- /dev/null +++ b/react-icons/io/ios-at.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-barcode-outline.d.ts b/react-icons/io/ios-barcode-outline.d.ts new file mode 100644 index 0000000000..2cea5d81ce --- /dev/null +++ b/react-icons/io/ios-barcode-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBarcodeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-barcode.d.ts b/react-icons/io/ios-barcode.d.ts new file mode 100644 index 0000000000..4993f1c958 --- /dev/null +++ b/react-icons/io/ios-barcode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBarcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-baseball-outline.d.ts b/react-icons/io/ios-baseball-outline.d.ts new file mode 100644 index 0000000000..eb50d2a9b1 --- /dev/null +++ b/react-icons/io/ios-baseball-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBaseballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-baseball.d.ts b/react-icons/io/ios-baseball.d.ts new file mode 100644 index 0000000000..f9f477dbd4 --- /dev/null +++ b/react-icons/io/ios-baseball.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBaseball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-basketball-outline.d.ts b/react-icons/io/ios-basketball-outline.d.ts new file mode 100644 index 0000000000..27664c74db --- /dev/null +++ b/react-icons/io/ios-basketball-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBasketballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-basketball.d.ts b/react-icons/io/ios-basketball.d.ts new file mode 100644 index 0000000000..57574ef310 --- /dev/null +++ b/react-icons/io/ios-basketball.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBasketball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bell-outline.d.ts b/react-icons/io/ios-bell-outline.d.ts new file mode 100644 index 0000000000..a90032a31b --- /dev/null +++ b/react-icons/io/ios-bell-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBellOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bell.d.ts b/react-icons/io/ios-bell.d.ts new file mode 100644 index 0000000000..20da45c195 --- /dev/null +++ b/react-icons/io/ios-bell.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-body-outline.d.ts b/react-icons/io/ios-body-outline.d.ts new file mode 100644 index 0000000000..ec29b008a5 --- /dev/null +++ b/react-icons/io/ios-body-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBodyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-body.d.ts b/react-icons/io/ios-body.d.ts new file mode 100644 index 0000000000..505adb1518 --- /dev/null +++ b/react-icons/io/ios-body.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBody extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bolt-outline.d.ts b/react-icons/io/ios-bolt-outline.d.ts new file mode 100644 index 0000000000..2e3e26ff63 --- /dev/null +++ b/react-icons/io/ios-bolt-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBoltOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bolt.d.ts b/react-icons/io/ios-bolt.d.ts new file mode 100644 index 0000000000..ec1d766f8c --- /dev/null +++ b/react-icons/io/ios-bolt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBolt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-book-outline.d.ts b/react-icons/io/ios-book-outline.d.ts new file mode 100644 index 0000000000..cc43158fe5 --- /dev/null +++ b/react-icons/io/ios-book-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBookOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-book.d.ts b/react-icons/io/ios-book.d.ts new file mode 100644 index 0000000000..93297da3b7 --- /dev/null +++ b/react-icons/io/ios-book.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bookmarks-outline.d.ts b/react-icons/io/ios-bookmarks-outline.d.ts new file mode 100644 index 0000000000..92c45a79f1 --- /dev/null +++ b/react-icons/io/ios-bookmarks-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBookmarksOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bookmarks.d.ts b/react-icons/io/ios-bookmarks.d.ts new file mode 100644 index 0000000000..8a146b468d --- /dev/null +++ b/react-icons/io/ios-bookmarks.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBookmarks extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-box-outline.d.ts b/react-icons/io/ios-box-outline.d.ts new file mode 100644 index 0000000000..d50a27e0ec --- /dev/null +++ b/react-icons/io/ios-box-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBoxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-box.d.ts b/react-icons/io/ios-box.d.ts new file mode 100644 index 0000000000..298caebbf0 --- /dev/null +++ b/react-icons/io/ios-box.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-briefcase-outline.d.ts b/react-icons/io/ios-briefcase-outline.d.ts new file mode 100644 index 0000000000..e125419faa --- /dev/null +++ b/react-icons/io/ios-briefcase-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBriefcaseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-briefcase.d.ts b/react-icons/io/ios-briefcase.d.ts new file mode 100644 index 0000000000..906dbcdc06 --- /dev/null +++ b/react-icons/io/ios-briefcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-browsers-outline.d.ts b/react-icons/io/ios-browsers-outline.d.ts new file mode 100644 index 0000000000..982e88d876 --- /dev/null +++ b/react-icons/io/ios-browsers-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBrowsersOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-browsers.d.ts b/react-icons/io/ios-browsers.d.ts new file mode 100644 index 0000000000..a596fe517b --- /dev/null +++ b/react-icons/io/ios-browsers.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosBrowsers extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calculator-outline.d.ts b/react-icons/io/ios-calculator-outline.d.ts new file mode 100644 index 0000000000..517dd1d7a9 --- /dev/null +++ b/react-icons/io/ios-calculator-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCalculatorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calculator.d.ts b/react-icons/io/ios-calculator.d.ts new file mode 100644 index 0000000000..8acf9b67ec --- /dev/null +++ b/react-icons/io/ios-calculator.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calendar-outline.d.ts b/react-icons/io/ios-calendar-outline.d.ts new file mode 100644 index 0000000000..321a1a81b6 --- /dev/null +++ b/react-icons/io/ios-calendar-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCalendarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calendar.d.ts b/react-icons/io/ios-calendar.d.ts new file mode 100644 index 0000000000..28a5c2b6a5 --- /dev/null +++ b/react-icons/io/ios-calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-camera-outline.d.ts b/react-icons/io/ios-camera-outline.d.ts new file mode 100644 index 0000000000..679029959e --- /dev/null +++ b/react-icons/io/ios-camera-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-camera.d.ts b/react-icons/io/ios-camera.d.ts new file mode 100644 index 0000000000..00819a7187 --- /dev/null +++ b/react-icons/io/ios-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cart-outline.d.ts b/react-icons/io/ios-cart-outline.d.ts new file mode 100644 index 0000000000..2ba771fce8 --- /dev/null +++ b/react-icons/io/ios-cart-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cart.d.ts b/react-icons/io/ios-cart.d.ts new file mode 100644 index 0000000000..24a1805236 --- /dev/null +++ b/react-icons/io/ios-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatboxes-outline.d.ts b/react-icons/io/ios-chatboxes-outline.d.ts new file mode 100644 index 0000000000..204b3f4e60 --- /dev/null +++ b/react-icons/io/ios-chatboxes-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosChatboxesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatboxes.d.ts b/react-icons/io/ios-chatboxes.d.ts new file mode 100644 index 0000000000..aac92357df --- /dev/null +++ b/react-icons/io/ios-chatboxes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosChatboxes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatbubble-outline.d.ts b/react-icons/io/ios-chatbubble-outline.d.ts new file mode 100644 index 0000000000..9d89dc48dc --- /dev/null +++ b/react-icons/io/ios-chatbubble-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosChatbubbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatbubble.d.ts b/react-icons/io/ios-chatbubble.d.ts new file mode 100644 index 0000000000..e83268b99f --- /dev/null +++ b/react-icons/io/ios-chatbubble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosChatbubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark-empty.d.ts b/react-icons/io/ios-checkmark-empty.d.ts new file mode 100644 index 0000000000..3da789bc4f --- /dev/null +++ b/react-icons/io/ios-checkmark-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCheckmarkEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark-outline.d.ts b/react-icons/io/ios-checkmark-outline.d.ts new file mode 100644 index 0000000000..2c34d62fea --- /dev/null +++ b/react-icons/io/ios-checkmark-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCheckmarkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark.d.ts b/react-icons/io/ios-checkmark.d.ts new file mode 100644 index 0000000000..9f2d14ef02 --- /dev/null +++ b/react-icons/io/ios-checkmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCheckmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-circle-filled.d.ts b/react-icons/io/ios-circle-filled.d.ts new file mode 100644 index 0000000000..58aea8cd6f --- /dev/null +++ b/react-icons/io/ios-circle-filled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-circle-outline.d.ts b/react-icons/io/ios-circle-outline.d.ts new file mode 100644 index 0000000000..747776ec11 --- /dev/null +++ b/react-icons/io/ios-circle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-clock-outline.d.ts b/react-icons/io/ios-clock-outline.d.ts new file mode 100644 index 0000000000..58944da63d --- /dev/null +++ b/react-icons/io/ios-clock-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosClockOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-clock.d.ts b/react-icons/io/ios-clock.d.ts new file mode 100644 index 0000000000..cb35aa0c6c --- /dev/null +++ b/react-icons/io/ios-clock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close-empty.d.ts b/react-icons/io/ios-close-empty.d.ts new file mode 100644 index 0000000000..6f3bfd0f69 --- /dev/null +++ b/react-icons/io/ios-close-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloseEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close-outline.d.ts b/react-icons/io/ios-close-outline.d.ts new file mode 100644 index 0000000000..9c8c8a02d4 --- /dev/null +++ b/react-icons/io/ios-close-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close.d.ts b/react-icons/io/ios-close.d.ts new file mode 100644 index 0000000000..5b1c27bbb1 --- /dev/null +++ b/react-icons/io/ios-close.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-download-outline.d.ts b/react-icons/io/ios-cloud-download-outline.d.ts new file mode 100644 index 0000000000..40309c4c82 --- /dev/null +++ b/react-icons/io/ios-cloud-download-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-download.d.ts b/react-icons/io/ios-cloud-download.d.ts new file mode 100644 index 0000000000..d5ab052f1e --- /dev/null +++ b/react-icons/io/ios-cloud-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-outline.d.ts b/react-icons/io/ios-cloud-outline.d.ts new file mode 100644 index 0000000000..a38d2089ba --- /dev/null +++ b/react-icons/io/ios-cloud-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-upload-outline.d.ts b/react-icons/io/ios-cloud-upload-outline.d.ts new file mode 100644 index 0000000000..d790da589f --- /dev/null +++ b/react-icons/io/ios-cloud-upload-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-upload.d.ts b/react-icons/io/ios-cloud-upload.d.ts new file mode 100644 index 0000000000..b16a4f635d --- /dev/null +++ b/react-icons/io/ios-cloud-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud.d.ts b/react-icons/io/ios-cloud.d.ts new file mode 100644 index 0000000000..69a4080782 --- /dev/null +++ b/react-icons/io/ios-cloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-night-outline.d.ts b/react-icons/io/ios-cloudy-night-outline.d.ts new file mode 100644 index 0000000000..536d6799ef --- /dev/null +++ b/react-icons/io/ios-cloudy-night-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudyNightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-night.d.ts b/react-icons/io/ios-cloudy-night.d.ts new file mode 100644 index 0000000000..c8cf2c6d41 --- /dev/null +++ b/react-icons/io/ios-cloudy-night.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudyNight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-outline.d.ts b/react-icons/io/ios-cloudy-outline.d.ts new file mode 100644 index 0000000000..6131e82d29 --- /dev/null +++ b/react-icons/io/ios-cloudy-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy.d.ts b/react-icons/io/ios-cloudy.d.ts new file mode 100644 index 0000000000..2dcc50caf8 --- /dev/null +++ b/react-icons/io/ios-cloudy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cog-outline.d.ts b/react-icons/io/ios-cog-outline.d.ts new file mode 100644 index 0000000000..54aad4c708 --- /dev/null +++ b/react-icons/io/ios-cog-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCogOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cog.d.ts b/react-icons/io/ios-cog.d.ts new file mode 100644 index 0000000000..d99f7650a6 --- /dev/null +++ b/react-icons/io/ios-cog.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-filter-outline.d.ts b/react-icons/io/ios-color-filter-outline.d.ts new file mode 100644 index 0000000000..95f79b04cc --- /dev/null +++ b/react-icons/io/ios-color-filter-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosColorFilterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-filter.d.ts b/react-icons/io/ios-color-filter.d.ts new file mode 100644 index 0000000000..dd84083fe3 --- /dev/null +++ b/react-icons/io/ios-color-filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosColorFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-wand-outline.d.ts b/react-icons/io/ios-color-wand-outline.d.ts new file mode 100644 index 0000000000..b48fc018f0 --- /dev/null +++ b/react-icons/io/ios-color-wand-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosColorWandOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-wand.d.ts b/react-icons/io/ios-color-wand.d.ts new file mode 100644 index 0000000000..c7e07babf6 --- /dev/null +++ b/react-icons/io/ios-color-wand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosColorWand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-compose-outline.d.ts b/react-icons/io/ios-compose-outline.d.ts new file mode 100644 index 0000000000..48002c8753 --- /dev/null +++ b/react-icons/io/ios-compose-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosComposeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-compose.d.ts b/react-icons/io/ios-compose.d.ts new file mode 100644 index 0000000000..9d4c5d0937 --- /dev/null +++ b/react-icons/io/ios-compose.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCompose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-contact-outline.d.ts b/react-icons/io/ios-contact-outline.d.ts new file mode 100644 index 0000000000..de8e138a39 --- /dev/null +++ b/react-icons/io/ios-contact-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosContactOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-contact.d.ts b/react-icons/io/ios-contact.d.ts new file mode 100644 index 0000000000..849b2c591c --- /dev/null +++ b/react-icons/io/ios-contact.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosContact extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-copy-outline.d.ts b/react-icons/io/ios-copy-outline.d.ts new file mode 100644 index 0000000000..67d9b4a49a --- /dev/null +++ b/react-icons/io/ios-copy-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCopyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-copy.d.ts b/react-icons/io/ios-copy.d.ts new file mode 100644 index 0000000000..572eb5a39a --- /dev/null +++ b/react-icons/io/ios-copy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-crop-strong.d.ts b/react-icons/io/ios-crop-strong.d.ts new file mode 100644 index 0000000000..ea42e26dff --- /dev/null +++ b/react-icons/io/ios-crop-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCropStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-crop.d.ts b/react-icons/io/ios-crop.d.ts new file mode 100644 index 0000000000..4926f0f8ac --- /dev/null +++ b/react-icons/io/ios-crop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-download-outline.d.ts b/react-icons/io/ios-download-outline.d.ts new file mode 100644 index 0000000000..69d65d63ca --- /dev/null +++ b/react-icons/io/ios-download-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-download.d.ts b/react-icons/io/ios-download.d.ts new file mode 100644 index 0000000000..ab02d0c8cc --- /dev/null +++ b/react-icons/io/ios-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-drag.d.ts b/react-icons/io/ios-drag.d.ts new file mode 100644 index 0000000000..dd0e828393 --- /dev/null +++ b/react-icons/io/ios-drag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosDrag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-email-outline.d.ts b/react-icons/io/ios-email-outline.d.ts new file mode 100644 index 0000000000..ce0aa45288 --- /dev/null +++ b/react-icons/io/ios-email-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosEmailOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-email.d.ts b/react-icons/io/ios-email.d.ts new file mode 100644 index 0000000000..b103ccf795 --- /dev/null +++ b/react-icons/io/ios-email.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-eye-outline.d.ts b/react-icons/io/ios-eye-outline.d.ts new file mode 100644 index 0000000000..e8a4349ed2 --- /dev/null +++ b/react-icons/io/ios-eye-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosEyeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-eye.d.ts b/react-icons/io/ios-eye.d.ts new file mode 100644 index 0000000000..5da7f827b1 --- /dev/null +++ b/react-icons/io/ios-eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-fastforward-outline.d.ts b/react-icons/io/ios-fastforward-outline.d.ts new file mode 100644 index 0000000000..d5d08f4899 --- /dev/null +++ b/react-icons/io/ios-fastforward-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFastforwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-fastforward.d.ts b/react-icons/io/ios-fastforward.d.ts new file mode 100644 index 0000000000..ab73b62f16 --- /dev/null +++ b/react-icons/io/ios-fastforward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFastforward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-filing-outline.d.ts b/react-icons/io/ios-filing-outline.d.ts new file mode 100644 index 0000000000..80b2acd33c --- /dev/null +++ b/react-icons/io/ios-filing-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFilingOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-filing.d.ts b/react-icons/io/ios-filing.d.ts new file mode 100644 index 0000000000..1058760472 --- /dev/null +++ b/react-icons/io/ios-filing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFiling extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-film-outline.d.ts b/react-icons/io/ios-film-outline.d.ts new file mode 100644 index 0000000000..7226b620f5 --- /dev/null +++ b/react-icons/io/ios-film-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFilmOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-film.d.ts b/react-icons/io/ios-film.d.ts new file mode 100644 index 0000000000..c0a10e39a0 --- /dev/null +++ b/react-icons/io/ios-film.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flag-outline.d.ts b/react-icons/io/ios-flag-outline.d.ts new file mode 100644 index 0000000000..13720350aa --- /dev/null +++ b/react-icons/io/ios-flag-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flag.d.ts b/react-icons/io/ios-flag.d.ts new file mode 100644 index 0000000000..6499a4a08d --- /dev/null +++ b/react-icons/io/ios-flag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flame-outline.d.ts b/react-icons/io/ios-flame-outline.d.ts new file mode 100644 index 0000000000..d1675cfa6e --- /dev/null +++ b/react-icons/io/ios-flame-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlameOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flame.d.ts b/react-icons/io/ios-flame.d.ts new file mode 100644 index 0000000000..267af0f90a --- /dev/null +++ b/react-icons/io/ios-flame.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flask-outline.d.ts b/react-icons/io/ios-flask-outline.d.ts new file mode 100644 index 0000000000..42127ed381 --- /dev/null +++ b/react-icons/io/ios-flask-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlaskOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flask.d.ts b/react-icons/io/ios-flask.d.ts new file mode 100644 index 0000000000..f8fc4d8a4f --- /dev/null +++ b/react-icons/io/ios-flask.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flower-outline.d.ts b/react-icons/io/ios-flower-outline.d.ts new file mode 100644 index 0000000000..9c0a6ae65e --- /dev/null +++ b/react-icons/io/ios-flower-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlowerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flower.d.ts b/react-icons/io/ios-flower.d.ts new file mode 100644 index 0000000000..8fc471cfb2 --- /dev/null +++ b/react-icons/io/ios-flower.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFlower extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-folder-outline.d.ts b/react-icons/io/ios-folder-outline.d.ts new file mode 100644 index 0000000000..c464b8f4ee --- /dev/null +++ b/react-icons/io/ios-folder-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFolderOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-folder.d.ts b/react-icons/io/ios-folder.d.ts new file mode 100644 index 0000000000..3a8f749e3c --- /dev/null +++ b/react-icons/io/ios-folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-football-outline.d.ts b/react-icons/io/ios-football-outline.d.ts new file mode 100644 index 0000000000..b2f27eda58 --- /dev/null +++ b/react-icons/io/ios-football-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFootballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-football.d.ts b/react-icons/io/ios-football.d.ts new file mode 100644 index 0000000000..44c340fa9d --- /dev/null +++ b/react-icons/io/ios-football.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosFootball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-a-outline.d.ts b/react-icons/io/ios-game-controller-a-outline.d.ts new file mode 100644 index 0000000000..5c34bf98c3 --- /dev/null +++ b/react-icons/io/ios-game-controller-a-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGameControllerAOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-a.d.ts b/react-icons/io/ios-game-controller-a.d.ts new file mode 100644 index 0000000000..a16e1acdbf --- /dev/null +++ b/react-icons/io/ios-game-controller-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGameControllerA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-b-outline.d.ts b/react-icons/io/ios-game-controller-b-outline.d.ts new file mode 100644 index 0000000000..6d7ba3f199 --- /dev/null +++ b/react-icons/io/ios-game-controller-b-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGameControllerBOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-b.d.ts b/react-icons/io/ios-game-controller-b.d.ts new file mode 100644 index 0000000000..b8e0a78314 --- /dev/null +++ b/react-icons/io/ios-game-controller-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGameControllerB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-gear-outline.d.ts b/react-icons/io/ios-gear-outline.d.ts new file mode 100644 index 0000000000..e71677e17d --- /dev/null +++ b/react-icons/io/ios-gear-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGearOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-gear.d.ts b/react-icons/io/ios-gear.d.ts new file mode 100644 index 0000000000..c6bfdfe064 --- /dev/null +++ b/react-icons/io/ios-gear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGear extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-glasses-outline.d.ts b/react-icons/io/ios-glasses-outline.d.ts new file mode 100644 index 0000000000..c8720ada1b --- /dev/null +++ b/react-icons/io/ios-glasses-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGlassesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-glasses.d.ts b/react-icons/io/ios-glasses.d.ts new file mode 100644 index 0000000000..82f65e5861 --- /dev/null +++ b/react-icons/io/ios-glasses.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGlasses extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-grid-view-outline.d.ts b/react-icons/io/ios-grid-view-outline.d.ts new file mode 100644 index 0000000000..45616dd2ec --- /dev/null +++ b/react-icons/io/ios-grid-view-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGridViewOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-grid-view.d.ts b/react-icons/io/ios-grid-view.d.ts new file mode 100644 index 0000000000..83312ef3b4 --- /dev/null +++ b/react-icons/io/ios-grid-view.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosGridView extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-heart-outline.d.ts b/react-icons/io/ios-heart-outline.d.ts new file mode 100644 index 0000000000..92408990aa --- /dev/null +++ b/react-icons/io/ios-heart-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHeartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-heart.d.ts b/react-icons/io/ios-heart.d.ts new file mode 100644 index 0000000000..18e05aff96 --- /dev/null +++ b/react-icons/io/ios-heart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help-empty.d.ts b/react-icons/io/ios-help-empty.d.ts new file mode 100644 index 0000000000..16c764d4c0 --- /dev/null +++ b/react-icons/io/ios-help-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHelpEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help-outline.d.ts b/react-icons/io/ios-help-outline.d.ts new file mode 100644 index 0000000000..39d1e63a78 --- /dev/null +++ b/react-icons/io/ios-help-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHelpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help.d.ts b/react-icons/io/ios-help.d.ts new file mode 100644 index 0000000000..5a20b2f1a5 --- /dev/null +++ b/react-icons/io/ios-help.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-home-outline.d.ts b/react-icons/io/ios-home-outline.d.ts new file mode 100644 index 0000000000..b38bf21a59 --- /dev/null +++ b/react-icons/io/ios-home-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHomeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-home.d.ts b/react-icons/io/ios-home.d.ts new file mode 100644 index 0000000000..82608b888e --- /dev/null +++ b/react-icons/io/ios-home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-infinite-outline.d.ts b/react-icons/io/ios-infinite-outline.d.ts new file mode 100644 index 0000000000..df1eedbea7 --- /dev/null +++ b/react-icons/io/ios-infinite-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosInfiniteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-infinite.d.ts b/react-icons/io/ios-infinite.d.ts new file mode 100644 index 0000000000..d529d15667 --- /dev/null +++ b/react-icons/io/ios-infinite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosInfinite extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-informatempty.d.ts b/react-icons/io/ios-informatempty.d.ts new file mode 100644 index 0000000000..83c12d463e --- /dev/null +++ b/react-icons/io/ios-informatempty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosInformatempty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-information.d.ts b/react-icons/io/ios-information.d.ts new file mode 100644 index 0000000000..7533781438 --- /dev/null +++ b/react-icons/io/ios-information.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-informatoutline.d.ts b/react-icons/io/ios-informatoutline.d.ts new file mode 100644 index 0000000000..050bd27585 --- /dev/null +++ b/react-icons/io/ios-informatoutline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosInformatoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-ionic-outline.d.ts b/react-icons/io/ios-ionic-outline.d.ts new file mode 100644 index 0000000000..fdd5a3f91c --- /dev/null +++ b/react-icons/io/ios-ionic-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosIonicOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-keypad-outline.d.ts b/react-icons/io/ios-keypad-outline.d.ts new file mode 100644 index 0000000000..9f7d891dbf --- /dev/null +++ b/react-icons/io/ios-keypad-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosKeypadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-keypad.d.ts b/react-icons/io/ios-keypad.d.ts new file mode 100644 index 0000000000..f10d61bde3 --- /dev/null +++ b/react-icons/io/ios-keypad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosKeypad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-lightbulb-outline.d.ts b/react-icons/io/ios-lightbulb-outline.d.ts new file mode 100644 index 0000000000..a3ada3b075 --- /dev/null +++ b/react-icons/io/ios-lightbulb-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLightbulbOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-lightbulb.d.ts b/react-icons/io/ios-lightbulb.d.ts new file mode 100644 index 0000000000..c71050b6da --- /dev/null +++ b/react-icons/io/ios-lightbulb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-list-outline.d.ts b/react-icons/io/ios-list-outline.d.ts new file mode 100644 index 0000000000..2425e80b16 --- /dev/null +++ b/react-icons/io/ios-list-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosListOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-list.d.ts b/react-icons/io/ios-list.d.ts new file mode 100644 index 0000000000..17e4cf93b2 --- /dev/null +++ b/react-icons/io/ios-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosList extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-location.d.ts b/react-icons/io/ios-location.d.ts new file mode 100644 index 0000000000..1b69f161a6 --- /dev/null +++ b/react-icons/io/ios-location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locatoutline.d.ts b/react-icons/io/ios-locatoutline.d.ts new file mode 100644 index 0000000000..f1e6511215 --- /dev/null +++ b/react-icons/io/ios-locatoutline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLocatoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locked-outline.d.ts b/react-icons/io/ios-locked-outline.d.ts new file mode 100644 index 0000000000..2073040eb6 --- /dev/null +++ b/react-icons/io/ios-locked-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLockedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locked.d.ts b/react-icons/io/ios-locked.d.ts new file mode 100644 index 0000000000..6dc2da62e2 --- /dev/null +++ b/react-icons/io/ios-locked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-loop-strong.d.ts b/react-icons/io/ios-loop-strong.d.ts new file mode 100644 index 0000000000..97011eb432 --- /dev/null +++ b/react-icons/io/ios-loop-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLoopStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-loop.d.ts b/react-icons/io/ios-loop.d.ts new file mode 100644 index 0000000000..9f38c25cb7 --- /dev/null +++ b/react-icons/io/ios-loop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medical-outline.d.ts b/react-icons/io/ios-medical-outline.d.ts new file mode 100644 index 0000000000..00b73654ed --- /dev/null +++ b/react-icons/io/ios-medical-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMedicalOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medical.d.ts b/react-icons/io/ios-medical.d.ts new file mode 100644 index 0000000000..5c9f402817 --- /dev/null +++ b/react-icons/io/ios-medical.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMedical extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medkit-outline.d.ts b/react-icons/io/ios-medkit-outline.d.ts new file mode 100644 index 0000000000..ebe33fd2b7 --- /dev/null +++ b/react-icons/io/ios-medkit-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMedkitOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medkit.d.ts b/react-icons/io/ios-medkit.d.ts new file mode 100644 index 0000000000..4a75daf1c0 --- /dev/null +++ b/react-icons/io/ios-medkit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic-off.d.ts b/react-icons/io/ios-mic-off.d.ts new file mode 100644 index 0000000000..37b8b1ebdd --- /dev/null +++ b/react-icons/io/ios-mic-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMicOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic-outline.d.ts b/react-icons/io/ios-mic-outline.d.ts new file mode 100644 index 0000000000..100b6f6e5e --- /dev/null +++ b/react-icons/io/ios-mic-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMicOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic.d.ts b/react-icons/io/ios-mic.d.ts new file mode 100644 index 0000000000..af1939bb63 --- /dev/null +++ b/react-icons/io/ios-mic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus-empty.d.ts b/react-icons/io/ios-minus-empty.d.ts new file mode 100644 index 0000000000..c1e9d9ad59 --- /dev/null +++ b/react-icons/io/ios-minus-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMinusEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus-outline.d.ts b/react-icons/io/ios-minus-outline.d.ts new file mode 100644 index 0000000000..b096d664a0 --- /dev/null +++ b/react-icons/io/ios-minus-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMinusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus.d.ts b/react-icons/io/ios-minus.d.ts new file mode 100644 index 0000000000..8043ee4525 --- /dev/null +++ b/react-icons/io/ios-minus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-monitor-outline.d.ts b/react-icons/io/ios-monitor-outline.d.ts new file mode 100644 index 0000000000..715d7ffce8 --- /dev/null +++ b/react-icons/io/ios-monitor-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMonitorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-monitor.d.ts b/react-icons/io/ios-monitor.d.ts new file mode 100644 index 0000000000..e15770f640 --- /dev/null +++ b/react-icons/io/ios-monitor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMonitor extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-moon-outline.d.ts b/react-icons/io/ios-moon-outline.d.ts new file mode 100644 index 0000000000..0e1e3f00c0 --- /dev/null +++ b/react-icons/io/ios-moon-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMoonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-moon.d.ts b/react-icons/io/ios-moon.d.ts new file mode 100644 index 0000000000..e1058ed27f --- /dev/null +++ b/react-icons/io/ios-moon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-more-outline.d.ts b/react-icons/io/ios-more-outline.d.ts new file mode 100644 index 0000000000..bce05f64e8 --- /dev/null +++ b/react-icons/io/ios-more-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMoreOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-more.d.ts b/react-icons/io/ios-more.d.ts new file mode 100644 index 0000000000..2526da4904 --- /dev/null +++ b/react-icons/io/ios-more.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-musical-note.d.ts b/react-icons/io/ios-musical-note.d.ts new file mode 100644 index 0000000000..a9d503ee22 --- /dev/null +++ b/react-icons/io/ios-musical-note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMusicalNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-musical-notes.d.ts b/react-icons/io/ios-musical-notes.d.ts new file mode 100644 index 0000000000..ff08ae4d59 --- /dev/null +++ b/react-icons/io/ios-musical-notes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosMusicalNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-navigate-outline.d.ts b/react-icons/io/ios-navigate-outline.d.ts new file mode 100644 index 0000000000..197deaf064 --- /dev/null +++ b/react-icons/io/ios-navigate-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosNavigateOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-navigate.d.ts b/react-icons/io/ios-navigate.d.ts new file mode 100644 index 0000000000..0644a03671 --- /dev/null +++ b/react-icons/io/ios-navigate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-nutrition.d.ts b/react-icons/io/ios-nutrition.d.ts new file mode 100644 index 0000000000..d28d6df3ed --- /dev/null +++ b/react-icons/io/ios-nutrition.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosNutrition extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-nutritoutline.d.ts b/react-icons/io/ios-nutritoutline.d.ts new file mode 100644 index 0000000000..4f0a31f253 --- /dev/null +++ b/react-icons/io/ios-nutritoutline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosNutritoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paper-outline.d.ts b/react-icons/io/ios-paper-outline.d.ts new file mode 100644 index 0000000000..c779fb2ae1 --- /dev/null +++ b/react-icons/io/ios-paper-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPaperOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paper.d.ts b/react-icons/io/ios-paper.d.ts new file mode 100644 index 0000000000..0136ad277f --- /dev/null +++ b/react-icons/io/ios-paper.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paperplane-outline.d.ts b/react-icons/io/ios-paperplane-outline.d.ts new file mode 100644 index 0000000000..207831205d --- /dev/null +++ b/react-icons/io/ios-paperplane-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPaperplaneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paperplane.d.ts b/react-icons/io/ios-paperplane.d.ts new file mode 100644 index 0000000000..e13f76f59e --- /dev/null +++ b/react-icons/io/ios-paperplane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPaperplane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-partlysunny-outline.d.ts b/react-icons/io/ios-partlysunny-outline.d.ts new file mode 100644 index 0000000000..1934b201de --- /dev/null +++ b/react-icons/io/ios-partlysunny-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPartlysunnyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-partlysunny.d.ts b/react-icons/io/ios-partlysunny.d.ts new file mode 100644 index 0000000000..3a36e005b2 --- /dev/null +++ b/react-icons/io/ios-partlysunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPartlysunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pause-outline.d.ts b/react-icons/io/ios-pause-outline.d.ts new file mode 100644 index 0000000000..bf52fed2e1 --- /dev/null +++ b/react-icons/io/ios-pause-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPauseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pause.d.ts b/react-icons/io/ios-pause.d.ts new file mode 100644 index 0000000000..628df11d1c --- /dev/null +++ b/react-icons/io/ios-pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paw-outline.d.ts b/react-icons/io/ios-paw-outline.d.ts new file mode 100644 index 0000000000..8a42509f1a --- /dev/null +++ b/react-icons/io/ios-paw-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPawOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paw.d.ts b/react-icons/io/ios-paw.d.ts new file mode 100644 index 0000000000..2a8101923a --- /dev/null +++ b/react-icons/io/ios-paw.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-people-outline.d.ts b/react-icons/io/ios-people-outline.d.ts new file mode 100644 index 0000000000..cb90bf0b46 --- /dev/null +++ b/react-icons/io/ios-people-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPeopleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-people.d.ts b/react-icons/io/ios-people.d.ts new file mode 100644 index 0000000000..301c3a635f --- /dev/null +++ b/react-icons/io/ios-people.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-person-outline.d.ts b/react-icons/io/ios-person-outline.d.ts new file mode 100644 index 0000000000..675cb497e2 --- /dev/null +++ b/react-icons/io/ios-person-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPersonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-person.d.ts b/react-icons/io/ios-person.d.ts new file mode 100644 index 0000000000..77f81d4532 --- /dev/null +++ b/react-icons/io/ios-person.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-personadd-outline.d.ts b/react-icons/io/ios-personadd-outline.d.ts new file mode 100644 index 0000000000..5e4ddb0f57 --- /dev/null +++ b/react-icons/io/ios-personadd-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPersonaddOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-personadd.d.ts b/react-icons/io/ios-personadd.d.ts new file mode 100644 index 0000000000..8b9d49897c --- /dev/null +++ b/react-icons/io/ios-personadd.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPersonadd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-photos-outline.d.ts b/react-icons/io/ios-photos-outline.d.ts new file mode 100644 index 0000000000..d03443c8eb --- /dev/null +++ b/react-icons/io/ios-photos-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPhotosOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-photos.d.ts b/react-icons/io/ios-photos.d.ts new file mode 100644 index 0000000000..e5bf3ee5b0 --- /dev/null +++ b/react-icons/io/ios-photos.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pie-outline.d.ts b/react-icons/io/ios-pie-outline.d.ts new file mode 100644 index 0000000000..2330a31351 --- /dev/null +++ b/react-icons/io/ios-pie-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPieOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pie.d.ts b/react-icons/io/ios-pie.d.ts new file mode 100644 index 0000000000..5579c910a8 --- /dev/null +++ b/react-icons/io/ios-pie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPie extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pint-outline.d.ts b/react-icons/io/ios-pint-outline.d.ts new file mode 100644 index 0000000000..b8a0533b2d --- /dev/null +++ b/react-icons/io/ios-pint-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPintOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pint.d.ts b/react-icons/io/ios-pint.d.ts new file mode 100644 index 0000000000..f54315bc2b --- /dev/null +++ b/react-icons/io/ios-pint.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-play-outline.d.ts b/react-icons/io/ios-play-outline.d.ts new file mode 100644 index 0000000000..79e368e34a --- /dev/null +++ b/react-icons/io/ios-play-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPlayOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-play.d.ts b/react-icons/io/ios-play.d.ts new file mode 100644 index 0000000000..b076c1fb76 --- /dev/null +++ b/react-icons/io/ios-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus-empty.d.ts b/react-icons/io/ios-plus-empty.d.ts new file mode 100644 index 0000000000..c1a1f3bb75 --- /dev/null +++ b/react-icons/io/ios-plus-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPlusEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus-outline.d.ts b/react-icons/io/ios-plus-outline.d.ts new file mode 100644 index 0000000000..c0f2bf8db1 --- /dev/null +++ b/react-icons/io/ios-plus-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPlusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus.d.ts b/react-icons/io/ios-plus.d.ts new file mode 100644 index 0000000000..0d3e2f51c3 --- /dev/null +++ b/react-icons/io/ios-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetag-outline.d.ts b/react-icons/io/ios-pricetag-outline.d.ts new file mode 100644 index 0000000000..dbf7dcd568 --- /dev/null +++ b/react-icons/io/ios-pricetag-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPricetagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetag.d.ts b/react-icons/io/ios-pricetag.d.ts new file mode 100644 index 0000000000..e939962ca8 --- /dev/null +++ b/react-icons/io/ios-pricetag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPricetag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetags-outline.d.ts b/react-icons/io/ios-pricetags-outline.d.ts new file mode 100644 index 0000000000..bec010d81e --- /dev/null +++ b/react-icons/io/ios-pricetags-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPricetagsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetags.d.ts b/react-icons/io/ios-pricetags.d.ts new file mode 100644 index 0000000000..c17da38948 --- /dev/null +++ b/react-icons/io/ios-pricetags.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPricetags extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-printer-outline.d.ts b/react-icons/io/ios-printer-outline.d.ts new file mode 100644 index 0000000000..757c473581 --- /dev/null +++ b/react-icons/io/ios-printer-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPrinterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-printer.d.ts b/react-icons/io/ios-printer.d.ts new file mode 100644 index 0000000000..3b0a93f94f --- /dev/null +++ b/react-icons/io/ios-printer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pulse-strong.d.ts b/react-icons/io/ios-pulse-strong.d.ts new file mode 100644 index 0000000000..49e42388b8 --- /dev/null +++ b/react-icons/io/ios-pulse-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPulseStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pulse.d.ts b/react-icons/io/ios-pulse.d.ts new file mode 100644 index 0000000000..1a4f2756fc --- /dev/null +++ b/react-icons/io/ios-pulse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosPulse extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rainy-outline.d.ts b/react-icons/io/ios-rainy-outline.d.ts new file mode 100644 index 0000000000..1976dbfa70 --- /dev/null +++ b/react-icons/io/ios-rainy-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRainyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rainy.d.ts b/react-icons/io/ios-rainy.d.ts new file mode 100644 index 0000000000..d863b5137a --- /dev/null +++ b/react-icons/io/ios-rainy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRainy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-recording-outline.d.ts b/react-icons/io/ios-recording-outline.d.ts new file mode 100644 index 0000000000..b9ce09877e --- /dev/null +++ b/react-icons/io/ios-recording-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRecordingOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-recording.d.ts b/react-icons/io/ios-recording.d.ts new file mode 100644 index 0000000000..508701e2ad --- /dev/null +++ b/react-icons/io/ios-recording.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRecording extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-redo-outline.d.ts b/react-icons/io/ios-redo-outline.d.ts new file mode 100644 index 0000000000..6e2da39538 --- /dev/null +++ b/react-icons/io/ios-redo-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRedoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-redo.d.ts b/react-icons/io/ios-redo.d.ts new file mode 100644 index 0000000000..d7bfff9e17 --- /dev/null +++ b/react-icons/io/ios-redo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRedo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh-empty.d.ts b/react-icons/io/ios-refresh-empty.d.ts new file mode 100644 index 0000000000..1da62c4c59 --- /dev/null +++ b/react-icons/io/ios-refresh-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRefreshEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh-outline.d.ts b/react-icons/io/ios-refresh-outline.d.ts new file mode 100644 index 0000000000..5d86b3ea7a --- /dev/null +++ b/react-icons/io/ios-refresh-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRefreshOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh.d.ts b/react-icons/io/ios-refresh.d.ts new file mode 100644 index 0000000000..8b90a367bd --- /dev/null +++ b/react-icons/io/ios-refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reload.d.ts b/react-icons/io/ios-reload.d.ts new file mode 100644 index 0000000000..564da43c83 --- /dev/null +++ b/react-icons/io/ios-reload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosReload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reverse-camera-outline.d.ts b/react-icons/io/ios-reverse-camera-outline.d.ts new file mode 100644 index 0000000000..716f598732 --- /dev/null +++ b/react-icons/io/ios-reverse-camera-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosReverseCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reverse-camera.d.ts b/react-icons/io/ios-reverse-camera.d.ts new file mode 100644 index 0000000000..5c1b465135 --- /dev/null +++ b/react-icons/io/ios-reverse-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosReverseCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rewind-outline.d.ts b/react-icons/io/ios-rewind-outline.d.ts new file mode 100644 index 0000000000..76a2c2a1d4 --- /dev/null +++ b/react-icons/io/ios-rewind-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRewindOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rewind.d.ts b/react-icons/io/ios-rewind.d.ts new file mode 100644 index 0000000000..5c74094306 --- /dev/null +++ b/react-icons/io/ios-rewind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rose-outline.d.ts b/react-icons/io/ios-rose-outline.d.ts new file mode 100644 index 0000000000..a83bfd1067 --- /dev/null +++ b/react-icons/io/ios-rose-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRoseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rose.d.ts b/react-icons/io/ios-rose.d.ts new file mode 100644 index 0000000000..237ac260a3 --- /dev/null +++ b/react-icons/io/ios-rose.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosRose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-search-strong.d.ts b/react-icons/io/ios-search-strong.d.ts new file mode 100644 index 0000000000..c7974eb86c --- /dev/null +++ b/react-icons/io/ios-search-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSearchStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-search.d.ts b/react-icons/io/ios-search.d.ts new file mode 100644 index 0000000000..d813f5eb96 --- /dev/null +++ b/react-icons/io/ios-search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-settings-strong.d.ts b/react-icons/io/ios-settings-strong.d.ts new file mode 100644 index 0000000000..c83103e59a --- /dev/null +++ b/react-icons/io/ios-settings-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSettingsStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-settings.d.ts b/react-icons/io/ios-settings.d.ts new file mode 100644 index 0000000000..1482858d13 --- /dev/null +++ b/react-icons/io/ios-settings.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-shuffle-strong.d.ts b/react-icons/io/ios-shuffle-strong.d.ts new file mode 100644 index 0000000000..8b32d190ef --- /dev/null +++ b/react-icons/io/ios-shuffle-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosShuffleStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-shuffle.d.ts b/react-icons/io/ios-shuffle.d.ts new file mode 100644 index 0000000000..8632ee19ac --- /dev/null +++ b/react-icons/io/ios-shuffle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipbackward-outline.d.ts b/react-icons/io/ios-skipbackward-outline.d.ts new file mode 100644 index 0000000000..286d265699 --- /dev/null +++ b/react-icons/io/ios-skipbackward-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSkipbackwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipbackward.d.ts b/react-icons/io/ios-skipbackward.d.ts new file mode 100644 index 0000000000..4a9614e01c --- /dev/null +++ b/react-icons/io/ios-skipbackward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSkipbackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipforward-outline.d.ts b/react-icons/io/ios-skipforward-outline.d.ts new file mode 100644 index 0000000000..9d8fe0d27a --- /dev/null +++ b/react-icons/io/ios-skipforward-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSkipforwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipforward.d.ts b/react-icons/io/ios-skipforward.d.ts new file mode 100644 index 0000000000..b2a4eb7355 --- /dev/null +++ b/react-icons/io/ios-skipforward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSkipforward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-snowy.d.ts b/react-icons/io/ios-snowy.d.ts new file mode 100644 index 0000000000..ef459078a1 --- /dev/null +++ b/react-icons/io/ios-snowy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSnowy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-speedometer-outline.d.ts b/react-icons/io/ios-speedometer-outline.d.ts new file mode 100644 index 0000000000..048000d0e8 --- /dev/null +++ b/react-icons/io/ios-speedometer-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSpeedometerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-speedometer.d.ts b/react-icons/io/ios-speedometer.d.ts new file mode 100644 index 0000000000..242a9a8557 --- /dev/null +++ b/react-icons/io/ios-speedometer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSpeedometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star-half.d.ts b/react-icons/io/ios-star-half.d.ts new file mode 100644 index 0000000000..e63d7a06dd --- /dev/null +++ b/react-icons/io/ios-star-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star-outline.d.ts b/react-icons/io/ios-star-outline.d.ts new file mode 100644 index 0000000000..d949366ffd --- /dev/null +++ b/react-icons/io/ios-star-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star.d.ts b/react-icons/io/ios-star.d.ts new file mode 100644 index 0000000000..0def201977 --- /dev/null +++ b/react-icons/io/ios-star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-stopwatch-outline.d.ts b/react-icons/io/ios-stopwatch-outline.d.ts new file mode 100644 index 0000000000..44586c731d --- /dev/null +++ b/react-icons/io/ios-stopwatch-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosStopwatchOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-stopwatch.d.ts b/react-icons/io/ios-stopwatch.d.ts new file mode 100644 index 0000000000..a86050cc40 --- /dev/null +++ b/react-icons/io/ios-stopwatch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-sunny-outline.d.ts b/react-icons/io/ios-sunny-outline.d.ts new file mode 100644 index 0000000000..37b1adf577 --- /dev/null +++ b/react-icons/io/ios-sunny-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSunnyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-sunny.d.ts b/react-icons/io/ios-sunny.d.ts new file mode 100644 index 0000000000..1814d882b0 --- /dev/null +++ b/react-icons/io/ios-sunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-telephone-outline.d.ts b/react-icons/io/ios-telephone-outline.d.ts new file mode 100644 index 0000000000..6f28657f22 --- /dev/null +++ b/react-icons/io/ios-telephone-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTelephoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-telephone.d.ts b/react-icons/io/ios-telephone.d.ts new file mode 100644 index 0000000000..c32673ec96 --- /dev/null +++ b/react-icons/io/ios-telephone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTelephone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-tennisball-outline.d.ts b/react-icons/io/ios-tennisball-outline.d.ts new file mode 100644 index 0000000000..b037bcede3 --- /dev/null +++ b/react-icons/io/ios-tennisball-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTennisballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-tennisball.d.ts b/react-icons/io/ios-tennisball.d.ts new file mode 100644 index 0000000000..9cc968dad9 --- /dev/null +++ b/react-icons/io/ios-tennisball.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTennisball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-thunderstorm-outline.d.ts b/react-icons/io/ios-thunderstorm-outline.d.ts new file mode 100644 index 0000000000..8b7468e163 --- /dev/null +++ b/react-icons/io/ios-thunderstorm-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosThunderstormOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-thunderstorm.d.ts b/react-icons/io/ios-thunderstorm.d.ts new file mode 100644 index 0000000000..54106c2746 --- /dev/null +++ b/react-icons/io/ios-thunderstorm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosThunderstorm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-time-outline.d.ts b/react-icons/io/ios-time-outline.d.ts new file mode 100644 index 0000000000..06e6309791 --- /dev/null +++ b/react-icons/io/ios-time-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTimeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-time.d.ts b/react-icons/io/ios-time.d.ts new file mode 100644 index 0000000000..55bf3b67eb --- /dev/null +++ b/react-icons/io/ios-time.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-timer-outline.d.ts b/react-icons/io/ios-timer-outline.d.ts new file mode 100644 index 0000000000..82a23ec9b6 --- /dev/null +++ b/react-icons/io/ios-timer-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTimerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-timer.d.ts b/react-icons/io/ios-timer.d.ts new file mode 100644 index 0000000000..30627b162f --- /dev/null +++ b/react-icons/io/ios-timer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-toggle-outline.d.ts b/react-icons/io/ios-toggle-outline.d.ts new file mode 100644 index 0000000000..e67759dfe6 --- /dev/null +++ b/react-icons/io/ios-toggle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosToggleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-toggle.d.ts b/react-icons/io/ios-toggle.d.ts new file mode 100644 index 0000000000..2aee3e63ea --- /dev/null +++ b/react-icons/io/ios-toggle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosToggle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-trash-outline.d.ts b/react-icons/io/ios-trash-outline.d.ts new file mode 100644 index 0000000000..2862e46550 --- /dev/null +++ b/react-icons/io/ios-trash-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTrashOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-trash.d.ts b/react-icons/io/ios-trash.d.ts new file mode 100644 index 0000000000..6b91106c50 --- /dev/null +++ b/react-icons/io/ios-trash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-undo-outline.d.ts b/react-icons/io/ios-undo-outline.d.ts new file mode 100644 index 0000000000..db58259ac9 --- /dev/null +++ b/react-icons/io/ios-undo-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUndoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-undo.d.ts b/react-icons/io/ios-undo.d.ts new file mode 100644 index 0000000000..e89880781b --- /dev/null +++ b/react-icons/io/ios-undo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUndo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-unlocked-outline.d.ts b/react-icons/io/ios-unlocked-outline.d.ts new file mode 100644 index 0000000000..1496245073 --- /dev/null +++ b/react-icons/io/ios-unlocked-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUnlockedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-unlocked.d.ts b/react-icons/io/ios-unlocked.d.ts new file mode 100644 index 0000000000..60cbdcbed2 --- /dev/null +++ b/react-icons/io/ios-unlocked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUnlocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-upload-outline.d.ts b/react-icons/io/ios-upload-outline.d.ts new file mode 100644 index 0000000000..9be8f844c6 --- /dev/null +++ b/react-icons/io/ios-upload-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-upload.d.ts b/react-icons/io/ios-upload.d.ts new file mode 100644 index 0000000000..9a1baef4cd --- /dev/null +++ b/react-icons/io/ios-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-videocam-outline.d.ts b/react-icons/io/ios-videocam-outline.d.ts new file mode 100644 index 0000000000..a750c55bce --- /dev/null +++ b/react-icons/io/ios-videocam-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosVideocamOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-videocam.d.ts b/react-icons/io/ios-videocam.d.ts new file mode 100644 index 0000000000..bcb949715a --- /dev/null +++ b/react-icons/io/ios-videocam.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosVideocam extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-volume-high.d.ts b/react-icons/io/ios-volume-high.d.ts new file mode 100644 index 0000000000..1d0854431f --- /dev/null +++ b/react-icons/io/ios-volume-high.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosVolumeHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-volume-low.d.ts b/react-icons/io/ios-volume-low.d.ts new file mode 100644 index 0000000000..bb13058a75 --- /dev/null +++ b/react-icons/io/ios-volume-low.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosVolumeLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-wineglass-outline.d.ts b/react-icons/io/ios-wineglass-outline.d.ts new file mode 100644 index 0000000000..a6a22340e5 --- /dev/null +++ b/react-icons/io/ios-wineglass-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosWineglassOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-wineglass.d.ts b/react-icons/io/ios-wineglass.d.ts new file mode 100644 index 0000000000..140caeb94c --- /dev/null +++ b/react-icons/io/ios-wineglass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosWineglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-world-outline.d.ts b/react-icons/io/ios-world-outline.d.ts new file mode 100644 index 0000000000..93268340c9 --- /dev/null +++ b/react-icons/io/ios-world-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosWorldOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-world.d.ts b/react-icons/io/ios-world.d.ts new file mode 100644 index 0000000000..c3885d6b5b --- /dev/null +++ b/react-icons/io/ios-world.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIosWorld extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ipad.d.ts b/react-icons/io/ipad.d.ts new file mode 100644 index 0000000000..2d84d50082 --- /dev/null +++ b/react-icons/io/ipad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIpad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/iphone.d.ts b/react-icons/io/iphone.d.ts new file mode 100644 index 0000000000..c7bf489718 --- /dev/null +++ b/react-icons/io/iphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ipod.d.ts b/react-icons/io/ipod.d.ts new file mode 100644 index 0000000000..bc8415af57 --- /dev/null +++ b/react-icons/io/ipod.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoIpod extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/jet.d.ts b/react-icons/io/jet.d.ts new file mode 100644 index 0000000000..27eb1e3fd5 --- /dev/null +++ b/react-icons/io/jet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoJet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/key.d.ts b/react-icons/io/key.d.ts new file mode 100644 index 0000000000..05b2dafdf0 --- /dev/null +++ b/react-icons/io/key.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/knife.d.ts b/react-icons/io/knife.d.ts new file mode 100644 index 0000000000..40d492aac6 --- /dev/null +++ b/react-icons/io/knife.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoKnife extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/laptop.d.ts b/react-icons/io/laptop.d.ts new file mode 100644 index 0000000000..31dba2114b --- /dev/null +++ b/react-icons/io/laptop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/leaf.d.ts b/react-icons/io/leaf.d.ts new file mode 100644 index 0000000000..c924e3d183 --- /dev/null +++ b/react-icons/io/leaf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/levels.d.ts b/react-icons/io/levels.d.ts new file mode 100644 index 0000000000..efbaa597a8 --- /dev/null +++ b/react-icons/io/levels.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLevels extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/lightbulb.d.ts b/react-icons/io/lightbulb.d.ts new file mode 100644 index 0000000000..152d4c122f --- /dev/null +++ b/react-icons/io/lightbulb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/link.d.ts b/react-icons/io/link.d.ts new file mode 100644 index 0000000000..ebf08e8bb5 --- /dev/null +++ b/react-icons/io/link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-a.d.ts b/react-icons/io/load-a.d.ts new file mode 100644 index 0000000000..01421c4472 --- /dev/null +++ b/react-icons/io/load-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLoadA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-b.d.ts b/react-icons/io/load-b.d.ts new file mode 100644 index 0000000000..6b21769c0b --- /dev/null +++ b/react-icons/io/load-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLoadB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-c.d.ts b/react-icons/io/load-c.d.ts new file mode 100644 index 0000000000..592b81af9d --- /dev/null +++ b/react-icons/io/load-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLoadC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-d.d.ts b/react-icons/io/load-d.d.ts new file mode 100644 index 0000000000..48a2d853f6 --- /dev/null +++ b/react-icons/io/load-d.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLoadD extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/location.d.ts b/react-icons/io/location.d.ts new file mode 100644 index 0000000000..e98b619117 --- /dev/null +++ b/react-icons/io/location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/lock-combination.d.ts b/react-icons/io/lock-combination.d.ts new file mode 100644 index 0000000000..c093902563 --- /dev/null +++ b/react-icons/io/lock-combination.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLockCombination extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/locked.d.ts b/react-icons/io/locked.d.ts new file mode 100644 index 0000000000..d3539a1f3c --- /dev/null +++ b/react-icons/io/locked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/log-in.d.ts b/react-icons/io/log-in.d.ts new file mode 100644 index 0000000000..ab954a4800 --- /dev/null +++ b/react-icons/io/log-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLogIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/log-out.d.ts b/react-icons/io/log-out.d.ts new file mode 100644 index 0000000000..1d7612a0ad --- /dev/null +++ b/react-icons/io/log-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLogOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/loop.d.ts b/react-icons/io/loop.d.ts new file mode 100644 index 0000000000..52a716d079 --- /dev/null +++ b/react-icons/io/loop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/magnet.d.ts b/react-icons/io/magnet.d.ts new file mode 100644 index 0000000000..76a061e7a4 --- /dev/null +++ b/react-icons/io/magnet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMagnet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/male.d.ts b/react-icons/io/male.d.ts new file mode 100644 index 0000000000..8622345fa0 --- /dev/null +++ b/react-icons/io/male.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMale extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/man.d.ts b/react-icons/io/man.d.ts new file mode 100644 index 0000000000..68e7bc1d7d --- /dev/null +++ b/react-icons/io/man.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMan extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/map.d.ts b/react-icons/io/map.d.ts new file mode 100644 index 0000000000..be365d73ab --- /dev/null +++ b/react-icons/io/map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/medkit.d.ts b/react-icons/io/medkit.d.ts new file mode 100644 index 0000000000..2b37d0cc6b --- /dev/null +++ b/react-icons/io/medkit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/merge.d.ts b/react-icons/io/merge.d.ts new file mode 100644 index 0000000000..2a60eceac8 --- /dev/null +++ b/react-icons/io/merge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-a.d.ts b/react-icons/io/mic-a.d.ts new file mode 100644 index 0000000000..89e1a6a647 --- /dev/null +++ b/react-icons/io/mic-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMicA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-b.d.ts b/react-icons/io/mic-b.d.ts new file mode 100644 index 0000000000..95543a8d0a --- /dev/null +++ b/react-icons/io/mic-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMicB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-c.d.ts b/react-icons/io/mic-c.d.ts new file mode 100644 index 0000000000..c60cb04428 --- /dev/null +++ b/react-icons/io/mic-c.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMicC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus-circled.d.ts b/react-icons/io/minus-circled.d.ts new file mode 100644 index 0000000000..7c8c1dfe1a --- /dev/null +++ b/react-icons/io/minus-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMinusCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus-round.d.ts b/react-icons/io/minus-round.d.ts new file mode 100644 index 0000000000..9530bdc521 --- /dev/null +++ b/react-icons/io/minus-round.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMinusRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus.d.ts b/react-icons/io/minus.d.ts new file mode 100644 index 0000000000..a851cedddf --- /dev/null +++ b/react-icons/io/minus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/model-s.d.ts b/react-icons/io/model-s.d.ts new file mode 100644 index 0000000000..0b4ffd2a22 --- /dev/null +++ b/react-icons/io/model-s.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoModelS extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/monitor.d.ts b/react-icons/io/monitor.d.ts new file mode 100644 index 0000000000..e70f7953d6 --- /dev/null +++ b/react-icons/io/monitor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMonitor extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/more.d.ts b/react-icons/io/more.d.ts new file mode 100644 index 0000000000..695d17462e --- /dev/null +++ b/react-icons/io/more.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mouse.d.ts b/react-icons/io/mouse.d.ts new file mode 100644 index 0000000000..2022474813 --- /dev/null +++ b/react-icons/io/mouse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMouse extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/music-note.d.ts b/react-icons/io/music-note.d.ts new file mode 100644 index 0000000000..ebfa55408b --- /dev/null +++ b/react-icons/io/music-note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoMusicNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navicon-round.d.ts b/react-icons/io/navicon-round.d.ts new file mode 100644 index 0000000000..119ceaee96 --- /dev/null +++ b/react-icons/io/navicon-round.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNaviconRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navicon.d.ts b/react-icons/io/navicon.d.ts new file mode 100644 index 0000000000..be520f726e --- /dev/null +++ b/react-icons/io/navicon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNavicon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navigate.d.ts b/react-icons/io/navigate.d.ts new file mode 100644 index 0000000000..216d0ee926 --- /dev/null +++ b/react-icons/io/navigate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/network.d.ts b/react-icons/io/network.d.ts new file mode 100644 index 0000000000..7c8012e3fc --- /dev/null +++ b/react-icons/io/network.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNetwork extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/no-smoking.d.ts b/react-icons/io/no-smoking.d.ts new file mode 100644 index 0000000000..53e9bbe1f8 --- /dev/null +++ b/react-icons/io/no-smoking.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNoSmoking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/nuclear.d.ts b/react-icons/io/nuclear.d.ts new file mode 100644 index 0000000000..58b2c7593c --- /dev/null +++ b/react-icons/io/nuclear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoNuclear extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/outlet.d.ts b/react-icons/io/outlet.d.ts new file mode 100644 index 0000000000..1019be14a1 --- /dev/null +++ b/react-icons/io/outlet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoOutlet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paintbrush.d.ts b/react-icons/io/paintbrush.d.ts new file mode 100644 index 0000000000..94c6009b41 --- /dev/null +++ b/react-icons/io/paintbrush.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPaintbrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paintbucket.d.ts b/react-icons/io/paintbucket.d.ts new file mode 100644 index 0000000000..5b01c784b6 --- /dev/null +++ b/react-icons/io/paintbucket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPaintbucket extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paper-airplane.d.ts b/react-icons/io/paper-airplane.d.ts new file mode 100644 index 0000000000..b2f425e7ad --- /dev/null +++ b/react-icons/io/paper-airplane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPaperAirplane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paperclip.d.ts b/react-icons/io/paperclip.d.ts new file mode 100644 index 0000000000..d19802bf67 --- /dev/null +++ b/react-icons/io/paperclip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPaperclip extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pause.d.ts b/react-icons/io/pause.d.ts new file mode 100644 index 0000000000..5b0cd0e095 --- /dev/null +++ b/react-icons/io/pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person-add.d.ts b/react-icons/io/person-add.d.ts new file mode 100644 index 0000000000..bfc660e94e --- /dev/null +++ b/react-icons/io/person-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person-stalker.d.ts b/react-icons/io/person-stalker.d.ts new file mode 100644 index 0000000000..9bdf35cfa3 --- /dev/null +++ b/react-icons/io/person-stalker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPersonStalker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person.d.ts b/react-icons/io/person.d.ts new file mode 100644 index 0000000000..3916645659 --- /dev/null +++ b/react-icons/io/person.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pie-graph.d.ts b/react-icons/io/pie-graph.d.ts new file mode 100644 index 0000000000..9c061bf4e0 --- /dev/null +++ b/react-icons/io/pie-graph.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPieGraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pin.d.ts b/react-icons/io/pin.d.ts new file mode 100644 index 0000000000..b203f596bc --- /dev/null +++ b/react-icons/io/pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pinpoint.d.ts b/react-icons/io/pinpoint.d.ts new file mode 100644 index 0000000000..b8880f2575 --- /dev/null +++ b/react-icons/io/pinpoint.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPinpoint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pizza.d.ts b/react-icons/io/pizza.d.ts new file mode 100644 index 0000000000..166400ea3c --- /dev/null +++ b/react-icons/io/pizza.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPizza extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plane.d.ts b/react-icons/io/plane.d.ts new file mode 100644 index 0000000000..e8627860c7 --- /dev/null +++ b/react-icons/io/plane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/planet.d.ts b/react-icons/io/planet.d.ts new file mode 100644 index 0000000000..7db404fdae --- /dev/null +++ b/react-icons/io/planet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlanet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/play.d.ts b/react-icons/io/play.d.ts new file mode 100644 index 0000000000..b56a920a89 --- /dev/null +++ b/react-icons/io/play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/playstation.d.ts b/react-icons/io/playstation.d.ts new file mode 100644 index 0000000000..31ed41da92 --- /dev/null +++ b/react-icons/io/playstation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlaystation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus-circled.d.ts b/react-icons/io/plus-circled.d.ts new file mode 100644 index 0000000000..f19668224a --- /dev/null +++ b/react-icons/io/plus-circled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlusCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus-round.d.ts b/react-icons/io/plus-round.d.ts new file mode 100644 index 0000000000..cf61ceba90 --- /dev/null +++ b/react-icons/io/plus-round.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlusRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus.d.ts b/react-icons/io/plus.d.ts new file mode 100644 index 0000000000..eee1f3f81f --- /dev/null +++ b/react-icons/io/plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/podium.d.ts b/react-icons/io/podium.d.ts new file mode 100644 index 0000000000..f0b5ebdb7d --- /dev/null +++ b/react-icons/io/podium.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPodium extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pound.d.ts b/react-icons/io/pound.d.ts new file mode 100644 index 0000000000..f6791e0a0e --- /dev/null +++ b/react-icons/io/pound.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/power.d.ts b/react-icons/io/power.d.ts new file mode 100644 index 0000000000..89e46866a4 --- /dev/null +++ b/react-icons/io/power.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pricetag.d.ts b/react-icons/io/pricetag.d.ts new file mode 100644 index 0000000000..8fc1c881a0 --- /dev/null +++ b/react-icons/io/pricetag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPricetag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pricetags.d.ts b/react-icons/io/pricetags.d.ts new file mode 100644 index 0000000000..eb1d8430c9 --- /dev/null +++ b/react-icons/io/pricetags.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPricetags extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/printer.d.ts b/react-icons/io/printer.d.ts new file mode 100644 index 0000000000..b4a1716d97 --- /dev/null +++ b/react-icons/io/printer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pull-request.d.ts b/react-icons/io/pull-request.d.ts new file mode 100644 index 0000000000..65d179496e --- /dev/null +++ b/react-icons/io/pull-request.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoPullRequest extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/qr-scanner.d.ts b/react-icons/io/qr-scanner.d.ts new file mode 100644 index 0000000000..6436fba2c4 --- /dev/null +++ b/react-icons/io/qr-scanner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoQrScanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/quote.d.ts b/react-icons/io/quote.d.ts new file mode 100644 index 0000000000..366c6395ff --- /dev/null +++ b/react-icons/io/quote.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/radio-waves.d.ts b/react-icons/io/radio-waves.d.ts new file mode 100644 index 0000000000..3cf80e2a0b --- /dev/null +++ b/react-icons/io/radio-waves.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoRadioWaves extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/record.d.ts b/react-icons/io/record.d.ts new file mode 100644 index 0000000000..ad70cb6cbf --- /dev/null +++ b/react-icons/io/record.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/refresh.d.ts b/react-icons/io/refresh.d.ts new file mode 100644 index 0000000000..c62284a276 --- /dev/null +++ b/react-icons/io/refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/reply-all.d.ts b/react-icons/io/reply-all.d.ts new file mode 100644 index 0000000000..33d7774c06 --- /dev/null +++ b/react-icons/io/reply-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/reply.d.ts b/react-icons/io/reply.d.ts new file mode 100644 index 0000000000..235d1068de --- /dev/null +++ b/react-icons/io/reply.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ribbon-a.d.ts b/react-icons/io/ribbon-a.d.ts new file mode 100644 index 0000000000..1ee693b002 --- /dev/null +++ b/react-icons/io/ribbon-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoRibbonA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ribbon-b.d.ts b/react-icons/io/ribbon-b.d.ts new file mode 100644 index 0000000000..9cca09c3a8 --- /dev/null +++ b/react-icons/io/ribbon-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoRibbonB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/sad-outline.d.ts b/react-icons/io/sad-outline.d.ts new file mode 100644 index 0000000000..1c6fd61305 --- /dev/null +++ b/react-icons/io/sad-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/sad.d.ts b/react-icons/io/sad.d.ts new file mode 100644 index 0000000000..32b641ce54 --- /dev/null +++ b/react-icons/io/sad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/scissors.d.ts b/react-icons/io/scissors.d.ts new file mode 100644 index 0000000000..9b7620bbdd --- /dev/null +++ b/react-icons/io/scissors.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoScissors extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/search.d.ts b/react-icons/io/search.d.ts new file mode 100644 index 0000000000..2ba5a16848 --- /dev/null +++ b/react-icons/io/search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/settings.d.ts b/react-icons/io/settings.d.ts new file mode 100644 index 0000000000..37cf11551e --- /dev/null +++ b/react-icons/io/settings.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/share.d.ts b/react-icons/io/share.d.ts new file mode 100644 index 0000000000..b1c6858a5d --- /dev/null +++ b/react-icons/io/share.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/shuffle.d.ts b/react-icons/io/shuffle.d.ts new file mode 100644 index 0000000000..7709ea6cd6 --- /dev/null +++ b/react-icons/io/shuffle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/skip-backward.d.ts b/react-icons/io/skip-backward.d.ts new file mode 100644 index 0000000000..997b9a6f77 --- /dev/null +++ b/react-icons/io/skip-backward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSkipBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/skip-forward.d.ts b/react-icons/io/skip-forward.d.ts new file mode 100644 index 0000000000..4f34a9d7ba --- /dev/null +++ b/react-icons/io/skip-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSkipForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-android-outline.d.ts b/react-icons/io/social-android-outline.d.ts new file mode 100644 index 0000000000..d701471dd1 --- /dev/null +++ b/react-icons/io/social-android-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialAndroidOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-android.d.ts b/react-icons/io/social-android.d.ts new file mode 100644 index 0000000000..402a24cf6f --- /dev/null +++ b/react-icons/io/social-android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-angular-outline.d.ts b/react-icons/io/social-angular-outline.d.ts new file mode 100644 index 0000000000..ef8f6579ef --- /dev/null +++ b/react-icons/io/social-angular-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialAngularOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-angular.d.ts b/react-icons/io/social-angular.d.ts new file mode 100644 index 0000000000..4d9c9ae8c1 --- /dev/null +++ b/react-icons/io/social-angular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialAngular extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-apple-outline.d.ts b/react-icons/io/social-apple-outline.d.ts new file mode 100644 index 0000000000..9cb3045198 --- /dev/null +++ b/react-icons/io/social-apple-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialAppleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-apple.d.ts b/react-icons/io/social-apple.d.ts new file mode 100644 index 0000000000..31298b7c63 --- /dev/null +++ b/react-icons/io/social-apple.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-bitcoin-outline.d.ts b/react-icons/io/social-bitcoin-outline.d.ts new file mode 100644 index 0000000000..3b6bcefc1a --- /dev/null +++ b/react-icons/io/social-bitcoin-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialBitcoinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-bitcoin.d.ts b/react-icons/io/social-bitcoin.d.ts new file mode 100644 index 0000000000..152f0c1f2b --- /dev/null +++ b/react-icons/io/social-bitcoin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialBitcoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-buffer-outline.d.ts b/react-icons/io/social-buffer-outline.d.ts new file mode 100644 index 0000000000..4b95f78758 --- /dev/null +++ b/react-icons/io/social-buffer-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialBufferOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-buffer.d.ts b/react-icons/io/social-buffer.d.ts new file mode 100644 index 0000000000..861b3a0911 --- /dev/null +++ b/react-icons/io/social-buffer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialBuffer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-chrome-outline.d.ts b/react-icons/io/social-chrome-outline.d.ts new file mode 100644 index 0000000000..b680f6c83f --- /dev/null +++ b/react-icons/io/social-chrome-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialChromeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-chrome.d.ts b/react-icons/io/social-chrome.d.ts new file mode 100644 index 0000000000..6ee5f5fe38 --- /dev/null +++ b/react-icons/io/social-chrome.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialChrome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-codepen-outline.d.ts b/react-icons/io/social-codepen-outline.d.ts new file mode 100644 index 0000000000..a123c85962 --- /dev/null +++ b/react-icons/io/social-codepen-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialCodepenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-codepen.d.ts b/react-icons/io/social-codepen.d.ts new file mode 100644 index 0000000000..61561cf3ae --- /dev/null +++ b/react-icons/io/social-codepen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialCodepen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-css3-outline.d.ts b/react-icons/io/social-css3-outline.d.ts new file mode 100644 index 0000000000..de5aff309f --- /dev/null +++ b/react-icons/io/social-css3-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialCss3Outline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-css3.d.ts b/react-icons/io/social-css3.d.ts new file mode 100644 index 0000000000..08d966dd55 --- /dev/null +++ b/react-icons/io/social-css3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-designernews-outline.d.ts b/react-icons/io/social-designernews-outline.d.ts new file mode 100644 index 0000000000..7bd38e555a --- /dev/null +++ b/react-icons/io/social-designernews-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDesignernewsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-designernews.d.ts b/react-icons/io/social-designernews.d.ts new file mode 100644 index 0000000000..cf3b19371e --- /dev/null +++ b/react-icons/io/social-designernews.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDesignernews extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dribbble-outline.d.ts b/react-icons/io/social-dribbble-outline.d.ts new file mode 100644 index 0000000000..9f6fa48cc9 --- /dev/null +++ b/react-icons/io/social-dribbble-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDribbbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dribbble.d.ts b/react-icons/io/social-dribbble.d.ts new file mode 100644 index 0000000000..b6377dcfec --- /dev/null +++ b/react-icons/io/social-dribbble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dropbox-outline.d.ts b/react-icons/io/social-dropbox-outline.d.ts new file mode 100644 index 0000000000..f26a72ab55 --- /dev/null +++ b/react-icons/io/social-dropbox-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDropboxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dropbox.d.ts b/react-icons/io/social-dropbox.d.ts new file mode 100644 index 0000000000..a7e67cbdaf --- /dev/null +++ b/react-icons/io/social-dropbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-euro-outline.d.ts b/react-icons/io/social-euro-outline.d.ts new file mode 100644 index 0000000000..de666464c3 --- /dev/null +++ b/react-icons/io/social-euro-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialEuroOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-euro.d.ts b/react-icons/io/social-euro.d.ts new file mode 100644 index 0000000000..05df3959f3 --- /dev/null +++ b/react-icons/io/social-euro.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialEuro extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-facebook-outline.d.ts b/react-icons/io/social-facebook-outline.d.ts new file mode 100644 index 0000000000..33071fa0d6 --- /dev/null +++ b/react-icons/io/social-facebook-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialFacebookOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-facebook.d.ts b/react-icons/io/social-facebook.d.ts new file mode 100644 index 0000000000..a8ea48f3e1 --- /dev/null +++ b/react-icons/io/social-facebook.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-foursquare-outline.d.ts b/react-icons/io/social-foursquare-outline.d.ts new file mode 100644 index 0000000000..aa2d412d8b --- /dev/null +++ b/react-icons/io/social-foursquare-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialFoursquareOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-foursquare.d.ts b/react-icons/io/social-foursquare.d.ts new file mode 100644 index 0000000000..4af14b20c1 --- /dev/null +++ b/react-icons/io/social-foursquare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialFoursquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-freebsd-devil.d.ts b/react-icons/io/social-freebsd-devil.d.ts new file mode 100644 index 0000000000..c002b2946b --- /dev/null +++ b/react-icons/io/social-freebsd-devil.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialFreebsdDevil extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-github-outline.d.ts b/react-icons/io/social-github-outline.d.ts new file mode 100644 index 0000000000..1af7af0e15 --- /dev/null +++ b/react-icons/io/social-github-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGithubOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-github.d.ts b/react-icons/io/social-github.d.ts new file mode 100644 index 0000000000..b92e464939 --- /dev/null +++ b/react-icons/io/social-github.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-google-outline.d.ts b/react-icons/io/social-google-outline.d.ts new file mode 100644 index 0000000000..fe834694e5 --- /dev/null +++ b/react-icons/io/social-google-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGoogleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-google.d.ts b/react-icons/io/social-google.d.ts new file mode 100644 index 0000000000..ef0b687b8e --- /dev/null +++ b/react-icons/io/social-google.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGoogle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-googleplus-outline.d.ts b/react-icons/io/social-googleplus-outline.d.ts new file mode 100644 index 0000000000..eb39911934 --- /dev/null +++ b/react-icons/io/social-googleplus-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGoogleplusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-googleplus.d.ts b/react-icons/io/social-googleplus.d.ts new file mode 100644 index 0000000000..6307245f68 --- /dev/null +++ b/react-icons/io/social-googleplus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialGoogleplus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-hackernews-outline.d.ts b/react-icons/io/social-hackernews-outline.d.ts new file mode 100644 index 0000000000..f50dd0d4fa --- /dev/null +++ b/react-icons/io/social-hackernews-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialHackernewsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-hackernews.d.ts b/react-icons/io/social-hackernews.d.ts new file mode 100644 index 0000000000..9dbf779fd4 --- /dev/null +++ b/react-icons/io/social-hackernews.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialHackernews extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-html5-outline.d.ts b/react-icons/io/social-html5-outline.d.ts new file mode 100644 index 0000000000..f350210563 --- /dev/null +++ b/react-icons/io/social-html5-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialHtml5Outline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-html5.d.ts b/react-icons/io/social-html5.d.ts new file mode 100644 index 0000000000..199e976e4b --- /dev/null +++ b/react-icons/io/social-html5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-instagram-outline.d.ts b/react-icons/io/social-instagram-outline.d.ts new file mode 100644 index 0000000000..b23db225a5 --- /dev/null +++ b/react-icons/io/social-instagram-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialInstagramOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-instagram.d.ts b/react-icons/io/social-instagram.d.ts new file mode 100644 index 0000000000..126b8c6c07 --- /dev/null +++ b/react-icons/io/social-instagram.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-javascript-outline.d.ts b/react-icons/io/social-javascript-outline.d.ts new file mode 100644 index 0000000000..27ff65ef9a --- /dev/null +++ b/react-icons/io/social-javascript-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialJavascriptOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-javascript.d.ts b/react-icons/io/social-javascript.d.ts new file mode 100644 index 0000000000..a6234509b8 --- /dev/null +++ b/react-icons/io/social-javascript.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialJavascript extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-linkedin-outline.d.ts b/react-icons/io/social-linkedin-outline.d.ts new file mode 100644 index 0000000000..b1f7c9081b --- /dev/null +++ b/react-icons/io/social-linkedin-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialLinkedinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-linkedin.d.ts b/react-icons/io/social-linkedin.d.ts new file mode 100644 index 0000000000..d18382fc37 --- /dev/null +++ b/react-icons/io/social-linkedin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-markdown.d.ts b/react-icons/io/social-markdown.d.ts new file mode 100644 index 0000000000..a24229e995 --- /dev/null +++ b/react-icons/io/social-markdown.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialMarkdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-nodejs.d.ts b/react-icons/io/social-nodejs.d.ts new file mode 100644 index 0000000000..12a1c9c7a9 --- /dev/null +++ b/react-icons/io/social-nodejs.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialNodejs extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-octocat.d.ts b/react-icons/io/social-octocat.d.ts new file mode 100644 index 0000000000..16d6459764 --- /dev/null +++ b/react-icons/io/social-octocat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialOctocat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-pinterest-outline.d.ts b/react-icons/io/social-pinterest-outline.d.ts new file mode 100644 index 0000000000..30f6f1dc26 --- /dev/null +++ b/react-icons/io/social-pinterest-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialPinterestOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-pinterest.d.ts b/react-icons/io/social-pinterest.d.ts new file mode 100644 index 0000000000..62da22c9ba --- /dev/null +++ b/react-icons/io/social-pinterest.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-python.d.ts b/react-icons/io/social-python.d.ts new file mode 100644 index 0000000000..904c00771e --- /dev/null +++ b/react-icons/io/social-python.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialPython extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-reddit-outline.d.ts b/react-icons/io/social-reddit-outline.d.ts new file mode 100644 index 0000000000..0c29fb1713 --- /dev/null +++ b/react-icons/io/social-reddit-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialRedditOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-reddit.d.ts b/react-icons/io/social-reddit.d.ts new file mode 100644 index 0000000000..fea98a9427 --- /dev/null +++ b/react-icons/io/social-reddit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialReddit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-rss-outline.d.ts b/react-icons/io/social-rss-outline.d.ts new file mode 100644 index 0000000000..982d12d958 --- /dev/null +++ b/react-icons/io/social-rss-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialRssOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-rss.d.ts b/react-icons/io/social-rss.d.ts new file mode 100644 index 0000000000..f8531f904e --- /dev/null +++ b/react-icons/io/social-rss.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-sass.d.ts b/react-icons/io/social-sass.d.ts new file mode 100644 index 0000000000..335582a86e --- /dev/null +++ b/react-icons/io/social-sass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialSass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-skype-outline.d.ts b/react-icons/io/social-skype-outline.d.ts new file mode 100644 index 0000000000..d3bcc480a6 --- /dev/null +++ b/react-icons/io/social-skype-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialSkypeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-skype.d.ts b/react-icons/io/social-skype.d.ts new file mode 100644 index 0000000000..1027e27bc4 --- /dev/null +++ b/react-icons/io/social-skype.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-snapchat-outline.d.ts b/react-icons/io/social-snapchat-outline.d.ts new file mode 100644 index 0000000000..9224a9a53b --- /dev/null +++ b/react-icons/io/social-snapchat-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialSnapchatOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-snapchat.d.ts b/react-icons/io/social-snapchat.d.ts new file mode 100644 index 0000000000..85c73efbeb --- /dev/null +++ b/react-icons/io/social-snapchat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialSnapchat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tumblr-outline.d.ts b/react-icons/io/social-tumblr-outline.d.ts new file mode 100644 index 0000000000..c53ebeb776 --- /dev/null +++ b/react-icons/io/social-tumblr-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTumblrOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tumblr.d.ts b/react-icons/io/social-tumblr.d.ts new file mode 100644 index 0000000000..21bedfaab4 --- /dev/null +++ b/react-icons/io/social-tumblr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTumblr extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tux.d.ts b/react-icons/io/social-tux.d.ts new file mode 100644 index 0000000000..bcb334e888 --- /dev/null +++ b/react-icons/io/social-tux.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTux extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitch-outline.d.ts b/react-icons/io/social-twitch-outline.d.ts new file mode 100644 index 0000000000..58d0143fb1 --- /dev/null +++ b/react-icons/io/social-twitch-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTwitchOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitch.d.ts b/react-icons/io/social-twitch.d.ts new file mode 100644 index 0000000000..30fca19177 --- /dev/null +++ b/react-icons/io/social-twitch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitter-outline.d.ts b/react-icons/io/social-twitter-outline.d.ts new file mode 100644 index 0000000000..0b99f4915d --- /dev/null +++ b/react-icons/io/social-twitter-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTwitterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitter.d.ts b/react-icons/io/social-twitter.d.ts new file mode 100644 index 0000000000..bb68f877a7 --- /dev/null +++ b/react-icons/io/social-twitter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-usd-outline.d.ts b/react-icons/io/social-usd-outline.d.ts new file mode 100644 index 0000000000..87a374d90c --- /dev/null +++ b/react-icons/io/social-usd-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialUsdOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-usd.d.ts b/react-icons/io/social-usd.d.ts new file mode 100644 index 0000000000..7e59793b77 --- /dev/null +++ b/react-icons/io/social-usd.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialUsd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-vimeo-outline.d.ts b/react-icons/io/social-vimeo-outline.d.ts new file mode 100644 index 0000000000..bd06e0a589 --- /dev/null +++ b/react-icons/io/social-vimeo-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialVimeoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-vimeo.d.ts b/react-icons/io/social-vimeo.d.ts new file mode 100644 index 0000000000..db7ba718ee --- /dev/null +++ b/react-icons/io/social-vimeo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-whatsapp-outline.d.ts b/react-icons/io/social-whatsapp-outline.d.ts new file mode 100644 index 0000000000..52a8a670fc --- /dev/null +++ b/react-icons/io/social-whatsapp-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWhatsappOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-whatsapp.d.ts b/react-icons/io/social-whatsapp.d.ts new file mode 100644 index 0000000000..5ad86eaba9 --- /dev/null +++ b/react-icons/io/social-whatsapp.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWhatsapp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-windows-outline.d.ts b/react-icons/io/social-windows-outline.d.ts new file mode 100644 index 0000000000..1b6a6bdaae --- /dev/null +++ b/react-icons/io/social-windows-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWindowsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-windows.d.ts b/react-icons/io/social-windows.d.ts new file mode 100644 index 0000000000..e5b4ab4f0e --- /dev/null +++ b/react-icons/io/social-windows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-wordpress-outline.d.ts b/react-icons/io/social-wordpress-outline.d.ts new file mode 100644 index 0000000000..39b50eb908 --- /dev/null +++ b/react-icons/io/social-wordpress-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWordpressOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-wordpress.d.ts b/react-icons/io/social-wordpress.d.ts new file mode 100644 index 0000000000..465fbfeb5a --- /dev/null +++ b/react-icons/io/social-wordpress.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialWordpress extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yahoo-outline.d.ts b/react-icons/io/social-yahoo-outline.d.ts new file mode 100644 index 0000000000..8ba24396f3 --- /dev/null +++ b/react-icons/io/social-yahoo-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYahooOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yahoo.d.ts b/react-icons/io/social-yahoo.d.ts new file mode 100644 index 0000000000..6765dae4fd --- /dev/null +++ b/react-icons/io/social-yahoo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYahoo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yen-outline.d.ts b/react-icons/io/social-yen-outline.d.ts new file mode 100644 index 0000000000..2d4cb13638 --- /dev/null +++ b/react-icons/io/social-yen-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yen.d.ts b/react-icons/io/social-yen.d.ts new file mode 100644 index 0000000000..32c1d38c0c --- /dev/null +++ b/react-icons/io/social-yen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-youtube-outline.d.ts b/react-icons/io/social-youtube-outline.d.ts new file mode 100644 index 0000000000..aa264d9269 --- /dev/null +++ b/react-icons/io/social-youtube-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYoutubeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-youtube.d.ts b/react-icons/io/social-youtube.d.ts new file mode 100644 index 0000000000..2c95b92289 --- /dev/null +++ b/react-icons/io/social-youtube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSocialYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/soup-can-outline.d.ts b/react-icons/io/soup-can-outline.d.ts new file mode 100644 index 0000000000..acb476af05 --- /dev/null +++ b/react-icons/io/soup-can-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSoupCanOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/soup-can.d.ts b/react-icons/io/soup-can.d.ts new file mode 100644 index 0000000000..ea47ab79d4 --- /dev/null +++ b/react-icons/io/soup-can.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSoupCan extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/speakerphone.d.ts b/react-icons/io/speakerphone.d.ts new file mode 100644 index 0000000000..d8572af7e5 --- /dev/null +++ b/react-icons/io/speakerphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSpeakerphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/speedometer.d.ts b/react-icons/io/speedometer.d.ts new file mode 100644 index 0000000000..bac34b411c --- /dev/null +++ b/react-icons/io/speedometer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSpeedometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/spoon.d.ts b/react-icons/io/spoon.d.ts new file mode 100644 index 0000000000..d524e9d8e8 --- /dev/null +++ b/react-icons/io/spoon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSpoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/star.d.ts b/react-icons/io/star.d.ts new file mode 100644 index 0000000000..e8c0290df9 --- /dev/null +++ b/react-icons/io/star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/stats-bars.d.ts b/react-icons/io/stats-bars.d.ts new file mode 100644 index 0000000000..0190e36b1a --- /dev/null +++ b/react-icons/io/stats-bars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoStatsBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/steam.d.ts b/react-icons/io/steam.d.ts new file mode 100644 index 0000000000..299f5178eb --- /dev/null +++ b/react-icons/io/steam.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoSteam extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/stop.d.ts b/react-icons/io/stop.d.ts new file mode 100644 index 0000000000..803a7e1168 --- /dev/null +++ b/react-icons/io/stop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thermometer.d.ts b/react-icons/io/thermometer.d.ts new file mode 100644 index 0000000000..1d12a78157 --- /dev/null +++ b/react-icons/io/thermometer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoThermometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thumbsdown.d.ts b/react-icons/io/thumbsdown.d.ts new file mode 100644 index 0000000000..4ddb3eefd3 --- /dev/null +++ b/react-icons/io/thumbsdown.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoThumbsdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thumbsup.d.ts b/react-icons/io/thumbsup.d.ts new file mode 100644 index 0000000000..1a18ff5518 --- /dev/null +++ b/react-icons/io/thumbsup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoThumbsup extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/toggle-filled.d.ts b/react-icons/io/toggle-filled.d.ts new file mode 100644 index 0000000000..fa53a3270c --- /dev/null +++ b/react-icons/io/toggle-filled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoToggleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/toggle.d.ts b/react-icons/io/toggle.d.ts new file mode 100644 index 0000000000..a47e348928 --- /dev/null +++ b/react-icons/io/toggle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoToggle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/transgender.d.ts b/react-icons/io/transgender.d.ts new file mode 100644 index 0000000000..f844d58ded --- /dev/null +++ b/react-icons/io/transgender.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTransgender extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trash-a.d.ts b/react-icons/io/trash-a.d.ts new file mode 100644 index 0000000000..1e9289c450 --- /dev/null +++ b/react-icons/io/trash-a.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTrashA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trash-b.d.ts b/react-icons/io/trash-b.d.ts new file mode 100644 index 0000000000..b83fb80c6e --- /dev/null +++ b/react-icons/io/trash-b.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTrashB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trophy.d.ts b/react-icons/io/trophy.d.ts new file mode 100644 index 0000000000..190f41f4f0 --- /dev/null +++ b/react-icons/io/trophy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTrophy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/tshirt-outline.d.ts b/react-icons/io/tshirt-outline.d.ts new file mode 100644 index 0000000000..9abb8d8855 --- /dev/null +++ b/react-icons/io/tshirt-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTshirtOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/tshirt.d.ts b/react-icons/io/tshirt.d.ts new file mode 100644 index 0000000000..2542976a4a --- /dev/null +++ b/react-icons/io/tshirt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoTshirt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/umbrella.d.ts b/react-icons/io/umbrella.d.ts new file mode 100644 index 0000000000..4ce53a4254 --- /dev/null +++ b/react-icons/io/umbrella.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoUmbrella extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/university.d.ts b/react-icons/io/university.d.ts new file mode 100644 index 0000000000..a4d09ec898 --- /dev/null +++ b/react-icons/io/university.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoUniversity extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/unlocked.d.ts b/react-icons/io/unlocked.d.ts new file mode 100644 index 0000000000..e64b8c24ab --- /dev/null +++ b/react-icons/io/unlocked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoUnlocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/upload.d.ts b/react-icons/io/upload.d.ts new file mode 100644 index 0000000000..e75aea206a --- /dev/null +++ b/react-icons/io/upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/usb.d.ts b/react-icons/io/usb.d.ts new file mode 100644 index 0000000000..261e94feaf --- /dev/null +++ b/react-icons/io/usb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/videocamera.d.ts b/react-icons/io/videocamera.d.ts new file mode 100644 index 0000000000..95e509bff3 --- /dev/null +++ b/react-icons/io/videocamera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoVideocamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-high.d.ts b/react-icons/io/volume-high.d.ts new file mode 100644 index 0000000000..a6d53f534f --- /dev/null +++ b/react-icons/io/volume-high.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoVolumeHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-low.d.ts b/react-icons/io/volume-low.d.ts new file mode 100644 index 0000000000..d2ed4cfc86 --- /dev/null +++ b/react-icons/io/volume-low.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoVolumeLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-medium.d.ts b/react-icons/io/volume-medium.d.ts new file mode 100644 index 0000000000..353822883d --- /dev/null +++ b/react-icons/io/volume-medium.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoVolumeMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-mute.d.ts b/react-icons/io/volume-mute.d.ts new file mode 100644 index 0000000000..82ed44e8f9 --- /dev/null +++ b/react-icons/io/volume-mute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wand.d.ts b/react-icons/io/wand.d.ts new file mode 100644 index 0000000000..4f3270455e --- /dev/null +++ b/react-icons/io/wand.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/waterdrop.d.ts b/react-icons/io/waterdrop.d.ts new file mode 100644 index 0000000000..5f0685a85d --- /dev/null +++ b/react-icons/io/waterdrop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWaterdrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wifi.d.ts b/react-icons/io/wifi.d.ts new file mode 100644 index 0000000000..8732a95264 --- /dev/null +++ b/react-icons/io/wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wineglass.d.ts b/react-icons/io/wineglass.d.ts new file mode 100644 index 0000000000..c196ca273f --- /dev/null +++ b/react-icons/io/wineglass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWineglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/woman.d.ts b/react-icons/io/woman.d.ts new file mode 100644 index 0000000000..1359d9cf99 --- /dev/null +++ b/react-icons/io/woman.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWoman extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wrench.d.ts b/react-icons/io/wrench.d.ts new file mode 100644 index 0000000000..24b1b59d4a --- /dev/null +++ b/react-icons/io/wrench.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoWrench extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/xbox.d.ts b/react-icons/io/xbox.d.ts new file mode 100644 index 0000000000..86eb5706e0 --- /dev/null +++ b/react-icons/io/xbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class IoXbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/3d-rotation.d.ts b/react-icons/md/3d-rotation.d.ts new file mode 100644 index 0000000000..19e765ab5f --- /dev/null +++ b/react-icons/md/3d-rotation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class Md3dRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ac-unit.d.ts b/react-icons/md/ac-unit.d.ts new file mode 100644 index 0000000000..58bedaa746 --- /dev/null +++ b/react-icons/md/ac-unit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAcUnit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-alarm.d.ts b/react-icons/md/access-alarm.d.ts new file mode 100644 index 0000000000..119b5519db --- /dev/null +++ b/react-icons/md/access-alarm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccessAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-alarms.d.ts b/react-icons/md/access-alarms.d.ts new file mode 100644 index 0000000000..0ea0447905 --- /dev/null +++ b/react-icons/md/access-alarms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccessAlarms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-time.d.ts b/react-icons/md/access-time.d.ts new file mode 100644 index 0000000000..38b2738390 --- /dev/null +++ b/react-icons/md/access-time.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccessTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/accessibility.d.ts b/react-icons/md/accessibility.d.ts new file mode 100644 index 0000000000..278057de76 --- /dev/null +++ b/react-icons/md/accessibility.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccessibility extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/accessible.d.ts b/react-icons/md/accessible.d.ts new file mode 100644 index 0000000000..6893d94002 --- /dev/null +++ b/react-icons/md/accessible.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccessible extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-balance-wallet.d.ts b/react-icons/md/account-balance-wallet.d.ts new file mode 100644 index 0000000000..ce4a3289f4 --- /dev/null +++ b/react-icons/md/account-balance-wallet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccountBalanceWallet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-balance.d.ts b/react-icons/md/account-balance.d.ts new file mode 100644 index 0000000000..457d0bb081 --- /dev/null +++ b/react-icons/md/account-balance.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccountBalance extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-box.d.ts b/react-icons/md/account-box.d.ts new file mode 100644 index 0000000000..f4f3d1adf5 --- /dev/null +++ b/react-icons/md/account-box.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccountBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-circle.d.ts b/react-icons/md/account-circle.d.ts new file mode 100644 index 0000000000..f9743e9304 --- /dev/null +++ b/react-icons/md/account-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAccountCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/adb.d.ts b/react-icons/md/adb.d.ts new file mode 100644 index 0000000000..f35bce79fa --- /dev/null +++ b/react-icons/md/adb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAdb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-a-photo.d.ts b/react-icons/md/add-a-photo.d.ts new file mode 100644 index 0000000000..e9709bb745 --- /dev/null +++ b/react-icons/md/add-a-photo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddAPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-alarm.d.ts b/react-icons/md/add-alarm.d.ts new file mode 100644 index 0000000000..443f68dbea --- /dev/null +++ b/react-icons/md/add-alarm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-alert.d.ts b/react-icons/md/add-alert.d.ts new file mode 100644 index 0000000000..cb594072d0 --- /dev/null +++ b/react-icons/md/add-alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-box.d.ts b/react-icons/md/add-box.d.ts new file mode 100644 index 0000000000..e37e29e4de --- /dev/null +++ b/react-icons/md/add-box.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-circle-outline.d.ts b/react-icons/md/add-circle-outline.d.ts new file mode 100644 index 0000000000..4114c83a51 --- /dev/null +++ b/react-icons/md/add-circle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-circle.d.ts b/react-icons/md/add-circle.d.ts new file mode 100644 index 0000000000..32b0438ccc --- /dev/null +++ b/react-icons/md/add-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-location.d.ts b/react-icons/md/add-location.d.ts new file mode 100644 index 0000000000..c028f1852a --- /dev/null +++ b/react-icons/md/add-location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-shopping-cart.d.ts b/react-icons/md/add-shopping-cart.d.ts new file mode 100644 index 0000000000..adbbd1821b --- /dev/null +++ b/react-icons/md/add-shopping-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-to-photos.d.ts b/react-icons/md/add-to-photos.d.ts new file mode 100644 index 0000000000..7e8c00f276 --- /dev/null +++ b/react-icons/md/add-to-photos.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddToPhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-to-queue.d.ts b/react-icons/md/add-to-queue.d.ts new file mode 100644 index 0000000000..ca3cad9f74 --- /dev/null +++ b/react-icons/md/add-to-queue.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAddToQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add.d.ts b/react-icons/md/add.d.ts new file mode 100644 index 0000000000..f5cbee9adc --- /dev/null +++ b/react-icons/md/add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/adjust.d.ts b/react-icons/md/adjust.d.ts new file mode 100644 index 0000000000..1a52fcd840 --- /dev/null +++ b/react-icons/md/adjust.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAdjust extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-flat-angled.d.ts b/react-icons/md/airline-seat-flat-angled.d.ts new file mode 100644 index 0000000000..63ee4a6362 --- /dev/null +++ b/react-icons/md/airline-seat-flat-angled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatFlatAngled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-flat.d.ts b/react-icons/md/airline-seat-flat.d.ts new file mode 100644 index 0000000000..165a767f3e --- /dev/null +++ b/react-icons/md/airline-seat-flat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatFlat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-individual-suite.d.ts b/react-icons/md/airline-seat-individual-suite.d.ts new file mode 100644 index 0000000000..d230031301 --- /dev/null +++ b/react-icons/md/airline-seat-individual-suite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatIndividualSuite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-extra.d.ts b/react-icons/md/airline-seat-legroom-extra.d.ts new file mode 100644 index 0000000000..6f3bd28393 --- /dev/null +++ b/react-icons/md/airline-seat-legroom-extra.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatLegroomExtra extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-normal.d.ts b/react-icons/md/airline-seat-legroom-normal.d.ts new file mode 100644 index 0000000000..35a8c00596 --- /dev/null +++ b/react-icons/md/airline-seat-legroom-normal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatLegroomNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-reduced.d.ts b/react-icons/md/airline-seat-legroom-reduced.d.ts new file mode 100644 index 0000000000..0fb47f4dc9 --- /dev/null +++ b/react-icons/md/airline-seat-legroom-reduced.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatLegroomReduced extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-recline-extra.d.ts b/react-icons/md/airline-seat-recline-extra.d.ts new file mode 100644 index 0000000000..3af6223633 --- /dev/null +++ b/react-icons/md/airline-seat-recline-extra.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatReclineExtra extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-recline-normal.d.ts b/react-icons/md/airline-seat-recline-normal.d.ts new file mode 100644 index 0000000000..2b7e334ee0 --- /dev/null +++ b/react-icons/md/airline-seat-recline-normal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirlineSeatReclineNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplanemode-active.d.ts b/react-icons/md/airplanemode-active.d.ts new file mode 100644 index 0000000000..c94a1b43ba --- /dev/null +++ b/react-icons/md/airplanemode-active.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirplanemodeActive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplanemode-inactive.d.ts b/react-icons/md/airplanemode-inactive.d.ts new file mode 100644 index 0000000000..3e786eedc2 --- /dev/null +++ b/react-icons/md/airplanemode-inactive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirplanemodeInactive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplay.d.ts b/react-icons/md/airplay.d.ts new file mode 100644 index 0000000000..5ff9ea4f74 --- /dev/null +++ b/react-icons/md/airplay.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirplay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airport-shuttle.d.ts b/react-icons/md/airport-shuttle.d.ts new file mode 100644 index 0000000000..b9c472bd4a --- /dev/null +++ b/react-icons/md/airport-shuttle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAirportShuttle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-add.d.ts b/react-icons/md/alarm-add.d.ts new file mode 100644 index 0000000000..c8eaf5d017 --- /dev/null +++ b/react-icons/md/alarm-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAlarmAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-off.d.ts b/react-icons/md/alarm-off.d.ts new file mode 100644 index 0000000000..6c9583ea6d --- /dev/null +++ b/react-icons/md/alarm-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAlarmOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-on.d.ts b/react-icons/md/alarm-on.d.ts new file mode 100644 index 0000000000..2ae4c856fd --- /dev/null +++ b/react-icons/md/alarm-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAlarmOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm.d.ts b/react-icons/md/alarm.d.ts new file mode 100644 index 0000000000..8850827bf8 --- /dev/null +++ b/react-icons/md/alarm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/album.d.ts b/react-icons/md/album.d.ts new file mode 100644 index 0000000000..0706d24c4f --- /dev/null +++ b/react-icons/md/album.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAlbum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/all-inclusive.d.ts b/react-icons/md/all-inclusive.d.ts new file mode 100644 index 0000000000..29636993ed --- /dev/null +++ b/react-icons/md/all-inclusive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAllInclusive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/all-out.d.ts b/react-icons/md/all-out.d.ts new file mode 100644 index 0000000000..7d9c85efdf --- /dev/null +++ b/react-icons/md/all-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAllOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/android.d.ts b/react-icons/md/android.d.ts new file mode 100644 index 0000000000..cd501a7c56 --- /dev/null +++ b/react-icons/md/android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/announcement.d.ts b/react-icons/md/announcement.d.ts new file mode 100644 index 0000000000..6dd45cf8fc --- /dev/null +++ b/react-icons/md/announcement.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAnnouncement extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/apps.d.ts b/react-icons/md/apps.d.ts new file mode 100644 index 0000000000..e606dd5002 --- /dev/null +++ b/react-icons/md/apps.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdApps extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/archive.d.ts b/react-icons/md/archive.d.ts new file mode 100644 index 0000000000..f11b161368 --- /dev/null +++ b/react-icons/md/archive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-back.d.ts b/react-icons/md/arrow-back.d.ts new file mode 100644 index 0000000000..e8e01df8b0 --- /dev/null +++ b/react-icons/md/arrow-back.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-downward.d.ts b/react-icons/md/arrow-downward.d.ts new file mode 100644 index 0000000000..8d8425f3ec --- /dev/null +++ b/react-icons/md/arrow-downward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowDownward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-down-circle.d.ts b/react-icons/md/arrow-drop-down-circle.d.ts new file mode 100644 index 0000000000..f8ccf1da95 --- /dev/null +++ b/react-icons/md/arrow-drop-down-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowDropDownCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-down.d.ts b/react-icons/md/arrow-drop-down.d.ts new file mode 100644 index 0000000000..3e84ea4edb --- /dev/null +++ b/react-icons/md/arrow-drop-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowDropDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-up.d.ts b/react-icons/md/arrow-drop-up.d.ts new file mode 100644 index 0000000000..0d0ea12f7d --- /dev/null +++ b/react-icons/md/arrow-drop-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowDropUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-forward.d.ts b/react-icons/md/arrow-forward.d.ts new file mode 100644 index 0000000000..77ec2664cd --- /dev/null +++ b/react-icons/md/arrow-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-upward.d.ts b/react-icons/md/arrow-upward.d.ts new file mode 100644 index 0000000000..c310093ef3 --- /dev/null +++ b/react-icons/md/arrow-upward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArrowUpward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/art-track.d.ts b/react-icons/md/art-track.d.ts new file mode 100644 index 0000000000..aac05766d3 --- /dev/null +++ b/react-icons/md/art-track.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdArtTrack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/aspect-ratio.d.ts b/react-icons/md/aspect-ratio.d.ts new file mode 100644 index 0000000000..dfba6900ad --- /dev/null +++ b/react-icons/md/aspect-ratio.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAspectRatio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assessment.d.ts b/react-icons/md/assessment.d.ts new file mode 100644 index 0000000000..9a5b370b5d --- /dev/null +++ b/react-icons/md/assessment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssessment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-ind.d.ts b/react-icons/md/assignment-ind.d.ts new file mode 100644 index 0000000000..173222418a --- /dev/null +++ b/react-icons/md/assignment-ind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignmentInd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-late.d.ts b/react-icons/md/assignment-late.d.ts new file mode 100644 index 0000000000..04c04762ff --- /dev/null +++ b/react-icons/md/assignment-late.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignmentLate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-return.d.ts b/react-icons/md/assignment-return.d.ts new file mode 100644 index 0000000000..77bac5b502 --- /dev/null +++ b/react-icons/md/assignment-return.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignmentReturn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-returned.d.ts b/react-icons/md/assignment-returned.d.ts new file mode 100644 index 0000000000..0f98090ed3 --- /dev/null +++ b/react-icons/md/assignment-returned.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignmentReturned extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-turned-in.d.ts b/react-icons/md/assignment-turned-in.d.ts new file mode 100644 index 0000000000..5a39d4a04c --- /dev/null +++ b/react-icons/md/assignment-turned-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignmentTurnedIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment.d.ts b/react-icons/md/assignment.d.ts new file mode 100644 index 0000000000..c44a9712e2 --- /dev/null +++ b/react-icons/md/assignment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssignment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assistant-photo.d.ts b/react-icons/md/assistant-photo.d.ts new file mode 100644 index 0000000000..03c8221f9d --- /dev/null +++ b/react-icons/md/assistant-photo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssistantPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assistant.d.ts b/react-icons/md/assistant.d.ts new file mode 100644 index 0000000000..dfa373633a --- /dev/null +++ b/react-icons/md/assistant.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAssistant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attach-file.d.ts b/react-icons/md/attach-file.d.ts new file mode 100644 index 0000000000..d6bd375aa6 --- /dev/null +++ b/react-icons/md/attach-file.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAttachFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attach-money.d.ts b/react-icons/md/attach-money.d.ts new file mode 100644 index 0000000000..2547240b9b --- /dev/null +++ b/react-icons/md/attach-money.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAttachMoney extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attachment.d.ts b/react-icons/md/attachment.d.ts new file mode 100644 index 0000000000..319803626d --- /dev/null +++ b/react-icons/md/attachment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAttachment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/audiotrack.d.ts b/react-icons/md/audiotrack.d.ts new file mode 100644 index 0000000000..a7dcac4f5b --- /dev/null +++ b/react-icons/md/audiotrack.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAudiotrack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/autorenew.d.ts b/react-icons/md/autorenew.d.ts new file mode 100644 index 0000000000..d6d3ad5882 --- /dev/null +++ b/react-icons/md/autorenew.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAutorenew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/av-timer.d.ts b/react-icons/md/av-timer.d.ts new file mode 100644 index 0000000000..dc2123ce77 --- /dev/null +++ b/react-icons/md/av-timer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdAvTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/backspace.d.ts b/react-icons/md/backspace.d.ts new file mode 100644 index 0000000000..2f2b351a08 --- /dev/null +++ b/react-icons/md/backspace.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/backup.d.ts b/react-icons/md/backup.d.ts new file mode 100644 index 0000000000..9ebfb6e163 --- /dev/null +++ b/react-icons/md/backup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBackup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-alert.d.ts b/react-icons/md/battery-alert.d.ts new file mode 100644 index 0000000000..416976e8da --- /dev/null +++ b/react-icons/md/battery-alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBatteryAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-charging-full.d.ts b/react-icons/md/battery-charging-full.d.ts new file mode 100644 index 0000000000..382a0fd32d --- /dev/null +++ b/react-icons/md/battery-charging-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBatteryChargingFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-full.d.ts b/react-icons/md/battery-full.d.ts new file mode 100644 index 0000000000..34e16d5cec --- /dev/null +++ b/react-icons/md/battery-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-std.d.ts b/react-icons/md/battery-std.d.ts new file mode 100644 index 0000000000..a8d6b896f7 --- /dev/null +++ b/react-icons/md/battery-std.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBatteryStd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-unknown.d.ts b/react-icons/md/battery-unknown.d.ts new file mode 100644 index 0000000000..b46f9ffd27 --- /dev/null +++ b/react-icons/md/battery-unknown.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBatteryUnknown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/beach-access.d.ts b/react-icons/md/beach-access.d.ts new file mode 100644 index 0000000000..cda4a2440f --- /dev/null +++ b/react-icons/md/beach-access.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBeachAccess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/beenhere.d.ts b/react-icons/md/beenhere.d.ts new file mode 100644 index 0000000000..5a222aed28 --- /dev/null +++ b/react-icons/md/beenhere.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBeenhere extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/block.d.ts b/react-icons/md/block.d.ts new file mode 100644 index 0000000000..60f382ec29 --- /dev/null +++ b/react-icons/md/block.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-audio.d.ts b/react-icons/md/bluetooth-audio.d.ts new file mode 100644 index 0000000000..64b2d08e95 --- /dev/null +++ b/react-icons/md/bluetooth-audio.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBluetoothAudio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-connected.d.ts b/react-icons/md/bluetooth-connected.d.ts new file mode 100644 index 0000000000..152f72af9c --- /dev/null +++ b/react-icons/md/bluetooth-connected.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBluetoothConnected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-disabled.d.ts b/react-icons/md/bluetooth-disabled.d.ts new file mode 100644 index 0000000000..16787e69be --- /dev/null +++ b/react-icons/md/bluetooth-disabled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBluetoothDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-searching.d.ts b/react-icons/md/bluetooth-searching.d.ts new file mode 100644 index 0000000000..915fcdbe3b --- /dev/null +++ b/react-icons/md/bluetooth-searching.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBluetoothSearching extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth.d.ts b/react-icons/md/bluetooth.d.ts new file mode 100644 index 0000000000..6d3d10d0df --- /dev/null +++ b/react-icons/md/bluetooth.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-circular.d.ts b/react-icons/md/blur-circular.d.ts new file mode 100644 index 0000000000..932925a316 --- /dev/null +++ b/react-icons/md/blur-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBlurCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-linear.d.ts b/react-icons/md/blur-linear.d.ts new file mode 100644 index 0000000000..0a72b6c6a6 --- /dev/null +++ b/react-icons/md/blur-linear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBlurLinear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-off.d.ts b/react-icons/md/blur-off.d.ts new file mode 100644 index 0000000000..4c3fce012e --- /dev/null +++ b/react-icons/md/blur-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBlurOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-on.d.ts b/react-icons/md/blur-on.d.ts new file mode 100644 index 0000000000..bdfc8a53a9 --- /dev/null +++ b/react-icons/md/blur-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBlurOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/book.d.ts b/react-icons/md/book.d.ts new file mode 100644 index 0000000000..2a1ed10849 --- /dev/null +++ b/react-icons/md/book.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bookmark-outline.d.ts b/react-icons/md/bookmark-outline.d.ts new file mode 100644 index 0000000000..74aebf5678 --- /dev/null +++ b/react-icons/md/bookmark-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBookmarkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bookmark.d.ts b/react-icons/md/bookmark.d.ts new file mode 100644 index 0000000000..2b23c0dd2f --- /dev/null +++ b/react-icons/md/bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-all.d.ts b/react-icons/md/border-all.d.ts new file mode 100644 index 0000000000..3e1d491618 --- /dev/null +++ b/react-icons/md/border-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-bottom.d.ts b/react-icons/md/border-bottom.d.ts new file mode 100644 index 0000000000..e19b8f3022 --- /dev/null +++ b/react-icons/md/border-bottom.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderBottom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-clear.d.ts b/react-icons/md/border-clear.d.ts new file mode 100644 index 0000000000..e334c9af3a --- /dev/null +++ b/react-icons/md/border-clear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-color.d.ts b/react-icons/md/border-color.d.ts new file mode 100644 index 0000000000..a15796c8b7 --- /dev/null +++ b/react-icons/md/border-color.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderColor extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-horizontal.d.ts b/react-icons/md/border-horizontal.d.ts new file mode 100644 index 0000000000..6b4a418272 --- /dev/null +++ b/react-icons/md/border-horizontal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-inner.d.ts b/react-icons/md/border-inner.d.ts new file mode 100644 index 0000000000..5cb3a4c990 --- /dev/null +++ b/react-icons/md/border-inner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderInner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-left.d.ts b/react-icons/md/border-left.d.ts new file mode 100644 index 0000000000..353f7a6446 --- /dev/null +++ b/react-icons/md/border-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-outer.d.ts b/react-icons/md/border-outer.d.ts new file mode 100644 index 0000000000..cff1e7d824 --- /dev/null +++ b/react-icons/md/border-outer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderOuter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-right.d.ts b/react-icons/md/border-right.d.ts new file mode 100644 index 0000000000..be0243dbea --- /dev/null +++ b/react-icons/md/border-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-style.d.ts b/react-icons/md/border-style.d.ts new file mode 100644 index 0000000000..fa54f25dd2 --- /dev/null +++ b/react-icons/md/border-style.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-top.d.ts b/react-icons/md/border-top.d.ts new file mode 100644 index 0000000000..5590914fed --- /dev/null +++ b/react-icons/md/border-top.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderTop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-vertical.d.ts b/react-icons/md/border-vertical.d.ts new file mode 100644 index 0000000000..c406f3df32 --- /dev/null +++ b/react-icons/md/border-vertical.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBorderVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/branding-watermark.d.ts b/react-icons/md/branding-watermark.d.ts new file mode 100644 index 0000000000..9c53bc6b01 --- /dev/null +++ b/react-icons/md/branding-watermark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrandingWatermark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-1.d.ts b/react-icons/md/brightness-1.d.ts new file mode 100644 index 0000000000..ddc2ab0546 --- /dev/null +++ b/react-icons/md/brightness-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-2.d.ts b/react-icons/md/brightness-2.d.ts new file mode 100644 index 0000000000..702c6bdb0c --- /dev/null +++ b/react-icons/md/brightness-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-3.d.ts b/react-icons/md/brightness-3.d.ts new file mode 100644 index 0000000000..5cc3747f95 --- /dev/null +++ b/react-icons/md/brightness-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-4.d.ts b/react-icons/md/brightness-4.d.ts new file mode 100644 index 0000000000..2ee97fd50f --- /dev/null +++ b/react-icons/md/brightness-4.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-5.d.ts b/react-icons/md/brightness-5.d.ts new file mode 100644 index 0000000000..a7bddd84f7 --- /dev/null +++ b/react-icons/md/brightness-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-6.d.ts b/react-icons/md/brightness-6.d.ts new file mode 100644 index 0000000000..2b272f3ead --- /dev/null +++ b/react-icons/md/brightness-6.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-7.d.ts b/react-icons/md/brightness-7.d.ts new file mode 100644 index 0000000000..d46ab5ccab --- /dev/null +++ b/react-icons/md/brightness-7.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightness7 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-auto.d.ts b/react-icons/md/brightness-auto.d.ts new file mode 100644 index 0000000000..e3f0e57bf4 --- /dev/null +++ b/react-icons/md/brightness-auto.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightnessAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-high.d.ts b/react-icons/md/brightness-high.d.ts new file mode 100644 index 0000000000..341ee34b20 --- /dev/null +++ b/react-icons/md/brightness-high.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightnessHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-low.d.ts b/react-icons/md/brightness-low.d.ts new file mode 100644 index 0000000000..ee60528413 --- /dev/null +++ b/react-icons/md/brightness-low.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightnessLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-medium.d.ts b/react-icons/md/brightness-medium.d.ts new file mode 100644 index 0000000000..2be9995869 --- /dev/null +++ b/react-icons/md/brightness-medium.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrightnessMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/broken-image.d.ts b/react-icons/md/broken-image.d.ts new file mode 100644 index 0000000000..623bb33bb8 --- /dev/null +++ b/react-icons/md/broken-image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrokenImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brush.d.ts b/react-icons/md/brush.d.ts new file mode 100644 index 0000000000..64d753b38f --- /dev/null +++ b/react-icons/md/brush.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bubble-chart.d.ts b/react-icons/md/bubble-chart.d.ts new file mode 100644 index 0000000000..4cfe3aa2ae --- /dev/null +++ b/react-icons/md/bubble-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBubbleChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bug-report.d.ts b/react-icons/md/bug-report.d.ts new file mode 100644 index 0000000000..0c0ec6e20e --- /dev/null +++ b/react-icons/md/bug-report.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBugReport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/build.d.ts b/react-icons/md/build.d.ts new file mode 100644 index 0000000000..3523760005 --- /dev/null +++ b/react-icons/md/build.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBuild extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/burst-mode.d.ts b/react-icons/md/burst-mode.d.ts new file mode 100644 index 0000000000..3a5b696556 --- /dev/null +++ b/react-icons/md/burst-mode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBurstMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/business-center.d.ts b/react-icons/md/business-center.d.ts new file mode 100644 index 0000000000..26cfd38279 --- /dev/null +++ b/react-icons/md/business-center.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBusinessCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/business.d.ts b/react-icons/md/business.d.ts new file mode 100644 index 0000000000..ee164a1f8a --- /dev/null +++ b/react-icons/md/business.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdBusiness extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cached.d.ts b/react-icons/md/cached.d.ts new file mode 100644 index 0000000000..82f1de3846 --- /dev/null +++ b/react-icons/md/cached.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCached extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cake.d.ts b/react-icons/md/cake.d.ts new file mode 100644 index 0000000000..3aec6e753d --- /dev/null +++ b/react-icons/md/cake.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCake extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-end.d.ts b/react-icons/md/call-end.d.ts new file mode 100644 index 0000000000..8503cd0495 --- /dev/null +++ b/react-icons/md/call-end.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallEnd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-made.d.ts b/react-icons/md/call-made.d.ts new file mode 100644 index 0000000000..e992aaa135 --- /dev/null +++ b/react-icons/md/call-made.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallMade extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-merge.d.ts b/react-icons/md/call-merge.d.ts new file mode 100644 index 0000000000..18517a6f12 --- /dev/null +++ b/react-icons/md/call-merge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-missed-outgoing.d.ts b/react-icons/md/call-missed-outgoing.d.ts new file mode 100644 index 0000000000..3e0b2bf351 --- /dev/null +++ b/react-icons/md/call-missed-outgoing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallMissedOutgoing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-missed.d.ts b/react-icons/md/call-missed.d.ts new file mode 100644 index 0000000000..09fc83dac5 --- /dev/null +++ b/react-icons/md/call-missed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallMissed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-received.d.ts b/react-icons/md/call-received.d.ts new file mode 100644 index 0000000000..f7f4fd0bb9 --- /dev/null +++ b/react-icons/md/call-received.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallReceived extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-split.d.ts b/react-icons/md/call-split.d.ts new file mode 100644 index 0000000000..7159575113 --- /dev/null +++ b/react-icons/md/call-split.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallSplit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-to-action.d.ts b/react-icons/md/call-to-action.d.ts new file mode 100644 index 0000000000..c9a48703e6 --- /dev/null +++ b/react-icons/md/call-to-action.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCallToAction extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call.d.ts b/react-icons/md/call.d.ts new file mode 100644 index 0000000000..1c2040ace7 --- /dev/null +++ b/react-icons/md/call.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-alt.d.ts b/react-icons/md/camera-alt.d.ts new file mode 100644 index 0000000000..d6c3172baa --- /dev/null +++ b/react-icons/md/camera-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCameraAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-enhance.d.ts b/react-icons/md/camera-enhance.d.ts new file mode 100644 index 0000000000..28d3e6a791 --- /dev/null +++ b/react-icons/md/camera-enhance.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCameraEnhance extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-front.d.ts b/react-icons/md/camera-front.d.ts new file mode 100644 index 0000000000..8e8285e738 --- /dev/null +++ b/react-icons/md/camera-front.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCameraFront extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-rear.d.ts b/react-icons/md/camera-rear.d.ts new file mode 100644 index 0000000000..4968c3246e --- /dev/null +++ b/react-icons/md/camera-rear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCameraRear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-roll.d.ts b/react-icons/md/camera-roll.d.ts new file mode 100644 index 0000000000..938cc391c0 --- /dev/null +++ b/react-icons/md/camera-roll.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCameraRoll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera.d.ts b/react-icons/md/camera.d.ts new file mode 100644 index 0000000000..59820447fa --- /dev/null +++ b/react-icons/md/camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cancel.d.ts b/react-icons/md/cancel.d.ts new file mode 100644 index 0000000000..d7bd231cf6 --- /dev/null +++ b/react-icons/md/cancel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-giftcard.d.ts b/react-icons/md/card-giftcard.d.ts new file mode 100644 index 0000000000..bb35b79ab4 --- /dev/null +++ b/react-icons/md/card-giftcard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCardGiftcard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-membership.d.ts b/react-icons/md/card-membership.d.ts new file mode 100644 index 0000000000..e1c995c8d6 --- /dev/null +++ b/react-icons/md/card-membership.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCardMembership extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-travel.d.ts b/react-icons/md/card-travel.d.ts new file mode 100644 index 0000000000..cf5f4b444e --- /dev/null +++ b/react-icons/md/card-travel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCardTravel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/casino.d.ts b/react-icons/md/casino.d.ts new file mode 100644 index 0000000000..020c36edf7 --- /dev/null +++ b/react-icons/md/casino.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCasino extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cast-connected.d.ts b/react-icons/md/cast-connected.d.ts new file mode 100644 index 0000000000..e9092f7d0e --- /dev/null +++ b/react-icons/md/cast-connected.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCastConnected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cast.d.ts b/react-icons/md/cast.d.ts new file mode 100644 index 0000000000..61fc21f368 --- /dev/null +++ b/react-icons/md/cast.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCast extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/center-focus-strong.d.ts b/react-icons/md/center-focus-strong.d.ts new file mode 100644 index 0000000000..3ec0dac572 --- /dev/null +++ b/react-icons/md/center-focus-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCenterFocusStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/center-focus-weak.d.ts b/react-icons/md/center-focus-weak.d.ts new file mode 100644 index 0000000000..1ee251df6a --- /dev/null +++ b/react-icons/md/center-focus-weak.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCenterFocusWeak extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/change-history.d.ts b/react-icons/md/change-history.d.ts new file mode 100644 index 0000000000..03b54bf9cb --- /dev/null +++ b/react-icons/md/change-history.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChangeHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat-bubble-outline.d.ts b/react-icons/md/chat-bubble-outline.d.ts new file mode 100644 index 0000000000..1f9bfe9cd8 --- /dev/null +++ b/react-icons/md/chat-bubble-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChatBubbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat-bubble.d.ts b/react-icons/md/chat-bubble.d.ts new file mode 100644 index 0000000000..1e22764d25 --- /dev/null +++ b/react-icons/md/chat-bubble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChatBubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat.d.ts b/react-icons/md/chat.d.ts new file mode 100644 index 0000000000..1ffa7a2243 --- /dev/null +++ b/react-icons/md/chat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-box-outline-blank.d.ts b/react-icons/md/check-box-outline-blank.d.ts new file mode 100644 index 0000000000..634bdf2a2c --- /dev/null +++ b/react-icons/md/check-box-outline-blank.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCheckBoxOutlineBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-box.d.ts b/react-icons/md/check-box.d.ts new file mode 100644 index 0000000000..ed7930efd9 --- /dev/null +++ b/react-icons/md/check-box.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCheckBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-circle.d.ts b/react-icons/md/check-circle.d.ts new file mode 100644 index 0000000000..de13aaafb5 --- /dev/null +++ b/react-icons/md/check-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCheckCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check.d.ts b/react-icons/md/check.d.ts new file mode 100644 index 0000000000..01cff35374 --- /dev/null +++ b/react-icons/md/check.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chevron-left.d.ts b/react-icons/md/chevron-left.d.ts new file mode 100644 index 0000000000..f035ad104c --- /dev/null +++ b/react-icons/md/chevron-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chevron-right.d.ts b/react-icons/md/chevron-right.d.ts new file mode 100644 index 0000000000..20d2ea43a5 --- /dev/null +++ b/react-icons/md/chevron-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/child-care.d.ts b/react-icons/md/child-care.d.ts new file mode 100644 index 0000000000..055ad660fc --- /dev/null +++ b/react-icons/md/child-care.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChildCare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/child-friendly.d.ts b/react-icons/md/child-friendly.d.ts new file mode 100644 index 0000000000..34745844d6 --- /dev/null +++ b/react-icons/md/child-friendly.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChildFriendly extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chrome-reader-mode.d.ts b/react-icons/md/chrome-reader-mode.d.ts new file mode 100644 index 0000000000..a8cbcaf328 --- /dev/null +++ b/react-icons/md/chrome-reader-mode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdChromeReaderMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/class.d.ts b/react-icons/md/class.d.ts new file mode 100644 index 0000000000..8d027bc449 --- /dev/null +++ b/react-icons/md/class.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdClass extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/clear-all.d.ts b/react-icons/md/clear-all.d.ts new file mode 100644 index 0000000000..8fd8b0f0ef --- /dev/null +++ b/react-icons/md/clear-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdClearAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/clear.d.ts b/react-icons/md/clear.d.ts new file mode 100644 index 0000000000..5f3d4a0ef7 --- /dev/null +++ b/react-icons/md/clear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/close.d.ts b/react-icons/md/close.d.ts new file mode 100644 index 0000000000..a505e930f1 --- /dev/null +++ b/react-icons/md/close.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/closed-caption.d.ts b/react-icons/md/closed-caption.d.ts new file mode 100644 index 0000000000..9b473ae236 --- /dev/null +++ b/react-icons/md/closed-caption.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdClosedCaption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-circle.d.ts b/react-icons/md/cloud-circle.d.ts new file mode 100644 index 0000000000..5bf3352b85 --- /dev/null +++ b/react-icons/md/cloud-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-done.d.ts b/react-icons/md/cloud-done.d.ts new file mode 100644 index 0000000000..337188364b --- /dev/null +++ b/react-icons/md/cloud-done.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-download.d.ts b/react-icons/md/cloud-download.d.ts new file mode 100644 index 0000000000..96b778b938 --- /dev/null +++ b/react-icons/md/cloud-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-off.d.ts b/react-icons/md/cloud-off.d.ts new file mode 100644 index 0000000000..8679a3a2d6 --- /dev/null +++ b/react-icons/md/cloud-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-queue.d.ts b/react-icons/md/cloud-queue.d.ts new file mode 100644 index 0000000000..6348b0cc53 --- /dev/null +++ b/react-icons/md/cloud-queue.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-upload.d.ts b/react-icons/md/cloud-upload.d.ts new file mode 100644 index 0000000000..301b539cfb --- /dev/null +++ b/react-icons/md/cloud-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud.d.ts b/react-icons/md/cloud.d.ts new file mode 100644 index 0000000000..c3bddc054c --- /dev/null +++ b/react-icons/md/cloud.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/code.d.ts b/react-icons/md/code.d.ts new file mode 100644 index 0000000000..d0a339c9cb --- /dev/null +++ b/react-icons/md/code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/collections-bookmark.d.ts b/react-icons/md/collections-bookmark.d.ts new file mode 100644 index 0000000000..e0c0a7c17e --- /dev/null +++ b/react-icons/md/collections-bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCollectionsBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/collections.d.ts b/react-icons/md/collections.d.ts new file mode 100644 index 0000000000..8b977ef58f --- /dev/null +++ b/react-icons/md/collections.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCollections extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/color-lens.d.ts b/react-icons/md/color-lens.d.ts new file mode 100644 index 0000000000..e436db591e --- /dev/null +++ b/react-icons/md/color-lens.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdColorLens extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/colorize.d.ts b/react-icons/md/colorize.d.ts new file mode 100644 index 0000000000..a6fe6863b3 --- /dev/null +++ b/react-icons/md/colorize.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdColorize extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/comment.d.ts b/react-icons/md/comment.d.ts new file mode 100644 index 0000000000..1e97d4cb01 --- /dev/null +++ b/react-icons/md/comment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/compare-arrows.d.ts b/react-icons/md/compare-arrows.d.ts new file mode 100644 index 0000000000..61420ba2c4 --- /dev/null +++ b/react-icons/md/compare-arrows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCompareArrows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/compare.d.ts b/react-icons/md/compare.d.ts new file mode 100644 index 0000000000..6240434f3c --- /dev/null +++ b/react-icons/md/compare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCompare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/computer.d.ts b/react-icons/md/computer.d.ts new file mode 100644 index 0000000000..9d72743312 --- /dev/null +++ b/react-icons/md/computer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdComputer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/confirmation-number.d.ts b/react-icons/md/confirmation-number.d.ts new file mode 100644 index 0000000000..e5a74280b2 --- /dev/null +++ b/react-icons/md/confirmation-number.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdConfirmationNumber extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contact-mail.d.ts b/react-icons/md/contact-mail.d.ts new file mode 100644 index 0000000000..0ade90df21 --- /dev/null +++ b/react-icons/md/contact-mail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContactMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contact-phone.d.ts b/react-icons/md/contact-phone.d.ts new file mode 100644 index 0000000000..cd298779c2 --- /dev/null +++ b/react-icons/md/contact-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContactPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contacts.d.ts b/react-icons/md/contacts.d.ts new file mode 100644 index 0000000000..b21ebeadcf --- /dev/null +++ b/react-icons/md/contacts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-copy.d.ts b/react-icons/md/content-copy.d.ts new file mode 100644 index 0000000000..1fa4c2c4e7 --- /dev/null +++ b/react-icons/md/content-copy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContentCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-cut.d.ts b/react-icons/md/content-cut.d.ts new file mode 100644 index 0000000000..ad12a7dcbe --- /dev/null +++ b/react-icons/md/content-cut.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContentCut extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-paste.d.ts b/react-icons/md/content-paste.d.ts new file mode 100644 index 0000000000..91ca107619 --- /dev/null +++ b/react-icons/md/content-paste.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdContentPaste extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/control-point-duplicate.d.ts b/react-icons/md/control-point-duplicate.d.ts new file mode 100644 index 0000000000..fefa78758f --- /dev/null +++ b/react-icons/md/control-point-duplicate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdControlPointDuplicate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/control-point.d.ts b/react-icons/md/control-point.d.ts new file mode 100644 index 0000000000..d30f5b828e --- /dev/null +++ b/react-icons/md/control-point.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdControlPoint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/copyright.d.ts b/react-icons/md/copyright.d.ts new file mode 100644 index 0000000000..d638a0472f --- /dev/null +++ b/react-icons/md/copyright.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCopyright extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/create-new-folder.d.ts b/react-icons/md/create-new-folder.d.ts new file mode 100644 index 0000000000..6bb187aca2 --- /dev/null +++ b/react-icons/md/create-new-folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCreateNewFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/create.d.ts b/react-icons/md/create.d.ts new file mode 100644 index 0000000000..a844c16865 --- /dev/null +++ b/react-icons/md/create.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCreate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/credit-card.d.ts b/react-icons/md/credit-card.d.ts new file mode 100644 index 0000000000..2518880524 --- /dev/null +++ b/react-icons/md/credit-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-16-9.d.ts b/react-icons/md/crop-16-9.d.ts new file mode 100644 index 0000000000..36db803d73 --- /dev/null +++ b/react-icons/md/crop-16-9.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCrop169 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-3-2.d.ts b/react-icons/md/crop-3-2.d.ts new file mode 100644 index 0000000000..1a9d515e06 --- /dev/null +++ b/react-icons/md/crop-3-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCrop32 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-5-4.d.ts b/react-icons/md/crop-5-4.d.ts new file mode 100644 index 0000000000..8d273f0b70 --- /dev/null +++ b/react-icons/md/crop-5-4.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCrop54 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-7-5.d.ts b/react-icons/md/crop-7-5.d.ts new file mode 100644 index 0000000000..b4ca3793ec --- /dev/null +++ b/react-icons/md/crop-7-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCrop75 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-din.d.ts b/react-icons/md/crop-din.d.ts new file mode 100644 index 0000000000..d872be1e03 --- /dev/null +++ b/react-icons/md/crop-din.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropDin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-free.d.ts b/react-icons/md/crop-free.d.ts new file mode 100644 index 0000000000..31b56f854b --- /dev/null +++ b/react-icons/md/crop-free.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropFree extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-landscape.d.ts b/react-icons/md/crop-landscape.d.ts new file mode 100644 index 0000000000..10a47e3100 --- /dev/null +++ b/react-icons/md/crop-landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-original.d.ts b/react-icons/md/crop-original.d.ts new file mode 100644 index 0000000000..a5514257cb --- /dev/null +++ b/react-icons/md/crop-original.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropOriginal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-portrait.d.ts b/react-icons/md/crop-portrait.d.ts new file mode 100644 index 0000000000..d18ac7c85f --- /dev/null +++ b/react-icons/md/crop-portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-rotate.d.ts b/react-icons/md/crop-rotate.d.ts new file mode 100644 index 0000000000..b259775e9c --- /dev/null +++ b/react-icons/md/crop-rotate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropRotate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-square.d.ts b/react-icons/md/crop-square.d.ts new file mode 100644 index 0000000000..350872f53a --- /dev/null +++ b/react-icons/md/crop-square.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCropSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop.d.ts b/react-icons/md/crop.d.ts new file mode 100644 index 0000000000..45a5438d78 --- /dev/null +++ b/react-icons/md/crop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dashboard.d.ts b/react-icons/md/dashboard.d.ts new file mode 100644 index 0000000000..f9bab209a4 --- /dev/null +++ b/react-icons/md/dashboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/data-usage.d.ts b/react-icons/md/data-usage.d.ts new file mode 100644 index 0000000000..9c74afde64 --- /dev/null +++ b/react-icons/md/data-usage.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDataUsage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/date-range.d.ts b/react-icons/md/date-range.d.ts new file mode 100644 index 0000000000..14366e2d04 --- /dev/null +++ b/react-icons/md/date-range.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDateRange extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dehaze.d.ts b/react-icons/md/dehaze.d.ts new file mode 100644 index 0000000000..e2fdf12415 --- /dev/null +++ b/react-icons/md/dehaze.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDehaze extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete-forever.d.ts b/react-icons/md/delete-forever.d.ts new file mode 100644 index 0000000000..a46f65ba9e --- /dev/null +++ b/react-icons/md/delete-forever.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDeleteForever extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete-sweep.d.ts b/react-icons/md/delete-sweep.d.ts new file mode 100644 index 0000000000..4ffc936e8a --- /dev/null +++ b/react-icons/md/delete-sweep.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDeleteSweep extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete.d.ts b/react-icons/md/delete.d.ts new file mode 100644 index 0000000000..1045f39a3b --- /dev/null +++ b/react-icons/md/delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/description.d.ts b/react-icons/md/description.d.ts new file mode 100644 index 0000000000..721bb25213 --- /dev/null +++ b/react-icons/md/description.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDescription extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/desktop-mac.d.ts b/react-icons/md/desktop-mac.d.ts new file mode 100644 index 0000000000..761168179f --- /dev/null +++ b/react-icons/md/desktop-mac.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDesktopMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/desktop-windows.d.ts b/react-icons/md/desktop-windows.d.ts new file mode 100644 index 0000000000..70335a5419 --- /dev/null +++ b/react-icons/md/desktop-windows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDesktopWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/details.d.ts b/react-icons/md/details.d.ts new file mode 100644 index 0000000000..1f73d98048 --- /dev/null +++ b/react-icons/md/details.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDetails extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/developer-board.d.ts b/react-icons/md/developer-board.d.ts new file mode 100644 index 0000000000..f8957b9e5f --- /dev/null +++ b/react-icons/md/developer-board.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDeveloperBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/developer-mode.d.ts b/react-icons/md/developer-mode.d.ts new file mode 100644 index 0000000000..40872e163c --- /dev/null +++ b/react-icons/md/developer-mode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDeveloperMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/device-hub.d.ts b/react-icons/md/device-hub.d.ts new file mode 100644 index 0000000000..666bca2a81 --- /dev/null +++ b/react-icons/md/device-hub.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDeviceHub extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/devices-other.d.ts b/react-icons/md/devices-other.d.ts new file mode 100644 index 0000000000..07c18026c3 --- /dev/null +++ b/react-icons/md/devices-other.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDevicesOther extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/devices.d.ts b/react-icons/md/devices.d.ts new file mode 100644 index 0000000000..81946c825f --- /dev/null +++ b/react-icons/md/devices.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDevices extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dialer-sip.d.ts b/react-icons/md/dialer-sip.d.ts new file mode 100644 index 0000000000..b29d3be8b2 --- /dev/null +++ b/react-icons/md/dialer-sip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDialerSip extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dialpad.d.ts b/react-icons/md/dialpad.d.ts new file mode 100644 index 0000000000..7644b13154 --- /dev/null +++ b/react-icons/md/dialpad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDialpad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-bike.d.ts b/react-icons/md/directions-bike.d.ts new file mode 100644 index 0000000000..ba7c94af4a --- /dev/null +++ b/react-icons/md/directions-bike.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsBike extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-boat.d.ts b/react-icons/md/directions-boat.d.ts new file mode 100644 index 0000000000..eae9599e6f --- /dev/null +++ b/react-icons/md/directions-boat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsBoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-bus.d.ts b/react-icons/md/directions-bus.d.ts new file mode 100644 index 0000000000..0e3e2446c9 --- /dev/null +++ b/react-icons/md/directions-bus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-car.d.ts b/react-icons/md/directions-car.d.ts new file mode 100644 index 0000000000..f62997b885 --- /dev/null +++ b/react-icons/md/directions-car.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsCar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-ferry.d.ts b/react-icons/md/directions-ferry.d.ts new file mode 100644 index 0000000000..237ca41571 --- /dev/null +++ b/react-icons/md/directions-ferry.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsFerry extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-railway.d.ts b/react-icons/md/directions-railway.d.ts new file mode 100644 index 0000000000..0037a8b11f --- /dev/null +++ b/react-icons/md/directions-railway.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsRailway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-run.d.ts b/react-icons/md/directions-run.d.ts new file mode 100644 index 0000000000..391e653b1d --- /dev/null +++ b/react-icons/md/directions-run.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsRun extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-subway.d.ts b/react-icons/md/directions-subway.d.ts new file mode 100644 index 0000000000..79a7688234 --- /dev/null +++ b/react-icons/md/directions-subway.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-transit.d.ts b/react-icons/md/directions-transit.d.ts new file mode 100644 index 0000000000..4871738ecc --- /dev/null +++ b/react-icons/md/directions-transit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsTransit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-walk.d.ts b/react-icons/md/directions-walk.d.ts new file mode 100644 index 0000000000..4616d50b87 --- /dev/null +++ b/react-icons/md/directions-walk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirectionsWalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions.d.ts b/react-icons/md/directions.d.ts new file mode 100644 index 0000000000..01691f867c --- /dev/null +++ b/react-icons/md/directions.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDirections extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/disc-full.d.ts b/react-icons/md/disc-full.d.ts new file mode 100644 index 0000000000..e736a79d07 --- /dev/null +++ b/react-icons/md/disc-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDiscFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dns.d.ts b/react-icons/md/dns.d.ts new file mode 100644 index 0000000000..99a7856a51 --- /dev/null +++ b/react-icons/md/dns.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDns extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb-alt.d.ts b/react-icons/md/do-not-disturb-alt.d.ts new file mode 100644 index 0000000000..09e86eef05 --- /dev/null +++ b/react-icons/md/do-not-disturb-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDoNotDisturbAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb-off.d.ts b/react-icons/md/do-not-disturb-off.d.ts new file mode 100644 index 0000000000..2362b9e9d2 --- /dev/null +++ b/react-icons/md/do-not-disturb-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDoNotDisturbOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb.d.ts b/react-icons/md/do-not-disturb.d.ts new file mode 100644 index 0000000000..edd7483acd --- /dev/null +++ b/react-icons/md/do-not-disturb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDoNotDisturb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dock.d.ts b/react-icons/md/dock.d.ts new file mode 100644 index 0000000000..506d1ed153 --- /dev/null +++ b/react-icons/md/dock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/domain.d.ts b/react-icons/md/domain.d.ts new file mode 100644 index 0000000000..87996cd9c9 --- /dev/null +++ b/react-icons/md/domain.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDomain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/done-all.d.ts b/react-icons/md/done-all.d.ts new file mode 100644 index 0000000000..a8c1d3e5c5 --- /dev/null +++ b/react-icons/md/done-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDoneAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/done.d.ts b/react-icons/md/done.d.ts new file mode 100644 index 0000000000..8e25324f44 --- /dev/null +++ b/react-icons/md/done.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/donut-large.d.ts b/react-icons/md/donut-large.d.ts new file mode 100644 index 0000000000..b53d82a2ec --- /dev/null +++ b/react-icons/md/donut-large.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDonutLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/donut-small.d.ts b/react-icons/md/donut-small.d.ts new file mode 100644 index 0000000000..b764a1029c --- /dev/null +++ b/react-icons/md/donut-small.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDonutSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drafts.d.ts b/react-icons/md/drafts.d.ts new file mode 100644 index 0000000000..e1542cfdf7 --- /dev/null +++ b/react-icons/md/drafts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDrafts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drag-handle.d.ts b/react-icons/md/drag-handle.d.ts new file mode 100644 index 0000000000..6e379c3c2a --- /dev/null +++ b/react-icons/md/drag-handle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDragHandle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drive-eta.d.ts b/react-icons/md/drive-eta.d.ts new file mode 100644 index 0000000000..4f972b7028 --- /dev/null +++ b/react-icons/md/drive-eta.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDriveEta extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dvr.d.ts b/react-icons/md/dvr.d.ts new file mode 100644 index 0000000000..437300e895 --- /dev/null +++ b/react-icons/md/dvr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdDvr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/edit-location.d.ts b/react-icons/md/edit-location.d.ts new file mode 100644 index 0000000000..f5830a2364 --- /dev/null +++ b/react-icons/md/edit-location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEditLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/edit.d.ts b/react-icons/md/edit.d.ts new file mode 100644 index 0000000000..f1ddc123bb --- /dev/null +++ b/react-icons/md/edit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/eject.d.ts b/react-icons/md/eject.d.ts new file mode 100644 index 0000000000..3867f6a56f --- /dev/null +++ b/react-icons/md/eject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/email.d.ts b/react-icons/md/email.d.ts new file mode 100644 index 0000000000..ed37c51e94 --- /dev/null +++ b/react-icons/md/email.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/enhanced-encryption.d.ts b/react-icons/md/enhanced-encryption.d.ts new file mode 100644 index 0000000000..07f0ceafe5 --- /dev/null +++ b/react-icons/md/enhanced-encryption.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEnhancedEncryption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/equalizer.d.ts b/react-icons/md/equalizer.d.ts new file mode 100644 index 0000000000..f4aafe6899 --- /dev/null +++ b/react-icons/md/equalizer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEqualizer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/error-outline.d.ts b/react-icons/md/error-outline.d.ts new file mode 100644 index 0000000000..dbea1bb1c5 --- /dev/null +++ b/react-icons/md/error-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdErrorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/error.d.ts b/react-icons/md/error.d.ts new file mode 100644 index 0000000000..0b25e65088 --- /dev/null +++ b/react-icons/md/error.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdError extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/euro-symbol.d.ts b/react-icons/md/euro-symbol.d.ts new file mode 100644 index 0000000000..733ea4d094 --- /dev/null +++ b/react-icons/md/euro-symbol.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEuroSymbol extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ev-station.d.ts b/react-icons/md/ev-station.d.ts new file mode 100644 index 0000000000..7239630fcc --- /dev/null +++ b/react-icons/md/ev-station.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEvStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-available.d.ts b/react-icons/md/event-available.d.ts new file mode 100644 index 0000000000..e26f3cffca --- /dev/null +++ b/react-icons/md/event-available.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEventAvailable extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-busy.d.ts b/react-icons/md/event-busy.d.ts new file mode 100644 index 0000000000..3ccf5ab74e --- /dev/null +++ b/react-icons/md/event-busy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEventBusy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-note.d.ts b/react-icons/md/event-note.d.ts new file mode 100644 index 0000000000..13052c998e --- /dev/null +++ b/react-icons/md/event-note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEventNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-seat.d.ts b/react-icons/md/event-seat.d.ts new file mode 100644 index 0000000000..fe2832150d --- /dev/null +++ b/react-icons/md/event-seat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEventSeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event.d.ts b/react-icons/md/event.d.ts new file mode 100644 index 0000000000..2c913354c5 --- /dev/null +++ b/react-icons/md/event.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdEvent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exit-to-app.d.ts b/react-icons/md/exit-to-app.d.ts new file mode 100644 index 0000000000..91cf0fdcdb --- /dev/null +++ b/react-icons/md/exit-to-app.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExitToApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/expand-less.d.ts b/react-icons/md/expand-less.d.ts new file mode 100644 index 0000000000..88db71719b --- /dev/null +++ b/react-icons/md/expand-less.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExpandLess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/expand-more.d.ts b/react-icons/md/expand-more.d.ts new file mode 100644 index 0000000000..e5513c38bf --- /dev/null +++ b/react-icons/md/expand-more.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExpandMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/explicit.d.ts b/react-icons/md/explicit.d.ts new file mode 100644 index 0000000000..a2e679f632 --- /dev/null +++ b/react-icons/md/explicit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExplicit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/explore.d.ts b/react-icons/md/explore.d.ts new file mode 100644 index 0000000000..8e431deac9 --- /dev/null +++ b/react-icons/md/explore.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExplore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-minus-1.d.ts b/react-icons/md/exposure-minus-1.d.ts new file mode 100644 index 0000000000..b4018510dc --- /dev/null +++ b/react-icons/md/exposure-minus-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposureMinus1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-minus-2.d.ts b/react-icons/md/exposure-minus-2.d.ts new file mode 100644 index 0000000000..15d5d7c5b5 --- /dev/null +++ b/react-icons/md/exposure-minus-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposureMinus2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-neg-1.d.ts b/react-icons/md/exposure-neg-1.d.ts new file mode 100644 index 0000000000..4cd0ef15fc --- /dev/null +++ b/react-icons/md/exposure-neg-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposureNeg1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-neg-2.d.ts b/react-icons/md/exposure-neg-2.d.ts new file mode 100644 index 0000000000..9d37e58250 --- /dev/null +++ b/react-icons/md/exposure-neg-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposureNeg2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-plus-1.d.ts b/react-icons/md/exposure-plus-1.d.ts new file mode 100644 index 0000000000..d0438a4b02 --- /dev/null +++ b/react-icons/md/exposure-plus-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposurePlus1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-plus-2.d.ts b/react-icons/md/exposure-plus-2.d.ts new file mode 100644 index 0000000000..b56fd5e978 --- /dev/null +++ b/react-icons/md/exposure-plus-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposurePlus2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-zero.d.ts b/react-icons/md/exposure-zero.d.ts new file mode 100644 index 0000000000..479724cf1e --- /dev/null +++ b/react-icons/md/exposure-zero.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposureZero extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure.d.ts b/react-icons/md/exposure.d.ts new file mode 100644 index 0000000000..a863c94bb1 --- /dev/null +++ b/react-icons/md/exposure.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExposure extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/extension.d.ts b/react-icons/md/extension.d.ts new file mode 100644 index 0000000000..fa8ab0bcb5 --- /dev/null +++ b/react-icons/md/extension.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdExtension extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/face.d.ts b/react-icons/md/face.d.ts new file mode 100644 index 0000000000..ae2d3acfd9 --- /dev/null +++ b/react-icons/md/face.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fast-forward.d.ts b/react-icons/md/fast-forward.d.ts new file mode 100644 index 0000000000..7a4bcf3955 --- /dev/null +++ b/react-icons/md/fast-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fast-rewind.d.ts b/react-icons/md/fast-rewind.d.ts new file mode 100644 index 0000000000..24f8a46519 --- /dev/null +++ b/react-icons/md/fast-rewind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFastRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite-border.d.ts b/react-icons/md/favorite-border.d.ts new file mode 100644 index 0000000000..59cb64f8dc --- /dev/null +++ b/react-icons/md/favorite-border.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFavoriteBorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite-outline.d.ts b/react-icons/md/favorite-outline.d.ts new file mode 100644 index 0000000000..41d2c5013a --- /dev/null +++ b/react-icons/md/favorite-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFavoriteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite.d.ts b/react-icons/md/favorite.d.ts new file mode 100644 index 0000000000..193e384b9e --- /dev/null +++ b/react-icons/md/favorite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFavorite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/featured-play-list.d.ts b/react-icons/md/featured-play-list.d.ts new file mode 100644 index 0000000000..0344137dd0 --- /dev/null +++ b/react-icons/md/featured-play-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFeaturedPlayList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/featured-video.d.ts b/react-icons/md/featured-video.d.ts new file mode 100644 index 0000000000..b6f62f7ef6 --- /dev/null +++ b/react-icons/md/featured-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFeaturedVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/feedback.d.ts b/react-icons/md/feedback.d.ts new file mode 100644 index 0000000000..ff49020b95 --- /dev/null +++ b/react-icons/md/feedback.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFeedback extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-dvr.d.ts b/react-icons/md/fiber-dvr.d.ts new file mode 100644 index 0000000000..8968f1e977 --- /dev/null +++ b/react-icons/md/fiber-dvr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFiberDvr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-manual-record.d.ts b/react-icons/md/fiber-manual-record.d.ts new file mode 100644 index 0000000000..ab72e777ce --- /dev/null +++ b/react-icons/md/fiber-manual-record.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFiberManualRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-new.d.ts b/react-icons/md/fiber-new.d.ts new file mode 100644 index 0000000000..270d9ba4f2 --- /dev/null +++ b/react-icons/md/fiber-new.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFiberNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-pin.d.ts b/react-icons/md/fiber-pin.d.ts new file mode 100644 index 0000000000..5f9a6b6b41 --- /dev/null +++ b/react-icons/md/fiber-pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFiberPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-smart-record.d.ts b/react-icons/md/fiber-smart-record.d.ts new file mode 100644 index 0000000000..e46c44d5b3 --- /dev/null +++ b/react-icons/md/fiber-smart-record.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFiberSmartRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/file-download.d.ts b/react-icons/md/file-download.d.ts new file mode 100644 index 0000000000..ceb2305bd0 --- /dev/null +++ b/react-icons/md/file-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFileDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/file-upload.d.ts b/react-icons/md/file-upload.d.ts new file mode 100644 index 0000000000..fd48fe2d29 --- /dev/null +++ b/react-icons/md/file-upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFileUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-1.d.ts b/react-icons/md/filter-1.d.ts new file mode 100644 index 0000000000..1ac9f10fea --- /dev/null +++ b/react-icons/md/filter-1.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-2.d.ts b/react-icons/md/filter-2.d.ts new file mode 100644 index 0000000000..83670b6b95 --- /dev/null +++ b/react-icons/md/filter-2.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-3.d.ts b/react-icons/md/filter-3.d.ts new file mode 100644 index 0000000000..a2fedb7b88 --- /dev/null +++ b/react-icons/md/filter-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-4.d.ts b/react-icons/md/filter-4.d.ts new file mode 100644 index 0000000000..d10581266c --- /dev/null +++ b/react-icons/md/filter-4.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-5.d.ts b/react-icons/md/filter-5.d.ts new file mode 100644 index 0000000000..e23ad0da14 --- /dev/null +++ b/react-icons/md/filter-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-6.d.ts b/react-icons/md/filter-6.d.ts new file mode 100644 index 0000000000..ed37d66aa7 --- /dev/null +++ b/react-icons/md/filter-6.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-7.d.ts b/react-icons/md/filter-7.d.ts new file mode 100644 index 0000000000..4e2f64bf7e --- /dev/null +++ b/react-icons/md/filter-7.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter7 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-8.d.ts b/react-icons/md/filter-8.d.ts new file mode 100644 index 0000000000..adea5c709e --- /dev/null +++ b/react-icons/md/filter-8.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter8 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-9-plus.d.ts b/react-icons/md/filter-9-plus.d.ts new file mode 100644 index 0000000000..3617079cc5 --- /dev/null +++ b/react-icons/md/filter-9-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter9Plus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-9.d.ts b/react-icons/md/filter-9.d.ts new file mode 100644 index 0000000000..4999520d22 --- /dev/null +++ b/react-icons/md/filter-9.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter9 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-b-and-w.d.ts b/react-icons/md/filter-b-and-w.d.ts new file mode 100644 index 0000000000..6eb46b43d6 --- /dev/null +++ b/react-icons/md/filter-b-and-w.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterBAndW extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-center-focus.d.ts b/react-icons/md/filter-center-focus.d.ts new file mode 100644 index 0000000000..7bb247c256 --- /dev/null +++ b/react-icons/md/filter-center-focus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterCenterFocus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-drama.d.ts b/react-icons/md/filter-drama.d.ts new file mode 100644 index 0000000000..85a961539f --- /dev/null +++ b/react-icons/md/filter-drama.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterDrama extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-frames.d.ts b/react-icons/md/filter-frames.d.ts new file mode 100644 index 0000000000..3a08c8701a --- /dev/null +++ b/react-icons/md/filter-frames.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterFrames extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-hdr.d.ts b/react-icons/md/filter-hdr.d.ts new file mode 100644 index 0000000000..3cdc21ccb6 --- /dev/null +++ b/react-icons/md/filter-hdr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterHdr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-list.d.ts b/react-icons/md/filter-list.d.ts new file mode 100644 index 0000000000..959fc09193 --- /dev/null +++ b/react-icons/md/filter-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-none.d.ts b/react-icons/md/filter-none.d.ts new file mode 100644 index 0000000000..270208192c --- /dev/null +++ b/react-icons/md/filter-none.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-tilt-shift.d.ts b/react-icons/md/filter-tilt-shift.d.ts new file mode 100644 index 0000000000..0eb232d205 --- /dev/null +++ b/react-icons/md/filter-tilt-shift.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterTiltShift extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-vintage.d.ts b/react-icons/md/filter-vintage.d.ts new file mode 100644 index 0000000000..ed55988a1e --- /dev/null +++ b/react-icons/md/filter-vintage.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilterVintage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter.d.ts b/react-icons/md/filter.d.ts new file mode 100644 index 0000000000..4bb45f848d --- /dev/null +++ b/react-icons/md/filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/find-in-page.d.ts b/react-icons/md/find-in-page.d.ts new file mode 100644 index 0000000000..df4029b46f --- /dev/null +++ b/react-icons/md/find-in-page.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFindInPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/find-replace.d.ts b/react-icons/md/find-replace.d.ts new file mode 100644 index 0000000000..a02b0c0d2b --- /dev/null +++ b/react-icons/md/find-replace.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFindReplace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fingerprint.d.ts b/react-icons/md/fingerprint.d.ts new file mode 100644 index 0000000000..ff49e35a25 --- /dev/null +++ b/react-icons/md/fingerprint.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFingerprint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/first-page.d.ts b/react-icons/md/first-page.d.ts new file mode 100644 index 0000000000..cd1d2df56c --- /dev/null +++ b/react-icons/md/first-page.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFirstPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fitness-center.d.ts b/react-icons/md/fitness-center.d.ts new file mode 100644 index 0000000000..595f83c50e --- /dev/null +++ b/react-icons/md/fitness-center.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFitnessCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flag.d.ts b/react-icons/md/flag.d.ts new file mode 100644 index 0000000000..e8a4ecb6e2 --- /dev/null +++ b/react-icons/md/flag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flare.d.ts b/react-icons/md/flare.d.ts new file mode 100644 index 0000000000..e7b1f4e039 --- /dev/null +++ b/react-icons/md/flare.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-auto.d.ts b/react-icons/md/flash-auto.d.ts new file mode 100644 index 0000000000..c23c8a598e --- /dev/null +++ b/react-icons/md/flash-auto.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlashAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-off.d.ts b/react-icons/md/flash-off.d.ts new file mode 100644 index 0000000000..b239a9810b --- /dev/null +++ b/react-icons/md/flash-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlashOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-on.d.ts b/react-icons/md/flash-on.d.ts new file mode 100644 index 0000000000..c05726f21a --- /dev/null +++ b/react-icons/md/flash-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlashOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight-land.d.ts b/react-icons/md/flight-land.d.ts new file mode 100644 index 0000000000..68b2ab9dc2 --- /dev/null +++ b/react-icons/md/flight-land.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlightLand extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight-takeoff.d.ts b/react-icons/md/flight-takeoff.d.ts new file mode 100644 index 0000000000..29ebd9c57b --- /dev/null +++ b/react-icons/md/flight-takeoff.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlightTakeoff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight.d.ts b/react-icons/md/flight.d.ts new file mode 100644 index 0000000000..5046627763 --- /dev/null +++ b/react-icons/md/flight.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip-to-back.d.ts b/react-icons/md/flip-to-back.d.ts new file mode 100644 index 0000000000..8a3af14dc7 --- /dev/null +++ b/react-icons/md/flip-to-back.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlipToBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip-to-front.d.ts b/react-icons/md/flip-to-front.d.ts new file mode 100644 index 0000000000..46abe7df52 --- /dev/null +++ b/react-icons/md/flip-to-front.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlipToFront extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip.d.ts b/react-icons/md/flip.d.ts new file mode 100644 index 0000000000..c0599efdd0 --- /dev/null +++ b/react-icons/md/flip.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFlip extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-open.d.ts b/react-icons/md/folder-open.d.ts new file mode 100644 index 0000000000..67d7769d27 --- /dev/null +++ b/react-icons/md/folder-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-shared.d.ts b/react-icons/md/folder-shared.d.ts new file mode 100644 index 0000000000..5ece421dbb --- /dev/null +++ b/react-icons/md/folder-shared.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFolderShared extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-special.d.ts b/react-icons/md/folder-special.d.ts new file mode 100644 index 0000000000..e0afc89b75 --- /dev/null +++ b/react-icons/md/folder-special.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFolderSpecial extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder.d.ts b/react-icons/md/folder.d.ts new file mode 100644 index 0000000000..44a78bb487 --- /dev/null +++ b/react-icons/md/folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/font-download.d.ts b/react-icons/md/font-download.d.ts new file mode 100644 index 0000000000..a0833e01fb --- /dev/null +++ b/react-icons/md/font-download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFontDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-center.d.ts b/react-icons/md/format-align-center.d.ts new file mode 100644 index 0000000000..d5fd2ef985 --- /dev/null +++ b/react-icons/md/format-align-center.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-justify.d.ts b/react-icons/md/format-align-justify.d.ts new file mode 100644 index 0000000000..500128da94 --- /dev/null +++ b/react-icons/md/format-align-justify.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatAlignJustify extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-left.d.ts b/react-icons/md/format-align-left.d.ts new file mode 100644 index 0000000000..ba55dee382 --- /dev/null +++ b/react-icons/md/format-align-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatAlignLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-right.d.ts b/react-icons/md/format-align-right.d.ts new file mode 100644 index 0000000000..dc274ae907 --- /dev/null +++ b/react-icons/md/format-align-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatAlignRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-bold.d.ts b/react-icons/md/format-bold.d.ts new file mode 100644 index 0000000000..2e0e2527d2 --- /dev/null +++ b/react-icons/md/format-bold.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatBold extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-clear.d.ts b/react-icons/md/format-clear.d.ts new file mode 100644 index 0000000000..00aa460e9f --- /dev/null +++ b/react-icons/md/format-clear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-fill.d.ts b/react-icons/md/format-color-fill.d.ts new file mode 100644 index 0000000000..562849897f --- /dev/null +++ b/react-icons/md/format-color-fill.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatColorFill extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-reset.d.ts b/react-icons/md/format-color-reset.d.ts new file mode 100644 index 0000000000..2c61bd9bf6 --- /dev/null +++ b/react-icons/md/format-color-reset.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatColorReset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-text.d.ts b/react-icons/md/format-color-text.d.ts new file mode 100644 index 0000000000..bc6481df34 --- /dev/null +++ b/react-icons/md/format-color-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatColorText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-indent-decrease.d.ts b/react-icons/md/format-indent-decrease.d.ts new file mode 100644 index 0000000000..86b0940a0d --- /dev/null +++ b/react-icons/md/format-indent-decrease.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatIndentDecrease extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-indent-increase.d.ts b/react-icons/md/format-indent-increase.d.ts new file mode 100644 index 0000000000..77c1433a05 --- /dev/null +++ b/react-icons/md/format-indent-increase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatIndentIncrease extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-italic.d.ts b/react-icons/md/format-italic.d.ts new file mode 100644 index 0000000000..68bb69b95c --- /dev/null +++ b/react-icons/md/format-italic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatItalic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-line-spacing.d.ts b/react-icons/md/format-line-spacing.d.ts new file mode 100644 index 0000000000..8cc71f2c98 --- /dev/null +++ b/react-icons/md/format-line-spacing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatLineSpacing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-list-bulleted.d.ts b/react-icons/md/format-list-bulleted.d.ts new file mode 100644 index 0000000000..dabfbaceae --- /dev/null +++ b/react-icons/md/format-list-bulleted.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatListBulleted extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-list-numbered.d.ts b/react-icons/md/format-list-numbered.d.ts new file mode 100644 index 0000000000..ab917a76d4 --- /dev/null +++ b/react-icons/md/format-list-numbered.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatListNumbered extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-paint.d.ts b/react-icons/md/format-paint.d.ts new file mode 100644 index 0000000000..c16cd205bc --- /dev/null +++ b/react-icons/md/format-paint.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatPaint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-quote.d.ts b/react-icons/md/format-quote.d.ts new file mode 100644 index 0000000000..c862f94d63 --- /dev/null +++ b/react-icons/md/format-quote.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-shapes.d.ts b/react-icons/md/format-shapes.d.ts new file mode 100644 index 0000000000..f912cd435b --- /dev/null +++ b/react-icons/md/format-shapes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatShapes extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-size.d.ts b/react-icons/md/format-size.d.ts new file mode 100644 index 0000000000..d83580625f --- /dev/null +++ b/react-icons/md/format-size.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatSize extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-strikethrough.d.ts b/react-icons/md/format-strikethrough.d.ts new file mode 100644 index 0000000000..5b58300960 --- /dev/null +++ b/react-icons/md/format-strikethrough.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatStrikethrough extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-textdirection-l-to-r.d.ts b/react-icons/md/format-textdirection-l-to-r.d.ts new file mode 100644 index 0000000000..3153274dd8 --- /dev/null +++ b/react-icons/md/format-textdirection-l-to-r.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatTextdirectionLToR extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-textdirection-r-to-l.d.ts b/react-icons/md/format-textdirection-r-to-l.d.ts new file mode 100644 index 0000000000..64c007d9da --- /dev/null +++ b/react-icons/md/format-textdirection-r-to-l.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatTextdirectionRToL extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-underlined.d.ts b/react-icons/md/format-underlined.d.ts new file mode 100644 index 0000000000..aa12079e6c --- /dev/null +++ b/react-icons/md/format-underlined.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFormatUnderlined extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forum.d.ts b/react-icons/md/forum.d.ts new file mode 100644 index 0000000000..9a42ca4b95 --- /dev/null +++ b/react-icons/md/forum.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdForum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-10.d.ts b/react-icons/md/forward-10.d.ts new file mode 100644 index 0000000000..92434d3e2a --- /dev/null +++ b/react-icons/md/forward-10.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdForward10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-30.d.ts b/react-icons/md/forward-30.d.ts new file mode 100644 index 0000000000..317730f070 --- /dev/null +++ b/react-icons/md/forward-30.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdForward30 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-5.d.ts b/react-icons/md/forward-5.d.ts new file mode 100644 index 0000000000..5c6f4e9825 --- /dev/null +++ b/react-icons/md/forward-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdForward5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward.d.ts b/react-icons/md/forward.d.ts new file mode 100644 index 0000000000..0c228c8dd7 --- /dev/null +++ b/react-icons/md/forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/free-breakfast.d.ts b/react-icons/md/free-breakfast.d.ts new file mode 100644 index 0000000000..1ccee8dfb7 --- /dev/null +++ b/react-icons/md/free-breakfast.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFreeBreakfast extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fullscreen-exit.d.ts b/react-icons/md/fullscreen-exit.d.ts new file mode 100644 index 0000000000..88dd0905c9 --- /dev/null +++ b/react-icons/md/fullscreen-exit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFullscreenExit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fullscreen.d.ts b/react-icons/md/fullscreen.d.ts new file mode 100644 index 0000000000..f80ebfd89d --- /dev/null +++ b/react-icons/md/fullscreen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFullscreen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/functions.d.ts b/react-icons/md/functions.d.ts new file mode 100644 index 0000000000..0bfd4d0f53 --- /dev/null +++ b/react-icons/md/functions.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdFunctions extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/g-translate.d.ts b/react-icons/md/g-translate.d.ts new file mode 100644 index 0000000000..bfdb034c16 --- /dev/null +++ b/react-icons/md/g-translate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGTranslate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gamepad.d.ts b/react-icons/md/gamepad.d.ts new file mode 100644 index 0000000000..87b22b1e6c --- /dev/null +++ b/react-icons/md/gamepad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGamepad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/games.d.ts b/react-icons/md/games.d.ts new file mode 100644 index 0000000000..8a7a900ec1 --- /dev/null +++ b/react-icons/md/games.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGames extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gavel.d.ts b/react-icons/md/gavel.d.ts new file mode 100644 index 0000000000..0f29f6da1f --- /dev/null +++ b/react-icons/md/gavel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGavel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gesture.d.ts b/react-icons/md/gesture.d.ts new file mode 100644 index 0000000000..efe723344b --- /dev/null +++ b/react-icons/md/gesture.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGesture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/get-app.d.ts b/react-icons/md/get-app.d.ts new file mode 100644 index 0000000000..435224b5be --- /dev/null +++ b/react-icons/md/get-app.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGetApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gif.d.ts b/react-icons/md/gif.d.ts new file mode 100644 index 0000000000..53ca018d85 --- /dev/null +++ b/react-icons/md/gif.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGif extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/goat.d.ts b/react-icons/md/goat.d.ts new file mode 100644 index 0000000000..23f4bf01d6 --- /dev/null +++ b/react-icons/md/goat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/golf-course.d.ts b/react-icons/md/golf-course.d.ts new file mode 100644 index 0000000000..96942a3782 --- /dev/null +++ b/react-icons/md/golf-course.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGolfCourse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-fixed.d.ts b/react-icons/md/gps-fixed.d.ts new file mode 100644 index 0000000000..6962a68d19 --- /dev/null +++ b/react-icons/md/gps-fixed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGpsFixed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-not-fixed.d.ts b/react-icons/md/gps-not-fixed.d.ts new file mode 100644 index 0000000000..405cc2bded --- /dev/null +++ b/react-icons/md/gps-not-fixed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGpsNotFixed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-off.d.ts b/react-icons/md/gps-off.d.ts new file mode 100644 index 0000000000..57d681f6f3 --- /dev/null +++ b/react-icons/md/gps-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGpsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grade.d.ts b/react-icons/md/grade.d.ts new file mode 100644 index 0000000000..4141cab03a --- /dev/null +++ b/react-icons/md/grade.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGrade extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gradient.d.ts b/react-icons/md/gradient.d.ts new file mode 100644 index 0000000000..98fd005447 --- /dev/null +++ b/react-icons/md/gradient.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGradient extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grain.d.ts b/react-icons/md/grain.d.ts new file mode 100644 index 0000000000..d65c03cf18 --- /dev/null +++ b/react-icons/md/grain.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/graphic-eq.d.ts b/react-icons/md/graphic-eq.d.ts new file mode 100644 index 0000000000..b5d169bb44 --- /dev/null +++ b/react-icons/md/graphic-eq.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGraphicEq extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grid-off.d.ts b/react-icons/md/grid-off.d.ts new file mode 100644 index 0000000000..ab6cc652c4 --- /dev/null +++ b/react-icons/md/grid-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGridOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grid-on.d.ts b/react-icons/md/grid-on.d.ts new file mode 100644 index 0000000000..b830aecfad --- /dev/null +++ b/react-icons/md/grid-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGridOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group-add.d.ts b/react-icons/md/group-add.d.ts new file mode 100644 index 0000000000..6df0247d62 --- /dev/null +++ b/react-icons/md/group-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGroupAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group-work.d.ts b/react-icons/md/group-work.d.ts new file mode 100644 index 0000000000..edbddae967 --- /dev/null +++ b/react-icons/md/group-work.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGroupWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group.d.ts b/react-icons/md/group.d.ts new file mode 100644 index 0000000000..08038c3cf2 --- /dev/null +++ b/react-icons/md/group.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hd.d.ts b/react-icons/md/hd.d.ts new file mode 100644 index 0000000000..219ef6d1e1 --- /dev/null +++ b/react-icons/md/hd.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-off.d.ts b/react-icons/md/hdr-off.d.ts new file mode 100644 index 0000000000..8de3235811 --- /dev/null +++ b/react-icons/md/hdr-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHdrOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-on.d.ts b/react-icons/md/hdr-on.d.ts new file mode 100644 index 0000000000..c3ee3e35e1 --- /dev/null +++ b/react-icons/md/hdr-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHdrOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-strong.d.ts b/react-icons/md/hdr-strong.d.ts new file mode 100644 index 0000000000..c3ee01e0a3 --- /dev/null +++ b/react-icons/md/hdr-strong.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHdrStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-weak.d.ts b/react-icons/md/hdr-weak.d.ts new file mode 100644 index 0000000000..6e4b8753e4 --- /dev/null +++ b/react-icons/md/hdr-weak.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHdrWeak extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/headset-mic.d.ts b/react-icons/md/headset-mic.d.ts new file mode 100644 index 0000000000..ebfb448bcc --- /dev/null +++ b/react-icons/md/headset-mic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHeadsetMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/headset.d.ts b/react-icons/md/headset.d.ts new file mode 100644 index 0000000000..4f18d3d82c --- /dev/null +++ b/react-icons/md/headset.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHeadset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/healing.d.ts b/react-icons/md/healing.d.ts new file mode 100644 index 0000000000..a5bb954cbd --- /dev/null +++ b/react-icons/md/healing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHealing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hearing.d.ts b/react-icons/md/hearing.d.ts new file mode 100644 index 0000000000..1495b42a92 --- /dev/null +++ b/react-icons/md/hearing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHearing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/help-outline.d.ts b/react-icons/md/help-outline.d.ts new file mode 100644 index 0000000000..694ba83296 --- /dev/null +++ b/react-icons/md/help-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHelpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/help.d.ts b/react-icons/md/help.d.ts new file mode 100644 index 0000000000..9807a61dde --- /dev/null +++ b/react-icons/md/help.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/high-quality.d.ts b/react-icons/md/high-quality.d.ts new file mode 100644 index 0000000000..e53ef78cf7 --- /dev/null +++ b/react-icons/md/high-quality.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHighQuality extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight-off.d.ts b/react-icons/md/highlight-off.d.ts new file mode 100644 index 0000000000..19366c72bd --- /dev/null +++ b/react-icons/md/highlight-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHighlightOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight-remove.d.ts b/react-icons/md/highlight-remove.d.ts new file mode 100644 index 0000000000..0400f49b98 --- /dev/null +++ b/react-icons/md/highlight-remove.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHighlightRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight.d.ts b/react-icons/md/highlight.d.ts new file mode 100644 index 0000000000..987932f59b --- /dev/null +++ b/react-icons/md/highlight.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHighlight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/history.d.ts b/react-icons/md/history.d.ts new file mode 100644 index 0000000000..6f35ce57b5 --- /dev/null +++ b/react-icons/md/history.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/home.d.ts b/react-icons/md/home.d.ts new file mode 100644 index 0000000000..26fece415b --- /dev/null +++ b/react-icons/md/home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hot-tub.d.ts b/react-icons/md/hot-tub.d.ts new file mode 100644 index 0000000000..c9e2164e2d --- /dev/null +++ b/react-icons/md/hot-tub.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHotTub extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hotel.d.ts b/react-icons/md/hotel.d.ts new file mode 100644 index 0000000000..e2fbae3a7f --- /dev/null +++ b/react-icons/md/hotel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHotel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hourglass-empty.d.ts b/react-icons/md/hourglass-empty.d.ts new file mode 100644 index 0000000000..d45be408ab --- /dev/null +++ b/react-icons/md/hourglass-empty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHourglassEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hourglass-full.d.ts b/react-icons/md/hourglass-full.d.ts new file mode 100644 index 0000000000..7efc836af7 --- /dev/null +++ b/react-icons/md/hourglass-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHourglassFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/http.d.ts b/react-icons/md/http.d.ts new file mode 100644 index 0000000000..ad66033351 --- /dev/null +++ b/react-icons/md/http.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHttp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/https.d.ts b/react-icons/md/https.d.ts new file mode 100644 index 0000000000..0177e69b5e --- /dev/null +++ b/react-icons/md/https.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdHttps extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/image-aspect-ratio.d.ts b/react-icons/md/image-aspect-ratio.d.ts new file mode 100644 index 0000000000..65e0d00a8f --- /dev/null +++ b/react-icons/md/image-aspect-ratio.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdImageAspectRatio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/image.d.ts b/react-icons/md/image.d.ts new file mode 100644 index 0000000000..3bd97a8996 --- /dev/null +++ b/react-icons/md/image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/import-contacts.d.ts b/react-icons/md/import-contacts.d.ts new file mode 100644 index 0000000000..72d5530d2f --- /dev/null +++ b/react-icons/md/import-contacts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdImportContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/import-export.d.ts b/react-icons/md/import-export.d.ts new file mode 100644 index 0000000000..ea66d13cf7 --- /dev/null +++ b/react-icons/md/import-export.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdImportExport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/important-devices.d.ts b/react-icons/md/important-devices.d.ts new file mode 100644 index 0000000000..b750221780 --- /dev/null +++ b/react-icons/md/important-devices.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdImportantDevices extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/inbox.d.ts b/react-icons/md/inbox.d.ts new file mode 100644 index 0000000000..1dc33d87bb --- /dev/null +++ b/react-icons/md/inbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/indeterminate-check-box.d.ts b/react-icons/md/indeterminate-check-box.d.ts new file mode 100644 index 0000000000..582ed7bde8 --- /dev/null +++ b/react-icons/md/indeterminate-check-box.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdIndeterminateCheckBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/index.d.ts b/react-icons/md/index.d.ts new file mode 100644 index 0000000000..fc7223e5b3 --- /dev/null +++ b/react-icons/md/index.d.ts @@ -0,0 +1,1892 @@ +import _Md3dRotation from "./3d-rotation"; +import _MdAcUnit from "./ac-unit"; +import _MdAccessAlarm from "./access-alarm"; +import _MdAccessAlarms from "./access-alarms"; +import _MdAccessTime from "./access-time"; +import _MdAccessibility from "./accessibility"; +import _MdAccessible from "./accessible"; +import _MdAccountBalanceWallet from "./account-balance-wallet"; +import _MdAccountBalance from "./account-balance"; +import _MdAccountBox from "./account-box"; +import _MdAccountCircle from "./account-circle"; +import _MdAdb from "./adb"; +import _MdAddAPhoto from "./add-a-photo"; +import _MdAddAlarm from "./add-alarm"; +import _MdAddAlert from "./add-alert"; +import _MdAddBox from "./add-box"; +import _MdAddCircleOutline from "./add-circle-outline"; +import _MdAddCircle from "./add-circle"; +import _MdAddLocation from "./add-location"; +import _MdAddShoppingCart from "./add-shopping-cart"; +import _MdAddToPhotos from "./add-to-photos"; +import _MdAddToQueue from "./add-to-queue"; +import _MdAdd from "./add"; +import _MdAdjust from "./adjust"; +import _MdAirlineSeatFlatAngled from "./airline-seat-flat-angled"; +import _MdAirlineSeatFlat from "./airline-seat-flat"; +import _MdAirlineSeatIndividualSuite from "./airline-seat-individual-suite"; +import _MdAirlineSeatLegroomExtra from "./airline-seat-legroom-extra"; +import _MdAirlineSeatLegroomNormal from "./airline-seat-legroom-normal"; +import _MdAirlineSeatLegroomReduced from "./airline-seat-legroom-reduced"; +import _MdAirlineSeatReclineExtra from "./airline-seat-recline-extra"; +import _MdAirlineSeatReclineNormal from "./airline-seat-recline-normal"; +import _MdAirplanemodeActive from "./airplanemode-active"; +import _MdAirplanemodeInactive from "./airplanemode-inactive"; +import _MdAirplay from "./airplay"; +import _MdAirportShuttle from "./airport-shuttle"; +import _MdAlarmAdd from "./alarm-add"; +import _MdAlarmOff from "./alarm-off"; +import _MdAlarmOn from "./alarm-on"; +import _MdAlarm from "./alarm"; +import _MdAlbum from "./album"; +import _MdAllInclusive from "./all-inclusive"; +import _MdAllOut from "./all-out"; +import _MdAndroid from "./android"; +import _MdAnnouncement from "./announcement"; +import _MdApps from "./apps"; +import _MdArchive from "./archive"; +import _MdArrowBack from "./arrow-back"; +import _MdArrowDownward from "./arrow-downward"; +import _MdArrowDropDownCircle from "./arrow-drop-down-circle"; +import _MdArrowDropDown from "./arrow-drop-down"; +import _MdArrowDropUp from "./arrow-drop-up"; +import _MdArrowForward from "./arrow-forward"; +import _MdArrowUpward from "./arrow-upward"; +import _MdArtTrack from "./art-track"; +import _MdAspectRatio from "./aspect-ratio"; +import _MdAssessment from "./assessment"; +import _MdAssignmentInd from "./assignment-ind"; +import _MdAssignmentLate from "./assignment-late"; +import _MdAssignmentReturn from "./assignment-return"; +import _MdAssignmentReturned from "./assignment-returned"; +import _MdAssignmentTurnedIn from "./assignment-turned-in"; +import _MdAssignment from "./assignment"; +import _MdAssistantPhoto from "./assistant-photo"; +import _MdAssistant from "./assistant"; +import _MdAttachFile from "./attach-file"; +import _MdAttachMoney from "./attach-money"; +import _MdAttachment from "./attachment"; +import _MdAudiotrack from "./audiotrack"; +import _MdAutorenew from "./autorenew"; +import _MdAvTimer from "./av-timer"; +import _MdBackspace from "./backspace"; +import _MdBackup from "./backup"; +import _MdBatteryAlert from "./battery-alert"; +import _MdBatteryChargingFull from "./battery-charging-full"; +import _MdBatteryFull from "./battery-full"; +import _MdBatteryStd from "./battery-std"; +import _MdBatteryUnknown from "./battery-unknown"; +import _MdBeachAccess from "./beach-access"; +import _MdBeenhere from "./beenhere"; +import _MdBlock from "./block"; +import _MdBluetoothAudio from "./bluetooth-audio"; +import _MdBluetoothConnected from "./bluetooth-connected"; +import _MdBluetoothDisabled from "./bluetooth-disabled"; +import _MdBluetoothSearching from "./bluetooth-searching"; +import _MdBluetooth from "./bluetooth"; +import _MdBlurCircular from "./blur-circular"; +import _MdBlurLinear from "./blur-linear"; +import _MdBlurOff from "./blur-off"; +import _MdBlurOn from "./blur-on"; +import _MdBook from "./book"; +import _MdBookmarkOutline from "./bookmark-outline"; +import _MdBookmark from "./bookmark"; +import _MdBorderAll from "./border-all"; +import _MdBorderBottom from "./border-bottom"; +import _MdBorderClear from "./border-clear"; +import _MdBorderColor from "./border-color"; +import _MdBorderHorizontal from "./border-horizontal"; +import _MdBorderInner from "./border-inner"; +import _MdBorderLeft from "./border-left"; +import _MdBorderOuter from "./border-outer"; +import _MdBorderRight from "./border-right"; +import _MdBorderStyle from "./border-style"; +import _MdBorderTop from "./border-top"; +import _MdBorderVertical from "./border-vertical"; +import _MdBrandingWatermark from "./branding-watermark"; +import _MdBrightness1 from "./brightness-1"; +import _MdBrightness2 from "./brightness-2"; +import _MdBrightness3 from "./brightness-3"; +import _MdBrightness4 from "./brightness-4"; +import _MdBrightness5 from "./brightness-5"; +import _MdBrightness6 from "./brightness-6"; +import _MdBrightness7 from "./brightness-7"; +import _MdBrightnessAuto from "./brightness-auto"; +import _MdBrightnessHigh from "./brightness-high"; +import _MdBrightnessLow from "./brightness-low"; +import _MdBrightnessMedium from "./brightness-medium"; +import _MdBrokenImage from "./broken-image"; +import _MdBrush from "./brush"; +import _MdBubbleChart from "./bubble-chart"; +import _MdBugReport from "./bug-report"; +import _MdBuild from "./build"; +import _MdBurstMode from "./burst-mode"; +import _MdBusinessCenter from "./business-center"; +import _MdBusiness from "./business"; +import _MdCached from "./cached"; +import _MdCake from "./cake"; +import _MdCallEnd from "./call-end"; +import _MdCallMade from "./call-made"; +import _MdCallMerge from "./call-merge"; +import _MdCallMissedOutgoing from "./call-missed-outgoing"; +import _MdCallMissed from "./call-missed"; +import _MdCallReceived from "./call-received"; +import _MdCallSplit from "./call-split"; +import _MdCallToAction from "./call-to-action"; +import _MdCall from "./call"; +import _MdCameraAlt from "./camera-alt"; +import _MdCameraEnhance from "./camera-enhance"; +import _MdCameraFront from "./camera-front"; +import _MdCameraRear from "./camera-rear"; +import _MdCameraRoll from "./camera-roll"; +import _MdCamera from "./camera"; +import _MdCancel from "./cancel"; +import _MdCardGiftcard from "./card-giftcard"; +import _MdCardMembership from "./card-membership"; +import _MdCardTravel from "./card-travel"; +import _MdCasino from "./casino"; +import _MdCastConnected from "./cast-connected"; +import _MdCast from "./cast"; +import _MdCenterFocusStrong from "./center-focus-strong"; +import _MdCenterFocusWeak from "./center-focus-weak"; +import _MdChangeHistory from "./change-history"; +import _MdChatBubbleOutline from "./chat-bubble-outline"; +import _MdChatBubble from "./chat-bubble"; +import _MdChat from "./chat"; +import _MdCheckBoxOutlineBlank from "./check-box-outline-blank"; +import _MdCheckBox from "./check-box"; +import _MdCheckCircle from "./check-circle"; +import _MdCheck from "./check"; +import _MdChevronLeft from "./chevron-left"; +import _MdChevronRight from "./chevron-right"; +import _MdChildCare from "./child-care"; +import _MdChildFriendly from "./child-friendly"; +import _MdChromeReaderMode from "./chrome-reader-mode"; +import _MdClass from "./class"; +import _MdClearAll from "./clear-all"; +import _MdClear from "./clear"; +import _MdClose from "./close"; +import _MdClosedCaption from "./closed-caption"; +import _MdCloudCircle from "./cloud-circle"; +import _MdCloudDone from "./cloud-done"; +import _MdCloudDownload from "./cloud-download"; +import _MdCloudOff from "./cloud-off"; +import _MdCloudQueue from "./cloud-queue"; +import _MdCloudUpload from "./cloud-upload"; +import _MdCloud from "./cloud"; +import _MdCode from "./code"; +import _MdCollectionsBookmark from "./collections-bookmark"; +import _MdCollections from "./collections"; +import _MdColorLens from "./color-lens"; +import _MdColorize from "./colorize"; +import _MdComment from "./comment"; +import _MdCompareArrows from "./compare-arrows"; +import _MdCompare from "./compare"; +import _MdComputer from "./computer"; +import _MdConfirmationNumber from "./confirmation-number"; +import _MdContactMail from "./contact-mail"; +import _MdContactPhone from "./contact-phone"; +import _MdContacts from "./contacts"; +import _MdContentCopy from "./content-copy"; +import _MdContentCut from "./content-cut"; +import _MdContentPaste from "./content-paste"; +import _MdControlPointDuplicate from "./control-point-duplicate"; +import _MdControlPoint from "./control-point"; +import _MdCopyright from "./copyright"; +import _MdCreateNewFolder from "./create-new-folder"; +import _MdCreate from "./create"; +import _MdCreditCard from "./credit-card"; +import _MdCrop169 from "./crop-16-9"; +import _MdCrop32 from "./crop-3-2"; +import _MdCrop54 from "./crop-5-4"; +import _MdCrop75 from "./crop-7-5"; +import _MdCropDin from "./crop-din"; +import _MdCropFree from "./crop-free"; +import _MdCropLandscape from "./crop-landscape"; +import _MdCropOriginal from "./crop-original"; +import _MdCropPortrait from "./crop-portrait"; +import _MdCropRotate from "./crop-rotate"; +import _MdCropSquare from "./crop-square"; +import _MdCrop from "./crop"; +import _MdDashboard from "./dashboard"; +import _MdDataUsage from "./data-usage"; +import _MdDateRange from "./date-range"; +import _MdDehaze from "./dehaze"; +import _MdDeleteForever from "./delete-forever"; +import _MdDeleteSweep from "./delete-sweep"; +import _MdDelete from "./delete"; +import _MdDescription from "./description"; +import _MdDesktopMac from "./desktop-mac"; +import _MdDesktopWindows from "./desktop-windows"; +import _MdDetails from "./details"; +import _MdDeveloperBoard from "./developer-board"; +import _MdDeveloperMode from "./developer-mode"; +import _MdDeviceHub from "./device-hub"; +import _MdDevicesOther from "./devices-other"; +import _MdDevices from "./devices"; +import _MdDialerSip from "./dialer-sip"; +import _MdDialpad from "./dialpad"; +import _MdDirectionsBike from "./directions-bike"; +import _MdDirectionsBoat from "./directions-boat"; +import _MdDirectionsBus from "./directions-bus"; +import _MdDirectionsCar from "./directions-car"; +import _MdDirectionsFerry from "./directions-ferry"; +import _MdDirectionsRailway from "./directions-railway"; +import _MdDirectionsRun from "./directions-run"; +import _MdDirectionsSubway from "./directions-subway"; +import _MdDirectionsTransit from "./directions-transit"; +import _MdDirectionsWalk from "./directions-walk"; +import _MdDirections from "./directions"; +import _MdDiscFull from "./disc-full"; +import _MdDns from "./dns"; +import _MdDoNotDisturbAlt from "./do-not-disturb-alt"; +import _MdDoNotDisturbOff from "./do-not-disturb-off"; +import _MdDoNotDisturb from "./do-not-disturb"; +import _MdDock from "./dock"; +import _MdDomain from "./domain"; +import _MdDoneAll from "./done-all"; +import _MdDone from "./done"; +import _MdDonutLarge from "./donut-large"; +import _MdDonutSmall from "./donut-small"; +import _MdDrafts from "./drafts"; +import _MdDragHandle from "./drag-handle"; +import _MdDriveEta from "./drive-eta"; +import _MdDvr from "./dvr"; +import _MdEditLocation from "./edit-location"; +import _MdEdit from "./edit"; +import _MdEject from "./eject"; +import _MdEmail from "./email"; +import _MdEnhancedEncryption from "./enhanced-encryption"; +import _MdEqualizer from "./equalizer"; +import _MdErrorOutline from "./error-outline"; +import _MdError from "./error"; +import _MdEuroSymbol from "./euro-symbol"; +import _MdEvStation from "./ev-station"; +import _MdEventAvailable from "./event-available"; +import _MdEventBusy from "./event-busy"; +import _MdEventNote from "./event-note"; +import _MdEventSeat from "./event-seat"; +import _MdEvent from "./event"; +import _MdExitToApp from "./exit-to-app"; +import _MdExpandLess from "./expand-less"; +import _MdExpandMore from "./expand-more"; +import _MdExplicit from "./explicit"; +import _MdExplore from "./explore"; +import _MdExposureMinus1 from "./exposure-minus-1"; +import _MdExposureMinus2 from "./exposure-minus-2"; +import _MdExposureNeg1 from "./exposure-neg-1"; +import _MdExposureNeg2 from "./exposure-neg-2"; +import _MdExposurePlus1 from "./exposure-plus-1"; +import _MdExposurePlus2 from "./exposure-plus-2"; +import _MdExposureZero from "./exposure-zero"; +import _MdExposure from "./exposure"; +import _MdExtension from "./extension"; +import _MdFace from "./face"; +import _MdFastForward from "./fast-forward"; +import _MdFastRewind from "./fast-rewind"; +import _MdFavoriteBorder from "./favorite-border"; +import _MdFavoriteOutline from "./favorite-outline"; +import _MdFavorite from "./favorite"; +import _MdFeaturedPlayList from "./featured-play-list"; +import _MdFeaturedVideo from "./featured-video"; +import _MdFeedback from "./feedback"; +import _MdFiberDvr from "./fiber-dvr"; +import _MdFiberManualRecord from "./fiber-manual-record"; +import _MdFiberNew from "./fiber-new"; +import _MdFiberPin from "./fiber-pin"; +import _MdFiberSmartRecord from "./fiber-smart-record"; +import _MdFileDownload from "./file-download"; +import _MdFileUpload from "./file-upload"; +import _MdFilter1 from "./filter-1"; +import _MdFilter2 from "./filter-2"; +import _MdFilter3 from "./filter-3"; +import _MdFilter4 from "./filter-4"; +import _MdFilter5 from "./filter-5"; +import _MdFilter6 from "./filter-6"; +import _MdFilter7 from "./filter-7"; +import _MdFilter8 from "./filter-8"; +import _MdFilter9Plus from "./filter-9-plus"; +import _MdFilter9 from "./filter-9"; +import _MdFilterBAndW from "./filter-b-and-w"; +import _MdFilterCenterFocus from "./filter-center-focus"; +import _MdFilterDrama from "./filter-drama"; +import _MdFilterFrames from "./filter-frames"; +import _MdFilterHdr from "./filter-hdr"; +import _MdFilterList from "./filter-list"; +import _MdFilterNone from "./filter-none"; +import _MdFilterTiltShift from "./filter-tilt-shift"; +import _MdFilterVintage from "./filter-vintage"; +import _MdFilter from "./filter"; +import _MdFindInPage from "./find-in-page"; +import _MdFindReplace from "./find-replace"; +import _MdFingerprint from "./fingerprint"; +import _MdFirstPage from "./first-page"; +import _MdFitnessCenter from "./fitness-center"; +import _MdFlag from "./flag"; +import _MdFlare from "./flare"; +import _MdFlashAuto from "./flash-auto"; +import _MdFlashOff from "./flash-off"; +import _MdFlashOn from "./flash-on"; +import _MdFlightLand from "./flight-land"; +import _MdFlightTakeoff from "./flight-takeoff"; +import _MdFlight from "./flight"; +import _MdFlipToBack from "./flip-to-back"; +import _MdFlipToFront from "./flip-to-front"; +import _MdFlip from "./flip"; +import _MdFolderOpen from "./folder-open"; +import _MdFolderShared from "./folder-shared"; +import _MdFolderSpecial from "./folder-special"; +import _MdFolder from "./folder"; +import _MdFontDownload from "./font-download"; +import _MdFormatAlignCenter from "./format-align-center"; +import _MdFormatAlignJustify from "./format-align-justify"; +import _MdFormatAlignLeft from "./format-align-left"; +import _MdFormatAlignRight from "./format-align-right"; +import _MdFormatBold from "./format-bold"; +import _MdFormatClear from "./format-clear"; +import _MdFormatColorFill from "./format-color-fill"; +import _MdFormatColorReset from "./format-color-reset"; +import _MdFormatColorText from "./format-color-text"; +import _MdFormatIndentDecrease from "./format-indent-decrease"; +import _MdFormatIndentIncrease from "./format-indent-increase"; +import _MdFormatItalic from "./format-italic"; +import _MdFormatLineSpacing from "./format-line-spacing"; +import _MdFormatListBulleted from "./format-list-bulleted"; +import _MdFormatListNumbered from "./format-list-numbered"; +import _MdFormatPaint from "./format-paint"; +import _MdFormatQuote from "./format-quote"; +import _MdFormatShapes from "./format-shapes"; +import _MdFormatSize from "./format-size"; +import _MdFormatStrikethrough from "./format-strikethrough"; +import _MdFormatTextdirectionLToR from "./format-textdirection-l-to-r"; +import _MdFormatTextdirectionRToL from "./format-textdirection-r-to-l"; +import _MdFormatUnderlined from "./format-underlined"; +import _MdForum from "./forum"; +import _MdForward10 from "./forward-10"; +import _MdForward30 from "./forward-30"; +import _MdForward5 from "./forward-5"; +import _MdForward from "./forward"; +import _MdFreeBreakfast from "./free-breakfast"; +import _MdFullscreenExit from "./fullscreen-exit"; +import _MdFullscreen from "./fullscreen"; +import _MdFunctions from "./functions"; +import _MdGTranslate from "./g-translate"; +import _MdGamepad from "./gamepad"; +import _MdGames from "./games"; +import _MdGavel from "./gavel"; +import _MdGesture from "./gesture"; +import _MdGetApp from "./get-app"; +import _MdGif from "./gif"; +import _MdGoat from "./goat"; +import _MdGolfCourse from "./golf-course"; +import _MdGpsFixed from "./gps-fixed"; +import _MdGpsNotFixed from "./gps-not-fixed"; +import _MdGpsOff from "./gps-off"; +import _MdGrade from "./grade"; +import _MdGradient from "./gradient"; +import _MdGrain from "./grain"; +import _MdGraphicEq from "./graphic-eq"; +import _MdGridOff from "./grid-off"; +import _MdGridOn from "./grid-on"; +import _MdGroupAdd from "./group-add"; +import _MdGroupWork from "./group-work"; +import _MdGroup from "./group"; +import _MdHd from "./hd"; +import _MdHdrOff from "./hdr-off"; +import _MdHdrOn from "./hdr-on"; +import _MdHdrStrong from "./hdr-strong"; +import _MdHdrWeak from "./hdr-weak"; +import _MdHeadsetMic from "./headset-mic"; +import _MdHeadset from "./headset"; +import _MdHealing from "./healing"; +import _MdHearing from "./hearing"; +import _MdHelpOutline from "./help-outline"; +import _MdHelp from "./help"; +import _MdHighQuality from "./high-quality"; +import _MdHighlightOff from "./highlight-off"; +import _MdHighlightRemove from "./highlight-remove"; +import _MdHighlight from "./highlight"; +import _MdHistory from "./history"; +import _MdHome from "./home"; +import _MdHotTub from "./hot-tub"; +import _MdHotel from "./hotel"; +import _MdHourglassEmpty from "./hourglass-empty"; +import _MdHourglassFull from "./hourglass-full"; +import _MdHttp from "./http"; +import _MdHttps from "./https"; +import _MdImageAspectRatio from "./image-aspect-ratio"; +import _MdImage from "./image"; +import _MdImportContacts from "./import-contacts"; +import _MdImportExport from "./import-export"; +import _MdImportantDevices from "./important-devices"; +import _MdInbox from "./inbox"; +import _MdIndeterminateCheckBox from "./indeterminate-check-box"; +import _MdInfoOutline from "./info-outline"; +import _MdInfo from "./info"; +import _MdInput from "./input"; +import _MdInsertChart from "./insert-chart"; +import _MdInsertComment from "./insert-comment"; +import _MdInsertDriveFile from "./insert-drive-file"; +import _MdInsertEmoticon from "./insert-emoticon"; +import _MdInsertInvitation from "./insert-invitation"; +import _MdInsertLink from "./insert-link"; +import _MdInsertPhoto from "./insert-photo"; +import _MdInvertColorsOff from "./invert-colors-off"; +import _MdInvertColorsOn from "./invert-colors-on"; +import _MdInvertColors from "./invert-colors"; +import _MdIso from "./iso"; +import _MdKeyboardArrowDown from "./keyboard-arrow-down"; +import _MdKeyboardArrowLeft from "./keyboard-arrow-left"; +import _MdKeyboardArrowRight from "./keyboard-arrow-right"; +import _MdKeyboardArrowUp from "./keyboard-arrow-up"; +import _MdKeyboardBackspace from "./keyboard-backspace"; +import _MdKeyboardCapslock from "./keyboard-capslock"; +import _MdKeyboardControl from "./keyboard-control"; +import _MdKeyboardHide from "./keyboard-hide"; +import _MdKeyboardReturn from "./keyboard-return"; +import _MdKeyboardTab from "./keyboard-tab"; +import _MdKeyboardVoice from "./keyboard-voice"; +import _MdKeyboard from "./keyboard"; +import _MdKitchen from "./kitchen"; +import _MdLabelOutline from "./label-outline"; +import _MdLabel from "./label"; +import _MdLandscape from "./landscape"; +import _MdLanguage from "./language"; +import _MdLaptopChromebook from "./laptop-chromebook"; +import _MdLaptopMac from "./laptop-mac"; +import _MdLaptopWindows from "./laptop-windows"; +import _MdLaptop from "./laptop"; +import _MdLastPage from "./last-page"; +import _MdLaunch from "./launch"; +import _MdLayersClear from "./layers-clear"; +import _MdLayers from "./layers"; +import _MdLeakAdd from "./leak-add"; +import _MdLeakRemove from "./leak-remove"; +import _MdLens from "./lens"; +import _MdLibraryAdd from "./library-add"; +import _MdLibraryBooks from "./library-books"; +import _MdLibraryMusic from "./library-music"; +import _MdLightbulbOutline from "./lightbulb-outline"; +import _MdLineStyle from "./line-style"; +import _MdLineWeight from "./line-weight"; +import _MdLinearScale from "./linear-scale"; +import _MdLink from "./link"; +import _MdLinkedCamera from "./linked-camera"; +import _MdList from "./list"; +import _MdLiveHelp from "./live-help"; +import _MdLiveTv from "./live-tv"; +import _MdLocalAirport from "./local-airport"; +import _MdLocalAtm from "./local-atm"; +import _MdLocalAttraction from "./local-attraction"; +import _MdLocalBar from "./local-bar"; +import _MdLocalCafe from "./local-cafe"; +import _MdLocalCarWash from "./local-car-wash"; +import _MdLocalConvenienceStore from "./local-convenience-store"; +import _MdLocalDrink from "./local-drink"; +import _MdLocalFlorist from "./local-florist"; +import _MdLocalGasStation from "./local-gas-station"; +import _MdLocalGroceryStore from "./local-grocery-store"; +import _MdLocalHospital from "./local-hospital"; +import _MdLocalHotel from "./local-hotel"; +import _MdLocalLaundryService from "./local-laundry-service"; +import _MdLocalLibrary from "./local-library"; +import _MdLocalMall from "./local-mall"; +import _MdLocalMovies from "./local-movies"; +import _MdLocalOffer from "./local-offer"; +import _MdLocalParking from "./local-parking"; +import _MdLocalPharmacy from "./local-pharmacy"; +import _MdLocalPhone from "./local-phone"; +import _MdLocalPizza from "./local-pizza"; +import _MdLocalPlay from "./local-play"; +import _MdLocalPostOffice from "./local-post-office"; +import _MdLocalPrintShop from "./local-print-shop"; +import _MdLocalRestaurant from "./local-restaurant"; +import _MdLocalSee from "./local-see"; +import _MdLocalShipping from "./local-shipping"; +import _MdLocalTaxi from "./local-taxi"; +import _MdLocationCity from "./location-city"; +import _MdLocationDisabled from "./location-disabled"; +import _MdLocationHistory from "./location-history"; +import _MdLocationOff from "./location-off"; +import _MdLocationOn from "./location-on"; +import _MdLocationSearching from "./location-searching"; +import _MdLockOpen from "./lock-open"; +import _MdLockOutline from "./lock-outline"; +import _MdLock from "./lock"; +import _MdLooks3 from "./looks-3"; +import _MdLooks4 from "./looks-4"; +import _MdLooks5 from "./looks-5"; +import _MdLooks6 from "./looks-6"; +import _MdLooksOne from "./looks-one"; +import _MdLooksTwo from "./looks-two"; +import _MdLooks from "./looks"; +import _MdLoop from "./loop"; +import _MdLoupe from "./loupe"; +import _MdLowPriority from "./low-priority"; +import _MdLoyalty from "./loyalty"; +import _MdMailOutline from "./mail-outline"; +import _MdMail from "./mail"; +import _MdMap from "./map"; +import _MdMarkunreadMailbox from "./markunread-mailbox"; +import _MdMarkunread from "./markunread"; +import _MdMemory from "./memory"; +import _MdMenu from "./menu"; +import _MdMergeType from "./merge-type"; +import _MdMessage from "./message"; +import _MdMicNone from "./mic-none"; +import _MdMicOff from "./mic-off"; +import _MdMic from "./mic"; +import _MdMms from "./mms"; +import _MdModeComment from "./mode-comment"; +import _MdModeEdit from "./mode-edit"; +import _MdMonetizationOn from "./monetization-on"; +import _MdMoneyOff from "./money-off"; +import _MdMonochromePhotos from "./monochrome-photos"; +import _MdMoodBad from "./mood-bad"; +import _MdMood from "./mood"; +import _MdMoreHoriz from "./more-horiz"; +import _MdMoreVert from "./more-vert"; +import _MdMore from "./more"; +import _MdMotorcycle from "./motorcycle"; +import _MdMouse from "./mouse"; +import _MdMoveToInbox from "./move-to-inbox"; +import _MdMovieCreation from "./movie-creation"; +import _MdMovieFilter from "./movie-filter"; +import _MdMovie from "./movie"; +import _MdMultilineChart from "./multiline-chart"; +import _MdMusicNote from "./music-note"; +import _MdMusicVideo from "./music-video"; +import _MdMyLocation from "./my-location"; +import _MdNaturePeople from "./nature-people"; +import _MdNature from "./nature"; +import _MdNavigateBefore from "./navigate-before"; +import _MdNavigateNext from "./navigate-next"; +import _MdNavigation from "./navigation"; +import _MdNearMe from "./near-me"; +import _MdNetworkCell from "./network-cell"; +import _MdNetworkCheck from "./network-check"; +import _MdNetworkLocked from "./network-locked"; +import _MdNetworkWifi from "./network-wifi"; +import _MdNewReleases from "./new-releases"; +import _MdNextWeek from "./next-week"; +import _MdNfc from "./nfc"; +import _MdNoEncryption from "./no-encryption"; +import _MdNoSim from "./no-sim"; +import _MdNotInterested from "./not-interested"; +import _MdNoteAdd from "./note-add"; +import _MdNote from "./note"; +import _MdNotificationsActive from "./notifications-active"; +import _MdNotificationsNone from "./notifications-none"; +import _MdNotificationsOff from "./notifications-off"; +import _MdNotificationsPaused from "./notifications-paused"; +import _MdNotifications from "./notifications"; +import _MdNowWallpaper from "./now-wallpaper"; +import _MdNowWidgets from "./now-widgets"; +import _MdOfflinePin from "./offline-pin"; +import _MdOndemandVideo from "./ondemand-video"; +import _MdOpacity from "./opacity"; +import _MdOpenInBrowser from "./open-in-browser"; +import _MdOpenInNew from "./open-in-new"; +import _MdOpenWith from "./open-with"; +import _MdPages from "./pages"; +import _MdPageview from "./pageview"; +import _MdPalette from "./palette"; +import _MdPanTool from "./pan-tool"; +import _MdPanoramaFishEye from "./panorama-fish-eye"; +import _MdPanoramaHorizontal from "./panorama-horizontal"; +import _MdPanoramaVertical from "./panorama-vertical"; +import _MdPanoramaWideAngle from "./panorama-wide-angle"; +import _MdPanorama from "./panorama"; +import _MdPartyMode from "./party-mode"; +import _MdPauseCircleFilled from "./pause-circle-filled"; +import _MdPauseCircleOutline from "./pause-circle-outline"; +import _MdPause from "./pause"; +import _MdPayment from "./payment"; +import _MdPeopleOutline from "./people-outline"; +import _MdPeople from "./people"; +import _MdPermCameraMic from "./perm-camera-mic"; +import _MdPermContactCalendar from "./perm-contact-calendar"; +import _MdPermDataSetting from "./perm-data-setting"; +import _MdPermDeviceInformation from "./perm-device-information"; +import _MdPermIdentity from "./perm-identity"; +import _MdPermMedia from "./perm-media"; +import _MdPermPhoneMsg from "./perm-phone-msg"; +import _MdPermScanWifi from "./perm-scan-wifi"; +import _MdPersonAdd from "./person-add"; +import _MdPersonOutline from "./person-outline"; +import _MdPersonPinCircle from "./person-pin-circle"; +import _MdPersonPin from "./person-pin"; +import _MdPerson from "./person"; +import _MdPersonalVideo from "./personal-video"; +import _MdPets from "./pets"; +import _MdPhoneAndroid from "./phone-android"; +import _MdPhoneBluetoothSpeaker from "./phone-bluetooth-speaker"; +import _MdPhoneForwarded from "./phone-forwarded"; +import _MdPhoneInTalk from "./phone-in-talk"; +import _MdPhoneIphone from "./phone-iphone"; +import _MdPhoneLocked from "./phone-locked"; +import _MdPhoneMissed from "./phone-missed"; +import _MdPhonePaused from "./phone-paused"; +import _MdPhone from "./phone"; +import _MdPhonelinkErase from "./phonelink-erase"; +import _MdPhonelinkLock from "./phonelink-lock"; +import _MdPhonelinkOff from "./phonelink-off"; +import _MdPhonelinkRing from "./phonelink-ring"; +import _MdPhonelinkSetup from "./phonelink-setup"; +import _MdPhonelink from "./phonelink"; +import _MdPhotoAlbum from "./photo-album"; +import _MdPhotoCamera from "./photo-camera"; +import _MdPhotoFilter from "./photo-filter"; +import _MdPhotoLibrary from "./photo-library"; +import _MdPhotoSizeSelectActual from "./photo-size-select-actual"; +import _MdPhotoSizeSelectLarge from "./photo-size-select-large"; +import _MdPhotoSizeSelectSmall from "./photo-size-select-small"; +import _MdPhoto from "./photo"; +import _MdPictureAsPdf from "./picture-as-pdf"; +import _MdPictureInPictureAlt from "./picture-in-picture-alt"; +import _MdPictureInPicture from "./picture-in-picture"; +import _MdPieChartOutlined from "./pie-chart-outlined"; +import _MdPieChart from "./pie-chart"; +import _MdPinDrop from "./pin-drop"; +import _MdPlace from "./place"; +import _MdPlayArrow from "./play-arrow"; +import _MdPlayCircleFilled from "./play-circle-filled"; +import _MdPlayCircleOutline from "./play-circle-outline"; +import _MdPlayForWork from "./play-for-work"; +import _MdPlaylistAddCheck from "./playlist-add-check"; +import _MdPlaylistAdd from "./playlist-add"; +import _MdPlaylistPlay from "./playlist-play"; +import _MdPlusOne from "./plus-one"; +import _MdPoll from "./poll"; +import _MdPolymer from "./polymer"; +import _MdPool from "./pool"; +import _MdPortableWifiOff from "./portable-wifi-off"; +import _MdPortrait from "./portrait"; +import _MdPowerInput from "./power-input"; +import _MdPowerSettingsNew from "./power-settings-new"; +import _MdPower from "./power"; +import _MdPregnantWoman from "./pregnant-woman"; +import _MdPresentToAll from "./present-to-all"; +import _MdPrint from "./print"; +import _MdPriorityHigh from "./priority-high"; +import _MdPublic from "./public"; +import _MdPublish from "./publish"; +import _MdQueryBuilder from "./query-builder"; +import _MdQuestionAnswer from "./question-answer"; +import _MdQueueMusic from "./queue-music"; +import _MdQueuePlayNext from "./queue-play-next"; +import _MdQueue from "./queue"; +import _MdRadioButtonChecked from "./radio-button-checked"; +import _MdRadioButtonUnchecked from "./radio-button-unchecked"; +import _MdRadio from "./radio"; +import _MdRateReview from "./rate-review"; +import _MdReceipt from "./receipt"; +import _MdRecentActors from "./recent-actors"; +import _MdRecordVoiceOver from "./record-voice-over"; +import _MdRedeem from "./redeem"; +import _MdRedo from "./redo"; +import _MdRefresh from "./refresh"; +import _MdRemoveCircleOutline from "./remove-circle-outline"; +import _MdRemoveCircle from "./remove-circle"; +import _MdRemoveFromQueue from "./remove-from-queue"; +import _MdRemoveRedEye from "./remove-red-eye"; +import _MdRemoveShoppingCart from "./remove-shopping-cart"; +import _MdRemove from "./remove"; +import _MdReorder from "./reorder"; +import _MdRepeatOne from "./repeat-one"; +import _MdRepeat from "./repeat"; +import _MdReplay10 from "./replay-10"; +import _MdReplay30 from "./replay-30"; +import _MdReplay5 from "./replay-5"; +import _MdReplay from "./replay"; +import _MdReplyAll from "./reply-all"; +import _MdReply from "./reply"; +import _MdReportProblem from "./report-problem"; +import _MdReport from "./report"; +import _MdRestaurantMenu from "./restaurant-menu"; +import _MdRestaurant from "./restaurant"; +import _MdRestorePage from "./restore-page"; +import _MdRestore from "./restore"; +import _MdRingVolume from "./ring-volume"; +import _MdRoomService from "./room-service"; +import _MdRoom from "./room"; +import _MdRotate90DegreesCcw from "./rotate-90-degrees-ccw"; +import _MdRotateLeft from "./rotate-left"; +import _MdRotateRight from "./rotate-right"; +import _MdRoundedCorner from "./rounded-corner"; +import _MdRouter from "./router"; +import _MdRowing from "./rowing"; +import _MdRssFeed from "./rss-feed"; +import _MdRvHookup from "./rv-hookup"; +import _MdSatellite from "./satellite"; +import _MdSave from "./save"; +import _MdScanner from "./scanner"; +import _MdSchedule from "./schedule"; +import _MdSchool from "./school"; +import _MdScreenLockLandscape from "./screen-lock-landscape"; +import _MdScreenLockPortrait from "./screen-lock-portrait"; +import _MdScreenLockRotation from "./screen-lock-rotation"; +import _MdScreenRotation from "./screen-rotation"; +import _MdScreenShare from "./screen-share"; +import _MdSdCard from "./sd-card"; +import _MdSdStorage from "./sd-storage"; +import _MdSearch from "./search"; +import _MdSecurity from "./security"; +import _MdSelectAll from "./select-all"; +import _MdSend from "./send"; +import _MdSentimentDissatisfied from "./sentiment-dissatisfied"; +import _MdSentimentNeutral from "./sentiment-neutral"; +import _MdSentimentSatisfied from "./sentiment-satisfied"; +import _MdSentimentVeryDissatisfied from "./sentiment-very-dissatisfied"; +import _MdSentimentVerySatisfied from "./sentiment-very-satisfied"; +import _MdSettingsApplications from "./settings-applications"; +import _MdSettingsBackupRestore from "./settings-backup-restore"; +import _MdSettingsBluetooth from "./settings-bluetooth"; +import _MdSettingsBrightness from "./settings-brightness"; +import _MdSettingsCell from "./settings-cell"; +import _MdSettingsEthernet from "./settings-ethernet"; +import _MdSettingsInputAntenna from "./settings-input-antenna"; +import _MdSettingsInputComponent from "./settings-input-component"; +import _MdSettingsInputComposite from "./settings-input-composite"; +import _MdSettingsInputHdmi from "./settings-input-hdmi"; +import _MdSettingsInputSvideo from "./settings-input-svideo"; +import _MdSettingsOverscan from "./settings-overscan"; +import _MdSettingsPhone from "./settings-phone"; +import _MdSettingsPower from "./settings-power"; +import _MdSettingsRemote from "./settings-remote"; +import _MdSettingsSystemDaydream from "./settings-system-daydream"; +import _MdSettingsVoice from "./settings-voice"; +import _MdSettings from "./settings"; +import _MdShare from "./share"; +import _MdShopTwo from "./shop-two"; +import _MdShop from "./shop"; +import _MdShoppingBasket from "./shopping-basket"; +import _MdShoppingCart from "./shopping-cart"; +import _MdShortText from "./short-text"; +import _MdShowChart from "./show-chart"; +import _MdShuffle from "./shuffle"; +import _MdSignalCellular4Bar from "./signal-cellular-4-bar"; +import _MdSignalCellularConnectedNoInternet4Bar from "./signal-cellular-connected-no-internet-4-bar"; +import _MdSignalCellularNoSim from "./signal-cellular-no-sim"; +import _MdSignalCellularNull from "./signal-cellular-null"; +import _MdSignalCellularOff from "./signal-cellular-off"; +import _MdSignalWifi4BarLock from "./signal-wifi-4-bar-lock"; +import _MdSignalWifi4Bar from "./signal-wifi-4-bar"; +import _MdSignalWifiOff from "./signal-wifi-off"; +import _MdSimCardAlert from "./sim-card-alert"; +import _MdSimCard from "./sim-card"; +import _MdSkipNext from "./skip-next"; +import _MdSkipPrevious from "./skip-previous"; +import _MdSlideshow from "./slideshow"; +import _MdSlowMotionVideo from "./slow-motion-video"; +import _MdSmartphone from "./smartphone"; +import _MdSmokeFree from "./smoke-free"; +import _MdSmokingRooms from "./smoking-rooms"; +import _MdSmsFailed from "./sms-failed"; +import _MdSms from "./sms"; +import _MdSnooze from "./snooze"; +import _MdSortByAlpha from "./sort-by-alpha"; +import _MdSort from "./sort"; +import _MdSpa from "./spa"; +import _MdSpaceBar from "./space-bar"; +import _MdSpeakerGroup from "./speaker-group"; +import _MdSpeakerNotesOff from "./speaker-notes-off"; +import _MdSpeakerNotes from "./speaker-notes"; +import _MdSpeakerPhone from "./speaker-phone"; +import _MdSpeaker from "./speaker"; +import _MdSpellcheck from "./spellcheck"; +import _MdStarBorder from "./star-border"; +import _MdStarHalf from "./star-half"; +import _MdStarOutline from "./star-outline"; +import _MdStar from "./star"; +import _MdStars from "./stars"; +import _MdStayCurrentLandscape from "./stay-current-landscape"; +import _MdStayCurrentPortrait from "./stay-current-portrait"; +import _MdStayPrimaryLandscape from "./stay-primary-landscape"; +import _MdStayPrimaryPortrait from "./stay-primary-portrait"; +import _MdStopScreenShare from "./stop-screen-share"; +import _MdStop from "./stop"; +import _MdStorage from "./storage"; +import _MdStoreMallDirectory from "./store-mall-directory"; +import _MdStore from "./store"; +import _MdStraighten from "./straighten"; +import _MdStreetview from "./streetview"; +import _MdStrikethroughS from "./strikethrough-s"; +import _MdStyle from "./style"; +import _MdSubdirectoryArrowLeft from "./subdirectory-arrow-left"; +import _MdSubdirectoryArrowRight from "./subdirectory-arrow-right"; +import _MdSubject from "./subject"; +import _MdSubscriptions from "./subscriptions"; +import _MdSubtitles from "./subtitles"; +import _MdSubway from "./subway"; +import _MdSupervisorAccount from "./supervisor-account"; +import _MdSurroundSound from "./surround-sound"; +import _MdSwapCalls from "./swap-calls"; +import _MdSwapHoriz from "./swap-horiz"; +import _MdSwapVert from "./swap-vert"; +import _MdSwapVerticalCircle from "./swap-vertical-circle"; +import _MdSwitchCamera from "./switch-camera"; +import _MdSwitchVideo from "./switch-video"; +import _MdSyncDisabled from "./sync-disabled"; +import _MdSyncProblem from "./sync-problem"; +import _MdSync from "./sync"; +import _MdSystemUpdateAlt from "./system-update-alt"; +import _MdSystemUpdate from "./system-update"; +import _MdTabUnselected from "./tab-unselected"; +import _MdTab from "./tab"; +import _MdTabletAndroid from "./tablet-android"; +import _MdTabletMac from "./tablet-mac"; +import _MdTablet from "./tablet"; +import _MdTagFaces from "./tag-faces"; +import _MdTapAndPlay from "./tap-and-play"; +import _MdTerrain from "./terrain"; +import _MdTextFields from "./text-fields"; +import _MdTextFormat from "./text-format"; +import _MdTextsms from "./textsms"; +import _MdTexture from "./texture"; +import _MdTheaters from "./theaters"; +import _MdThumbDown from "./thumb-down"; +import _MdThumbUp from "./thumb-up"; +import _MdThumbsUpDown from "./thumbs-up-down"; +import _MdTimeToLeave from "./time-to-leave"; +import _MdTimelapse from "./timelapse"; +import _MdTimeline from "./timeline"; +import _MdTimer10 from "./timer-10"; +import _MdTimer3 from "./timer-3"; +import _MdTimerOff from "./timer-off"; +import _MdTimer from "./timer"; +import _MdTitle from "./title"; +import _MdToc from "./toc"; +import _MdToday from "./today"; +import _MdToll from "./toll"; +import _MdTonality from "./tonality"; +import _MdTouchApp from "./touch-app"; +import _MdToys from "./toys"; +import _MdTrackChanges from "./track-changes"; +import _MdTraffic from "./traffic"; +import _MdTrain from "./train"; +import _MdTram from "./tram"; +import _MdTransferWithinAStation from "./transfer-within-a-station"; +import _MdTransform from "./transform"; +import _MdTranslate from "./translate"; +import _MdTrendingDown from "./trending-down"; +import _MdTrendingFlat from "./trending-flat"; +import _MdTrendingNeutral from "./trending-neutral"; +import _MdTrendingUp from "./trending-up"; +import _MdTune from "./tune"; +import _MdTurnedInNot from "./turned-in-not"; +import _MdTurnedIn from "./turned-in"; +import _MdTv from "./tv"; +import _MdUnarchive from "./unarchive"; +import _MdUndo from "./undo"; +import _MdUnfoldLess from "./unfold-less"; +import _MdUnfoldMore from "./unfold-more"; +import _MdUpdate from "./update"; +import _MdUsb from "./usb"; +import _MdVerifiedUser from "./verified-user"; +import _MdVerticalAlignBottom from "./vertical-align-bottom"; +import _MdVerticalAlignCenter from "./vertical-align-center"; +import _MdVerticalAlignTop from "./vertical-align-top"; +import _MdVibration from "./vibration"; +import _MdVideoCall from "./video-call"; +import _MdVideoCollection from "./video-collection"; +import _MdVideoLabel from "./video-label"; +import _MdVideoLibrary from "./video-library"; +import _MdVideocamOff from "./videocam-off"; +import _MdVideocam from "./videocam"; +import _MdVideogameAsset from "./videogame-asset"; +import _MdViewAgenda from "./view-agenda"; +import _MdViewArray from "./view-array"; +import _MdViewCarousel from "./view-carousel"; +import _MdViewColumn from "./view-column"; +import _MdViewComfortable from "./view-comfortable"; +import _MdViewComfy from "./view-comfy"; +import _MdViewCompact from "./view-compact"; +import _MdViewDay from "./view-day"; +import _MdViewHeadline from "./view-headline"; +import _MdViewList from "./view-list"; +import _MdViewModule from "./view-module"; +import _MdViewQuilt from "./view-quilt"; +import _MdViewStream from "./view-stream"; +import _MdViewWeek from "./view-week"; +import _MdVignette from "./vignette"; +import _MdVisibilityOff from "./visibility-off"; +import _MdVisibility from "./visibility"; +import _MdVoiceChat from "./voice-chat"; +import _MdVoicemail from "./voicemail"; +import _MdVolumeDown from "./volume-down"; +import _MdVolumeMute from "./volume-mute"; +import _MdVolumeOff from "./volume-off"; +import _MdVolumeUp from "./volume-up"; +import _MdVpnKey from "./vpn-key"; +import _MdVpnLock from "./vpn-lock"; +import _MdWallpaper from "./wallpaper"; +import _MdWarning from "./warning"; +import _MdWatchLater from "./watch-later"; +import _MdWatch from "./watch"; +import _MdWbAuto from "./wb-auto"; +import _MdWbCloudy from "./wb-cloudy"; +import _MdWbIncandescent from "./wb-incandescent"; +import _MdWbIridescent from "./wb-iridescent"; +import _MdWbSunny from "./wb-sunny"; +import _MdWc from "./wc"; +import _MdWebAsset from "./web-asset"; +import _MdWeb from "./web"; +import _MdWeekend from "./weekend"; +import _MdWhatshot from "./whatshot"; +import _MdWidgets from "./widgets"; +import _MdWifiLock from "./wifi-lock"; +import _MdWifiTethering from "./wifi-tethering"; +import _MdWifi from "./wifi"; +import _MdWork from "./work"; +import _MdWrapText from "./wrap-text"; +import _MdYoutubeSearchedFor from "./youtube-searched-for"; +import _MdZoomIn from "./zoom-in"; +import _MdZoomOutMap from "./zoom-out-map"; +import _MdZoomOut from "./zoom-out"; +export var Md3dRotation: typeof _Md3dRotation; +export var MdAcUnit: typeof _MdAcUnit; +export var MdAccessAlarm: typeof _MdAccessAlarm; +export var MdAccessAlarms: typeof _MdAccessAlarms; +export var MdAccessTime: typeof _MdAccessTime; +export var MdAccessibility: typeof _MdAccessibility; +export var MdAccessible: typeof _MdAccessible; +export var MdAccountBalanceWallet: typeof _MdAccountBalanceWallet; +export var MdAccountBalance: typeof _MdAccountBalance; +export var MdAccountBox: typeof _MdAccountBox; +export var MdAccountCircle: typeof _MdAccountCircle; +export var MdAdb: typeof _MdAdb; +export var MdAddAPhoto: typeof _MdAddAPhoto; +export var MdAddAlarm: typeof _MdAddAlarm; +export var MdAddAlert: typeof _MdAddAlert; +export var MdAddBox: typeof _MdAddBox; +export var MdAddCircleOutline: typeof _MdAddCircleOutline; +export var MdAddCircle: typeof _MdAddCircle; +export var MdAddLocation: typeof _MdAddLocation; +export var MdAddShoppingCart: typeof _MdAddShoppingCart; +export var MdAddToPhotos: typeof _MdAddToPhotos; +export var MdAddToQueue: typeof _MdAddToQueue; +export var MdAdd: typeof _MdAdd; +export var MdAdjust: typeof _MdAdjust; +export var MdAirlineSeatFlatAngled: typeof _MdAirlineSeatFlatAngled; +export var MdAirlineSeatFlat: typeof _MdAirlineSeatFlat; +export var MdAirlineSeatIndividualSuite: typeof _MdAirlineSeatIndividualSuite; +export var MdAirlineSeatLegroomExtra: typeof _MdAirlineSeatLegroomExtra; +export var MdAirlineSeatLegroomNormal: typeof _MdAirlineSeatLegroomNormal; +export var MdAirlineSeatLegroomReduced: typeof _MdAirlineSeatLegroomReduced; +export var MdAirlineSeatReclineExtra: typeof _MdAirlineSeatReclineExtra; +export var MdAirlineSeatReclineNormal: typeof _MdAirlineSeatReclineNormal; +export var MdAirplanemodeActive: typeof _MdAirplanemodeActive; +export var MdAirplanemodeInactive: typeof _MdAirplanemodeInactive; +export var MdAirplay: typeof _MdAirplay; +export var MdAirportShuttle: typeof _MdAirportShuttle; +export var MdAlarmAdd: typeof _MdAlarmAdd; +export var MdAlarmOff: typeof _MdAlarmOff; +export var MdAlarmOn: typeof _MdAlarmOn; +export var MdAlarm: typeof _MdAlarm; +export var MdAlbum: typeof _MdAlbum; +export var MdAllInclusive: typeof _MdAllInclusive; +export var MdAllOut: typeof _MdAllOut; +export var MdAndroid: typeof _MdAndroid; +export var MdAnnouncement: typeof _MdAnnouncement; +export var MdApps: typeof _MdApps; +export var MdArchive: typeof _MdArchive; +export var MdArrowBack: typeof _MdArrowBack; +export var MdArrowDownward: typeof _MdArrowDownward; +export var MdArrowDropDownCircle: typeof _MdArrowDropDownCircle; +export var MdArrowDropDown: typeof _MdArrowDropDown; +export var MdArrowDropUp: typeof _MdArrowDropUp; +export var MdArrowForward: typeof _MdArrowForward; +export var MdArrowUpward: typeof _MdArrowUpward; +export var MdArtTrack: typeof _MdArtTrack; +export var MdAspectRatio: typeof _MdAspectRatio; +export var MdAssessment: typeof _MdAssessment; +export var MdAssignmentInd: typeof _MdAssignmentInd; +export var MdAssignmentLate: typeof _MdAssignmentLate; +export var MdAssignmentReturn: typeof _MdAssignmentReturn; +export var MdAssignmentReturned: typeof _MdAssignmentReturned; +export var MdAssignmentTurnedIn: typeof _MdAssignmentTurnedIn; +export var MdAssignment: typeof _MdAssignment; +export var MdAssistantPhoto: typeof _MdAssistantPhoto; +export var MdAssistant: typeof _MdAssistant; +export var MdAttachFile: typeof _MdAttachFile; +export var MdAttachMoney: typeof _MdAttachMoney; +export var MdAttachment: typeof _MdAttachment; +export var MdAudiotrack: typeof _MdAudiotrack; +export var MdAutorenew: typeof _MdAutorenew; +export var MdAvTimer: typeof _MdAvTimer; +export var MdBackspace: typeof _MdBackspace; +export var MdBackup: typeof _MdBackup; +export var MdBatteryAlert: typeof _MdBatteryAlert; +export var MdBatteryChargingFull: typeof _MdBatteryChargingFull; +export var MdBatteryFull: typeof _MdBatteryFull; +export var MdBatteryStd: typeof _MdBatteryStd; +export var MdBatteryUnknown: typeof _MdBatteryUnknown; +export var MdBeachAccess: typeof _MdBeachAccess; +export var MdBeenhere: typeof _MdBeenhere; +export var MdBlock: typeof _MdBlock; +export var MdBluetoothAudio: typeof _MdBluetoothAudio; +export var MdBluetoothConnected: typeof _MdBluetoothConnected; +export var MdBluetoothDisabled: typeof _MdBluetoothDisabled; +export var MdBluetoothSearching: typeof _MdBluetoothSearching; +export var MdBluetooth: typeof _MdBluetooth; +export var MdBlurCircular: typeof _MdBlurCircular; +export var MdBlurLinear: typeof _MdBlurLinear; +export var MdBlurOff: typeof _MdBlurOff; +export var MdBlurOn: typeof _MdBlurOn; +export var MdBook: typeof _MdBook; +export var MdBookmarkOutline: typeof _MdBookmarkOutline; +export var MdBookmark: typeof _MdBookmark; +export var MdBorderAll: typeof _MdBorderAll; +export var MdBorderBottom: typeof _MdBorderBottom; +export var MdBorderClear: typeof _MdBorderClear; +export var MdBorderColor: typeof _MdBorderColor; +export var MdBorderHorizontal: typeof _MdBorderHorizontal; +export var MdBorderInner: typeof _MdBorderInner; +export var MdBorderLeft: typeof _MdBorderLeft; +export var MdBorderOuter: typeof _MdBorderOuter; +export var MdBorderRight: typeof _MdBorderRight; +export var MdBorderStyle: typeof _MdBorderStyle; +export var MdBorderTop: typeof _MdBorderTop; +export var MdBorderVertical: typeof _MdBorderVertical; +export var MdBrandingWatermark: typeof _MdBrandingWatermark; +export var MdBrightness1: typeof _MdBrightness1; +export var MdBrightness2: typeof _MdBrightness2; +export var MdBrightness3: typeof _MdBrightness3; +export var MdBrightness4: typeof _MdBrightness4; +export var MdBrightness5: typeof _MdBrightness5; +export var MdBrightness6: typeof _MdBrightness6; +export var MdBrightness7: typeof _MdBrightness7; +export var MdBrightnessAuto: typeof _MdBrightnessAuto; +export var MdBrightnessHigh: typeof _MdBrightnessHigh; +export var MdBrightnessLow: typeof _MdBrightnessLow; +export var MdBrightnessMedium: typeof _MdBrightnessMedium; +export var MdBrokenImage: typeof _MdBrokenImage; +export var MdBrush: typeof _MdBrush; +export var MdBubbleChart: typeof _MdBubbleChart; +export var MdBugReport: typeof _MdBugReport; +export var MdBuild: typeof _MdBuild; +export var MdBurstMode: typeof _MdBurstMode; +export var MdBusinessCenter: typeof _MdBusinessCenter; +export var MdBusiness: typeof _MdBusiness; +export var MdCached: typeof _MdCached; +export var MdCake: typeof _MdCake; +export var MdCallEnd: typeof _MdCallEnd; +export var MdCallMade: typeof _MdCallMade; +export var MdCallMerge: typeof _MdCallMerge; +export var MdCallMissedOutgoing: typeof _MdCallMissedOutgoing; +export var MdCallMissed: typeof _MdCallMissed; +export var MdCallReceived: typeof _MdCallReceived; +export var MdCallSplit: typeof _MdCallSplit; +export var MdCallToAction: typeof _MdCallToAction; +export var MdCall: typeof _MdCall; +export var MdCameraAlt: typeof _MdCameraAlt; +export var MdCameraEnhance: typeof _MdCameraEnhance; +export var MdCameraFront: typeof _MdCameraFront; +export var MdCameraRear: typeof _MdCameraRear; +export var MdCameraRoll: typeof _MdCameraRoll; +export var MdCamera: typeof _MdCamera; +export var MdCancel: typeof _MdCancel; +export var MdCardGiftcard: typeof _MdCardGiftcard; +export var MdCardMembership: typeof _MdCardMembership; +export var MdCardTravel: typeof _MdCardTravel; +export var MdCasino: typeof _MdCasino; +export var MdCastConnected: typeof _MdCastConnected; +export var MdCast: typeof _MdCast; +export var MdCenterFocusStrong: typeof _MdCenterFocusStrong; +export var MdCenterFocusWeak: typeof _MdCenterFocusWeak; +export var MdChangeHistory: typeof _MdChangeHistory; +export var MdChatBubbleOutline: typeof _MdChatBubbleOutline; +export var MdChatBubble: typeof _MdChatBubble; +export var MdChat: typeof _MdChat; +export var MdCheckBoxOutlineBlank: typeof _MdCheckBoxOutlineBlank; +export var MdCheckBox: typeof _MdCheckBox; +export var MdCheckCircle: typeof _MdCheckCircle; +export var MdCheck: typeof _MdCheck; +export var MdChevronLeft: typeof _MdChevronLeft; +export var MdChevronRight: typeof _MdChevronRight; +export var MdChildCare: typeof _MdChildCare; +export var MdChildFriendly: typeof _MdChildFriendly; +export var MdChromeReaderMode: typeof _MdChromeReaderMode; +export var MdClass: typeof _MdClass; +export var MdClearAll: typeof _MdClearAll; +export var MdClear: typeof _MdClear; +export var MdClose: typeof _MdClose; +export var MdClosedCaption: typeof _MdClosedCaption; +export var MdCloudCircle: typeof _MdCloudCircle; +export var MdCloudDone: typeof _MdCloudDone; +export var MdCloudDownload: typeof _MdCloudDownload; +export var MdCloudOff: typeof _MdCloudOff; +export var MdCloudQueue: typeof _MdCloudQueue; +export var MdCloudUpload: typeof _MdCloudUpload; +export var MdCloud: typeof _MdCloud; +export var MdCode: typeof _MdCode; +export var MdCollectionsBookmark: typeof _MdCollectionsBookmark; +export var MdCollections: typeof _MdCollections; +export var MdColorLens: typeof _MdColorLens; +export var MdColorize: typeof _MdColorize; +export var MdComment: typeof _MdComment; +export var MdCompareArrows: typeof _MdCompareArrows; +export var MdCompare: typeof _MdCompare; +export var MdComputer: typeof _MdComputer; +export var MdConfirmationNumber: typeof _MdConfirmationNumber; +export var MdContactMail: typeof _MdContactMail; +export var MdContactPhone: typeof _MdContactPhone; +export var MdContacts: typeof _MdContacts; +export var MdContentCopy: typeof _MdContentCopy; +export var MdContentCut: typeof _MdContentCut; +export var MdContentPaste: typeof _MdContentPaste; +export var MdControlPointDuplicate: typeof _MdControlPointDuplicate; +export var MdControlPoint: typeof _MdControlPoint; +export var MdCopyright: typeof _MdCopyright; +export var MdCreateNewFolder: typeof _MdCreateNewFolder; +export var MdCreate: typeof _MdCreate; +export var MdCreditCard: typeof _MdCreditCard; +export var MdCrop169: typeof _MdCrop169; +export var MdCrop32: typeof _MdCrop32; +export var MdCrop54: typeof _MdCrop54; +export var MdCrop75: typeof _MdCrop75; +export var MdCropDin: typeof _MdCropDin; +export var MdCropFree: typeof _MdCropFree; +export var MdCropLandscape: typeof _MdCropLandscape; +export var MdCropOriginal: typeof _MdCropOriginal; +export var MdCropPortrait: typeof _MdCropPortrait; +export var MdCropRotate: typeof _MdCropRotate; +export var MdCropSquare: typeof _MdCropSquare; +export var MdCrop: typeof _MdCrop; +export var MdDashboard: typeof _MdDashboard; +export var MdDataUsage: typeof _MdDataUsage; +export var MdDateRange: typeof _MdDateRange; +export var MdDehaze: typeof _MdDehaze; +export var MdDeleteForever: typeof _MdDeleteForever; +export var MdDeleteSweep: typeof _MdDeleteSweep; +export var MdDelete: typeof _MdDelete; +export var MdDescription: typeof _MdDescription; +export var MdDesktopMac: typeof _MdDesktopMac; +export var MdDesktopWindows: typeof _MdDesktopWindows; +export var MdDetails: typeof _MdDetails; +export var MdDeveloperBoard: typeof _MdDeveloperBoard; +export var MdDeveloperMode: typeof _MdDeveloperMode; +export var MdDeviceHub: typeof _MdDeviceHub; +export var MdDevicesOther: typeof _MdDevicesOther; +export var MdDevices: typeof _MdDevices; +export var MdDialerSip: typeof _MdDialerSip; +export var MdDialpad: typeof _MdDialpad; +export var MdDirectionsBike: typeof _MdDirectionsBike; +export var MdDirectionsBoat: typeof _MdDirectionsBoat; +export var MdDirectionsBus: typeof _MdDirectionsBus; +export var MdDirectionsCar: typeof _MdDirectionsCar; +export var MdDirectionsFerry: typeof _MdDirectionsFerry; +export var MdDirectionsRailway: typeof _MdDirectionsRailway; +export var MdDirectionsRun: typeof _MdDirectionsRun; +export var MdDirectionsSubway: typeof _MdDirectionsSubway; +export var MdDirectionsTransit: typeof _MdDirectionsTransit; +export var MdDirectionsWalk: typeof _MdDirectionsWalk; +export var MdDirections: typeof _MdDirections; +export var MdDiscFull: typeof _MdDiscFull; +export var MdDns: typeof _MdDns; +export var MdDoNotDisturbAlt: typeof _MdDoNotDisturbAlt; +export var MdDoNotDisturbOff: typeof _MdDoNotDisturbOff; +export var MdDoNotDisturb: typeof _MdDoNotDisturb; +export var MdDock: typeof _MdDock; +export var MdDomain: typeof _MdDomain; +export var MdDoneAll: typeof _MdDoneAll; +export var MdDone: typeof _MdDone; +export var MdDonutLarge: typeof _MdDonutLarge; +export var MdDonutSmall: typeof _MdDonutSmall; +export var MdDrafts: typeof _MdDrafts; +export var MdDragHandle: typeof _MdDragHandle; +export var MdDriveEta: typeof _MdDriveEta; +export var MdDvr: typeof _MdDvr; +export var MdEditLocation: typeof _MdEditLocation; +export var MdEdit: typeof _MdEdit; +export var MdEject: typeof _MdEject; +export var MdEmail: typeof _MdEmail; +export var MdEnhancedEncryption: typeof _MdEnhancedEncryption; +export var MdEqualizer: typeof _MdEqualizer; +export var MdErrorOutline: typeof _MdErrorOutline; +export var MdError: typeof _MdError; +export var MdEuroSymbol: typeof _MdEuroSymbol; +export var MdEvStation: typeof _MdEvStation; +export var MdEventAvailable: typeof _MdEventAvailable; +export var MdEventBusy: typeof _MdEventBusy; +export var MdEventNote: typeof _MdEventNote; +export var MdEventSeat: typeof _MdEventSeat; +export var MdEvent: typeof _MdEvent; +export var MdExitToApp: typeof _MdExitToApp; +export var MdExpandLess: typeof _MdExpandLess; +export var MdExpandMore: typeof _MdExpandMore; +export var MdExplicit: typeof _MdExplicit; +export var MdExplore: typeof _MdExplore; +export var MdExposureMinus1: typeof _MdExposureMinus1; +export var MdExposureMinus2: typeof _MdExposureMinus2; +export var MdExposureNeg1: typeof _MdExposureNeg1; +export var MdExposureNeg2: typeof _MdExposureNeg2; +export var MdExposurePlus1: typeof _MdExposurePlus1; +export var MdExposurePlus2: typeof _MdExposurePlus2; +export var MdExposureZero: typeof _MdExposureZero; +export var MdExposure: typeof _MdExposure; +export var MdExtension: typeof _MdExtension; +export var MdFace: typeof _MdFace; +export var MdFastForward: typeof _MdFastForward; +export var MdFastRewind: typeof _MdFastRewind; +export var MdFavoriteBorder: typeof _MdFavoriteBorder; +export var MdFavoriteOutline: typeof _MdFavoriteOutline; +export var MdFavorite: typeof _MdFavorite; +export var MdFeaturedPlayList: typeof _MdFeaturedPlayList; +export var MdFeaturedVideo: typeof _MdFeaturedVideo; +export var MdFeedback: typeof _MdFeedback; +export var MdFiberDvr: typeof _MdFiberDvr; +export var MdFiberManualRecord: typeof _MdFiberManualRecord; +export var MdFiberNew: typeof _MdFiberNew; +export var MdFiberPin: typeof _MdFiberPin; +export var MdFiberSmartRecord: typeof _MdFiberSmartRecord; +export var MdFileDownload: typeof _MdFileDownload; +export var MdFileUpload: typeof _MdFileUpload; +export var MdFilter1: typeof _MdFilter1; +export var MdFilter2: typeof _MdFilter2; +export var MdFilter3: typeof _MdFilter3; +export var MdFilter4: typeof _MdFilter4; +export var MdFilter5: typeof _MdFilter5; +export var MdFilter6: typeof _MdFilter6; +export var MdFilter7: typeof _MdFilter7; +export var MdFilter8: typeof _MdFilter8; +export var MdFilter9Plus: typeof _MdFilter9Plus; +export var MdFilter9: typeof _MdFilter9; +export var MdFilterBAndW: typeof _MdFilterBAndW; +export var MdFilterCenterFocus: typeof _MdFilterCenterFocus; +export var MdFilterDrama: typeof _MdFilterDrama; +export var MdFilterFrames: typeof _MdFilterFrames; +export var MdFilterHdr: typeof _MdFilterHdr; +export var MdFilterList: typeof _MdFilterList; +export var MdFilterNone: typeof _MdFilterNone; +export var MdFilterTiltShift: typeof _MdFilterTiltShift; +export var MdFilterVintage: typeof _MdFilterVintage; +export var MdFilter: typeof _MdFilter; +export var MdFindInPage: typeof _MdFindInPage; +export var MdFindReplace: typeof _MdFindReplace; +export var MdFingerprint: typeof _MdFingerprint; +export var MdFirstPage: typeof _MdFirstPage; +export var MdFitnessCenter: typeof _MdFitnessCenter; +export var MdFlag: typeof _MdFlag; +export var MdFlare: typeof _MdFlare; +export var MdFlashAuto: typeof _MdFlashAuto; +export var MdFlashOff: typeof _MdFlashOff; +export var MdFlashOn: typeof _MdFlashOn; +export var MdFlightLand: typeof _MdFlightLand; +export var MdFlightTakeoff: typeof _MdFlightTakeoff; +export var MdFlight: typeof _MdFlight; +export var MdFlipToBack: typeof _MdFlipToBack; +export var MdFlipToFront: typeof _MdFlipToFront; +export var MdFlip: typeof _MdFlip; +export var MdFolderOpen: typeof _MdFolderOpen; +export var MdFolderShared: typeof _MdFolderShared; +export var MdFolderSpecial: typeof _MdFolderSpecial; +export var MdFolder: typeof _MdFolder; +export var MdFontDownload: typeof _MdFontDownload; +export var MdFormatAlignCenter: typeof _MdFormatAlignCenter; +export var MdFormatAlignJustify: typeof _MdFormatAlignJustify; +export var MdFormatAlignLeft: typeof _MdFormatAlignLeft; +export var MdFormatAlignRight: typeof _MdFormatAlignRight; +export var MdFormatBold: typeof _MdFormatBold; +export var MdFormatClear: typeof _MdFormatClear; +export var MdFormatColorFill: typeof _MdFormatColorFill; +export var MdFormatColorReset: typeof _MdFormatColorReset; +export var MdFormatColorText: typeof _MdFormatColorText; +export var MdFormatIndentDecrease: typeof _MdFormatIndentDecrease; +export var MdFormatIndentIncrease: typeof _MdFormatIndentIncrease; +export var MdFormatItalic: typeof _MdFormatItalic; +export var MdFormatLineSpacing: typeof _MdFormatLineSpacing; +export var MdFormatListBulleted: typeof _MdFormatListBulleted; +export var MdFormatListNumbered: typeof _MdFormatListNumbered; +export var MdFormatPaint: typeof _MdFormatPaint; +export var MdFormatQuote: typeof _MdFormatQuote; +export var MdFormatShapes: typeof _MdFormatShapes; +export var MdFormatSize: typeof _MdFormatSize; +export var MdFormatStrikethrough: typeof _MdFormatStrikethrough; +export var MdFormatTextdirectionLToR: typeof _MdFormatTextdirectionLToR; +export var MdFormatTextdirectionRToL: typeof _MdFormatTextdirectionRToL; +export var MdFormatUnderlined: typeof _MdFormatUnderlined; +export var MdForum: typeof _MdForum; +export var MdForward10: typeof _MdForward10; +export var MdForward30: typeof _MdForward30; +export var MdForward5: typeof _MdForward5; +export var MdForward: typeof _MdForward; +export var MdFreeBreakfast: typeof _MdFreeBreakfast; +export var MdFullscreenExit: typeof _MdFullscreenExit; +export var MdFullscreen: typeof _MdFullscreen; +export var MdFunctions: typeof _MdFunctions; +export var MdGTranslate: typeof _MdGTranslate; +export var MdGamepad: typeof _MdGamepad; +export var MdGames: typeof _MdGames; +export var MdGavel: typeof _MdGavel; +export var MdGesture: typeof _MdGesture; +export var MdGetApp: typeof _MdGetApp; +export var MdGif: typeof _MdGif; +export var MdGoat: typeof _MdGoat; +export var MdGolfCourse: typeof _MdGolfCourse; +export var MdGpsFixed: typeof _MdGpsFixed; +export var MdGpsNotFixed: typeof _MdGpsNotFixed; +export var MdGpsOff: typeof _MdGpsOff; +export var MdGrade: typeof _MdGrade; +export var MdGradient: typeof _MdGradient; +export var MdGrain: typeof _MdGrain; +export var MdGraphicEq: typeof _MdGraphicEq; +export var MdGridOff: typeof _MdGridOff; +export var MdGridOn: typeof _MdGridOn; +export var MdGroupAdd: typeof _MdGroupAdd; +export var MdGroupWork: typeof _MdGroupWork; +export var MdGroup: typeof _MdGroup; +export var MdHd: typeof _MdHd; +export var MdHdrOff: typeof _MdHdrOff; +export var MdHdrOn: typeof _MdHdrOn; +export var MdHdrStrong: typeof _MdHdrStrong; +export var MdHdrWeak: typeof _MdHdrWeak; +export var MdHeadsetMic: typeof _MdHeadsetMic; +export var MdHeadset: typeof _MdHeadset; +export var MdHealing: typeof _MdHealing; +export var MdHearing: typeof _MdHearing; +export var MdHelpOutline: typeof _MdHelpOutline; +export var MdHelp: typeof _MdHelp; +export var MdHighQuality: typeof _MdHighQuality; +export var MdHighlightOff: typeof _MdHighlightOff; +export var MdHighlightRemove: typeof _MdHighlightRemove; +export var MdHighlight: typeof _MdHighlight; +export var MdHistory: typeof _MdHistory; +export var MdHome: typeof _MdHome; +export var MdHotTub: typeof _MdHotTub; +export var MdHotel: typeof _MdHotel; +export var MdHourglassEmpty: typeof _MdHourglassEmpty; +export var MdHourglassFull: typeof _MdHourglassFull; +export var MdHttp: typeof _MdHttp; +export var MdHttps: typeof _MdHttps; +export var MdImageAspectRatio: typeof _MdImageAspectRatio; +export var MdImage: typeof _MdImage; +export var MdImportContacts: typeof _MdImportContacts; +export var MdImportExport: typeof _MdImportExport; +export var MdImportantDevices: typeof _MdImportantDevices; +export var MdInbox: typeof _MdInbox; +export var MdIndeterminateCheckBox: typeof _MdIndeterminateCheckBox; +export var MdInfoOutline: typeof _MdInfoOutline; +export var MdInfo: typeof _MdInfo; +export var MdInput: typeof _MdInput; +export var MdInsertChart: typeof _MdInsertChart; +export var MdInsertComment: typeof _MdInsertComment; +export var MdInsertDriveFile: typeof _MdInsertDriveFile; +export var MdInsertEmoticon: typeof _MdInsertEmoticon; +export var MdInsertInvitation: typeof _MdInsertInvitation; +export var MdInsertLink: typeof _MdInsertLink; +export var MdInsertPhoto: typeof _MdInsertPhoto; +export var MdInvertColorsOff: typeof _MdInvertColorsOff; +export var MdInvertColorsOn: typeof _MdInvertColorsOn; +export var MdInvertColors: typeof _MdInvertColors; +export var MdIso: typeof _MdIso; +export var MdKeyboardArrowDown: typeof _MdKeyboardArrowDown; +export var MdKeyboardArrowLeft: typeof _MdKeyboardArrowLeft; +export var MdKeyboardArrowRight: typeof _MdKeyboardArrowRight; +export var MdKeyboardArrowUp: typeof _MdKeyboardArrowUp; +export var MdKeyboardBackspace: typeof _MdKeyboardBackspace; +export var MdKeyboardCapslock: typeof _MdKeyboardCapslock; +export var MdKeyboardControl: typeof _MdKeyboardControl; +export var MdKeyboardHide: typeof _MdKeyboardHide; +export var MdKeyboardReturn: typeof _MdKeyboardReturn; +export var MdKeyboardTab: typeof _MdKeyboardTab; +export var MdKeyboardVoice: typeof _MdKeyboardVoice; +export var MdKeyboard: typeof _MdKeyboard; +export var MdKitchen: typeof _MdKitchen; +export var MdLabelOutline: typeof _MdLabelOutline; +export var MdLabel: typeof _MdLabel; +export var MdLandscape: typeof _MdLandscape; +export var MdLanguage: typeof _MdLanguage; +export var MdLaptopChromebook: typeof _MdLaptopChromebook; +export var MdLaptopMac: typeof _MdLaptopMac; +export var MdLaptopWindows: typeof _MdLaptopWindows; +export var MdLaptop: typeof _MdLaptop; +export var MdLastPage: typeof _MdLastPage; +export var MdLaunch: typeof _MdLaunch; +export var MdLayersClear: typeof _MdLayersClear; +export var MdLayers: typeof _MdLayers; +export var MdLeakAdd: typeof _MdLeakAdd; +export var MdLeakRemove: typeof _MdLeakRemove; +export var MdLens: typeof _MdLens; +export var MdLibraryAdd: typeof _MdLibraryAdd; +export var MdLibraryBooks: typeof _MdLibraryBooks; +export var MdLibraryMusic: typeof _MdLibraryMusic; +export var MdLightbulbOutline: typeof _MdLightbulbOutline; +export var MdLineStyle: typeof _MdLineStyle; +export var MdLineWeight: typeof _MdLineWeight; +export var MdLinearScale: typeof _MdLinearScale; +export var MdLink: typeof _MdLink; +export var MdLinkedCamera: typeof _MdLinkedCamera; +export var MdList: typeof _MdList; +export var MdLiveHelp: typeof _MdLiveHelp; +export var MdLiveTv: typeof _MdLiveTv; +export var MdLocalAirport: typeof _MdLocalAirport; +export var MdLocalAtm: typeof _MdLocalAtm; +export var MdLocalAttraction: typeof _MdLocalAttraction; +export var MdLocalBar: typeof _MdLocalBar; +export var MdLocalCafe: typeof _MdLocalCafe; +export var MdLocalCarWash: typeof _MdLocalCarWash; +export var MdLocalConvenienceStore: typeof _MdLocalConvenienceStore; +export var MdLocalDrink: typeof _MdLocalDrink; +export var MdLocalFlorist: typeof _MdLocalFlorist; +export var MdLocalGasStation: typeof _MdLocalGasStation; +export var MdLocalGroceryStore: typeof _MdLocalGroceryStore; +export var MdLocalHospital: typeof _MdLocalHospital; +export var MdLocalHotel: typeof _MdLocalHotel; +export var MdLocalLaundryService: typeof _MdLocalLaundryService; +export var MdLocalLibrary: typeof _MdLocalLibrary; +export var MdLocalMall: typeof _MdLocalMall; +export var MdLocalMovies: typeof _MdLocalMovies; +export var MdLocalOffer: typeof _MdLocalOffer; +export var MdLocalParking: typeof _MdLocalParking; +export var MdLocalPharmacy: typeof _MdLocalPharmacy; +export var MdLocalPhone: typeof _MdLocalPhone; +export var MdLocalPizza: typeof _MdLocalPizza; +export var MdLocalPlay: typeof _MdLocalPlay; +export var MdLocalPostOffice: typeof _MdLocalPostOffice; +export var MdLocalPrintShop: typeof _MdLocalPrintShop; +export var MdLocalRestaurant: typeof _MdLocalRestaurant; +export var MdLocalSee: typeof _MdLocalSee; +export var MdLocalShipping: typeof _MdLocalShipping; +export var MdLocalTaxi: typeof _MdLocalTaxi; +export var MdLocationCity: typeof _MdLocationCity; +export var MdLocationDisabled: typeof _MdLocationDisabled; +export var MdLocationHistory: typeof _MdLocationHistory; +export var MdLocationOff: typeof _MdLocationOff; +export var MdLocationOn: typeof _MdLocationOn; +export var MdLocationSearching: typeof _MdLocationSearching; +export var MdLockOpen: typeof _MdLockOpen; +export var MdLockOutline: typeof _MdLockOutline; +export var MdLock: typeof _MdLock; +export var MdLooks3: typeof _MdLooks3; +export var MdLooks4: typeof _MdLooks4; +export var MdLooks5: typeof _MdLooks5; +export var MdLooks6: typeof _MdLooks6; +export var MdLooksOne: typeof _MdLooksOne; +export var MdLooksTwo: typeof _MdLooksTwo; +export var MdLooks: typeof _MdLooks; +export var MdLoop: typeof _MdLoop; +export var MdLoupe: typeof _MdLoupe; +export var MdLowPriority: typeof _MdLowPriority; +export var MdLoyalty: typeof _MdLoyalty; +export var MdMailOutline: typeof _MdMailOutline; +export var MdMail: typeof _MdMail; +export var MdMap: typeof _MdMap; +export var MdMarkunreadMailbox: typeof _MdMarkunreadMailbox; +export var MdMarkunread: typeof _MdMarkunread; +export var MdMemory: typeof _MdMemory; +export var MdMenu: typeof _MdMenu; +export var MdMergeType: typeof _MdMergeType; +export var MdMessage: typeof _MdMessage; +export var MdMicNone: typeof _MdMicNone; +export var MdMicOff: typeof _MdMicOff; +export var MdMic: typeof _MdMic; +export var MdMms: typeof _MdMms; +export var MdModeComment: typeof _MdModeComment; +export var MdModeEdit: typeof _MdModeEdit; +export var MdMonetizationOn: typeof _MdMonetizationOn; +export var MdMoneyOff: typeof _MdMoneyOff; +export var MdMonochromePhotos: typeof _MdMonochromePhotos; +export var MdMoodBad: typeof _MdMoodBad; +export var MdMood: typeof _MdMood; +export var MdMoreHoriz: typeof _MdMoreHoriz; +export var MdMoreVert: typeof _MdMoreVert; +export var MdMore: typeof _MdMore; +export var MdMotorcycle: typeof _MdMotorcycle; +export var MdMouse: typeof _MdMouse; +export var MdMoveToInbox: typeof _MdMoveToInbox; +export var MdMovieCreation: typeof _MdMovieCreation; +export var MdMovieFilter: typeof _MdMovieFilter; +export var MdMovie: typeof _MdMovie; +export var MdMultilineChart: typeof _MdMultilineChart; +export var MdMusicNote: typeof _MdMusicNote; +export var MdMusicVideo: typeof _MdMusicVideo; +export var MdMyLocation: typeof _MdMyLocation; +export var MdNaturePeople: typeof _MdNaturePeople; +export var MdNature: typeof _MdNature; +export var MdNavigateBefore: typeof _MdNavigateBefore; +export var MdNavigateNext: typeof _MdNavigateNext; +export var MdNavigation: typeof _MdNavigation; +export var MdNearMe: typeof _MdNearMe; +export var MdNetworkCell: typeof _MdNetworkCell; +export var MdNetworkCheck: typeof _MdNetworkCheck; +export var MdNetworkLocked: typeof _MdNetworkLocked; +export var MdNetworkWifi: typeof _MdNetworkWifi; +export var MdNewReleases: typeof _MdNewReleases; +export var MdNextWeek: typeof _MdNextWeek; +export var MdNfc: typeof _MdNfc; +export var MdNoEncryption: typeof _MdNoEncryption; +export var MdNoSim: typeof _MdNoSim; +export var MdNotInterested: typeof _MdNotInterested; +export var MdNoteAdd: typeof _MdNoteAdd; +export var MdNote: typeof _MdNote; +export var MdNotificationsActive: typeof _MdNotificationsActive; +export var MdNotificationsNone: typeof _MdNotificationsNone; +export var MdNotificationsOff: typeof _MdNotificationsOff; +export var MdNotificationsPaused: typeof _MdNotificationsPaused; +export var MdNotifications: typeof _MdNotifications; +export var MdNowWallpaper: typeof _MdNowWallpaper; +export var MdNowWidgets: typeof _MdNowWidgets; +export var MdOfflinePin: typeof _MdOfflinePin; +export var MdOndemandVideo: typeof _MdOndemandVideo; +export var MdOpacity: typeof _MdOpacity; +export var MdOpenInBrowser: typeof _MdOpenInBrowser; +export var MdOpenInNew: typeof _MdOpenInNew; +export var MdOpenWith: typeof _MdOpenWith; +export var MdPages: typeof _MdPages; +export var MdPageview: typeof _MdPageview; +export var MdPalette: typeof _MdPalette; +export var MdPanTool: typeof _MdPanTool; +export var MdPanoramaFishEye: typeof _MdPanoramaFishEye; +export var MdPanoramaHorizontal: typeof _MdPanoramaHorizontal; +export var MdPanoramaVertical: typeof _MdPanoramaVertical; +export var MdPanoramaWideAngle: typeof _MdPanoramaWideAngle; +export var MdPanorama: typeof _MdPanorama; +export var MdPartyMode: typeof _MdPartyMode; +export var MdPauseCircleFilled: typeof _MdPauseCircleFilled; +export var MdPauseCircleOutline: typeof _MdPauseCircleOutline; +export var MdPause: typeof _MdPause; +export var MdPayment: typeof _MdPayment; +export var MdPeopleOutline: typeof _MdPeopleOutline; +export var MdPeople: typeof _MdPeople; +export var MdPermCameraMic: typeof _MdPermCameraMic; +export var MdPermContactCalendar: typeof _MdPermContactCalendar; +export var MdPermDataSetting: typeof _MdPermDataSetting; +export var MdPermDeviceInformation: typeof _MdPermDeviceInformation; +export var MdPermIdentity: typeof _MdPermIdentity; +export var MdPermMedia: typeof _MdPermMedia; +export var MdPermPhoneMsg: typeof _MdPermPhoneMsg; +export var MdPermScanWifi: typeof _MdPermScanWifi; +export var MdPersonAdd: typeof _MdPersonAdd; +export var MdPersonOutline: typeof _MdPersonOutline; +export var MdPersonPinCircle: typeof _MdPersonPinCircle; +export var MdPersonPin: typeof _MdPersonPin; +export var MdPerson: typeof _MdPerson; +export var MdPersonalVideo: typeof _MdPersonalVideo; +export var MdPets: typeof _MdPets; +export var MdPhoneAndroid: typeof _MdPhoneAndroid; +export var MdPhoneBluetoothSpeaker: typeof _MdPhoneBluetoothSpeaker; +export var MdPhoneForwarded: typeof _MdPhoneForwarded; +export var MdPhoneInTalk: typeof _MdPhoneInTalk; +export var MdPhoneIphone: typeof _MdPhoneIphone; +export var MdPhoneLocked: typeof _MdPhoneLocked; +export var MdPhoneMissed: typeof _MdPhoneMissed; +export var MdPhonePaused: typeof _MdPhonePaused; +export var MdPhone: typeof _MdPhone; +export var MdPhonelinkErase: typeof _MdPhonelinkErase; +export var MdPhonelinkLock: typeof _MdPhonelinkLock; +export var MdPhonelinkOff: typeof _MdPhonelinkOff; +export var MdPhonelinkRing: typeof _MdPhonelinkRing; +export var MdPhonelinkSetup: typeof _MdPhonelinkSetup; +export var MdPhonelink: typeof _MdPhonelink; +export var MdPhotoAlbum: typeof _MdPhotoAlbum; +export var MdPhotoCamera: typeof _MdPhotoCamera; +export var MdPhotoFilter: typeof _MdPhotoFilter; +export var MdPhotoLibrary: typeof _MdPhotoLibrary; +export var MdPhotoSizeSelectActual: typeof _MdPhotoSizeSelectActual; +export var MdPhotoSizeSelectLarge: typeof _MdPhotoSizeSelectLarge; +export var MdPhotoSizeSelectSmall: typeof _MdPhotoSizeSelectSmall; +export var MdPhoto: typeof _MdPhoto; +export var MdPictureAsPdf: typeof _MdPictureAsPdf; +export var MdPictureInPictureAlt: typeof _MdPictureInPictureAlt; +export var MdPictureInPicture: typeof _MdPictureInPicture; +export var MdPieChartOutlined: typeof _MdPieChartOutlined; +export var MdPieChart: typeof _MdPieChart; +export var MdPinDrop: typeof _MdPinDrop; +export var MdPlace: typeof _MdPlace; +export var MdPlayArrow: typeof _MdPlayArrow; +export var MdPlayCircleFilled: typeof _MdPlayCircleFilled; +export var MdPlayCircleOutline: typeof _MdPlayCircleOutline; +export var MdPlayForWork: typeof _MdPlayForWork; +export var MdPlaylistAddCheck: typeof _MdPlaylistAddCheck; +export var MdPlaylistAdd: typeof _MdPlaylistAdd; +export var MdPlaylistPlay: typeof _MdPlaylistPlay; +export var MdPlusOne: typeof _MdPlusOne; +export var MdPoll: typeof _MdPoll; +export var MdPolymer: typeof _MdPolymer; +export var MdPool: typeof _MdPool; +export var MdPortableWifiOff: typeof _MdPortableWifiOff; +export var MdPortrait: typeof _MdPortrait; +export var MdPowerInput: typeof _MdPowerInput; +export var MdPowerSettingsNew: typeof _MdPowerSettingsNew; +export var MdPower: typeof _MdPower; +export var MdPregnantWoman: typeof _MdPregnantWoman; +export var MdPresentToAll: typeof _MdPresentToAll; +export var MdPrint: typeof _MdPrint; +export var MdPriorityHigh: typeof _MdPriorityHigh; +export var MdPublic: typeof _MdPublic; +export var MdPublish: typeof _MdPublish; +export var MdQueryBuilder: typeof _MdQueryBuilder; +export var MdQuestionAnswer: typeof _MdQuestionAnswer; +export var MdQueueMusic: typeof _MdQueueMusic; +export var MdQueuePlayNext: typeof _MdQueuePlayNext; +export var MdQueue: typeof _MdQueue; +export var MdRadioButtonChecked: typeof _MdRadioButtonChecked; +export var MdRadioButtonUnchecked: typeof _MdRadioButtonUnchecked; +export var MdRadio: typeof _MdRadio; +export var MdRateReview: typeof _MdRateReview; +export var MdReceipt: typeof _MdReceipt; +export var MdRecentActors: typeof _MdRecentActors; +export var MdRecordVoiceOver: typeof _MdRecordVoiceOver; +export var MdRedeem: typeof _MdRedeem; +export var MdRedo: typeof _MdRedo; +export var MdRefresh: typeof _MdRefresh; +export var MdRemoveCircleOutline: typeof _MdRemoveCircleOutline; +export var MdRemoveCircle: typeof _MdRemoveCircle; +export var MdRemoveFromQueue: typeof _MdRemoveFromQueue; +export var MdRemoveRedEye: typeof _MdRemoveRedEye; +export var MdRemoveShoppingCart: typeof _MdRemoveShoppingCart; +export var MdRemove: typeof _MdRemove; +export var MdReorder: typeof _MdReorder; +export var MdRepeatOne: typeof _MdRepeatOne; +export var MdRepeat: typeof _MdRepeat; +export var MdReplay10: typeof _MdReplay10; +export var MdReplay30: typeof _MdReplay30; +export var MdReplay5: typeof _MdReplay5; +export var MdReplay: typeof _MdReplay; +export var MdReplyAll: typeof _MdReplyAll; +export var MdReply: typeof _MdReply; +export var MdReportProblem: typeof _MdReportProblem; +export var MdReport: typeof _MdReport; +export var MdRestaurantMenu: typeof _MdRestaurantMenu; +export var MdRestaurant: typeof _MdRestaurant; +export var MdRestorePage: typeof _MdRestorePage; +export var MdRestore: typeof _MdRestore; +export var MdRingVolume: typeof _MdRingVolume; +export var MdRoomService: typeof _MdRoomService; +export var MdRoom: typeof _MdRoom; +export var MdRotate90DegreesCcw: typeof _MdRotate90DegreesCcw; +export var MdRotateLeft: typeof _MdRotateLeft; +export var MdRotateRight: typeof _MdRotateRight; +export var MdRoundedCorner: typeof _MdRoundedCorner; +export var MdRouter: typeof _MdRouter; +export var MdRowing: typeof _MdRowing; +export var MdRssFeed: typeof _MdRssFeed; +export var MdRvHookup: typeof _MdRvHookup; +export var MdSatellite: typeof _MdSatellite; +export var MdSave: typeof _MdSave; +export var MdScanner: typeof _MdScanner; +export var MdSchedule: typeof _MdSchedule; +export var MdSchool: typeof _MdSchool; +export var MdScreenLockLandscape: typeof _MdScreenLockLandscape; +export var MdScreenLockPortrait: typeof _MdScreenLockPortrait; +export var MdScreenLockRotation: typeof _MdScreenLockRotation; +export var MdScreenRotation: typeof _MdScreenRotation; +export var MdScreenShare: typeof _MdScreenShare; +export var MdSdCard: typeof _MdSdCard; +export var MdSdStorage: typeof _MdSdStorage; +export var MdSearch: typeof _MdSearch; +export var MdSecurity: typeof _MdSecurity; +export var MdSelectAll: typeof _MdSelectAll; +export var MdSend: typeof _MdSend; +export var MdSentimentDissatisfied: typeof _MdSentimentDissatisfied; +export var MdSentimentNeutral: typeof _MdSentimentNeutral; +export var MdSentimentSatisfied: typeof _MdSentimentSatisfied; +export var MdSentimentVeryDissatisfied: typeof _MdSentimentVeryDissatisfied; +export var MdSentimentVerySatisfied: typeof _MdSentimentVerySatisfied; +export var MdSettingsApplications: typeof _MdSettingsApplications; +export var MdSettingsBackupRestore: typeof _MdSettingsBackupRestore; +export var MdSettingsBluetooth: typeof _MdSettingsBluetooth; +export var MdSettingsBrightness: typeof _MdSettingsBrightness; +export var MdSettingsCell: typeof _MdSettingsCell; +export var MdSettingsEthernet: typeof _MdSettingsEthernet; +export var MdSettingsInputAntenna: typeof _MdSettingsInputAntenna; +export var MdSettingsInputComponent: typeof _MdSettingsInputComponent; +export var MdSettingsInputComposite: typeof _MdSettingsInputComposite; +export var MdSettingsInputHdmi: typeof _MdSettingsInputHdmi; +export var MdSettingsInputSvideo: typeof _MdSettingsInputSvideo; +export var MdSettingsOverscan: typeof _MdSettingsOverscan; +export var MdSettingsPhone: typeof _MdSettingsPhone; +export var MdSettingsPower: typeof _MdSettingsPower; +export var MdSettingsRemote: typeof _MdSettingsRemote; +export var MdSettingsSystemDaydream: typeof _MdSettingsSystemDaydream; +export var MdSettingsVoice: typeof _MdSettingsVoice; +export var MdSettings: typeof _MdSettings; +export var MdShare: typeof _MdShare; +export var MdShopTwo: typeof _MdShopTwo; +export var MdShop: typeof _MdShop; +export var MdShoppingBasket: typeof _MdShoppingBasket; +export var MdShoppingCart: typeof _MdShoppingCart; +export var MdShortText: typeof _MdShortText; +export var MdShowChart: typeof _MdShowChart; +export var MdShuffle: typeof _MdShuffle; +export var MdSignalCellular4Bar: typeof _MdSignalCellular4Bar; +export var MdSignalCellularConnectedNoInternet4Bar: typeof _MdSignalCellularConnectedNoInternet4Bar; +export var MdSignalCellularNoSim: typeof _MdSignalCellularNoSim; +export var MdSignalCellularNull: typeof _MdSignalCellularNull; +export var MdSignalCellularOff: typeof _MdSignalCellularOff; +export var MdSignalWifi4BarLock: typeof _MdSignalWifi4BarLock; +export var MdSignalWifi4Bar: typeof _MdSignalWifi4Bar; +export var MdSignalWifiOff: typeof _MdSignalWifiOff; +export var MdSimCardAlert: typeof _MdSimCardAlert; +export var MdSimCard: typeof _MdSimCard; +export var MdSkipNext: typeof _MdSkipNext; +export var MdSkipPrevious: typeof _MdSkipPrevious; +export var MdSlideshow: typeof _MdSlideshow; +export var MdSlowMotionVideo: typeof _MdSlowMotionVideo; +export var MdSmartphone: typeof _MdSmartphone; +export var MdSmokeFree: typeof _MdSmokeFree; +export var MdSmokingRooms: typeof _MdSmokingRooms; +export var MdSmsFailed: typeof _MdSmsFailed; +export var MdSms: typeof _MdSms; +export var MdSnooze: typeof _MdSnooze; +export var MdSortByAlpha: typeof _MdSortByAlpha; +export var MdSort: typeof _MdSort; +export var MdSpa: typeof _MdSpa; +export var MdSpaceBar: typeof _MdSpaceBar; +export var MdSpeakerGroup: typeof _MdSpeakerGroup; +export var MdSpeakerNotesOff: typeof _MdSpeakerNotesOff; +export var MdSpeakerNotes: typeof _MdSpeakerNotes; +export var MdSpeakerPhone: typeof _MdSpeakerPhone; +export var MdSpeaker: typeof _MdSpeaker; +export var MdSpellcheck: typeof _MdSpellcheck; +export var MdStarBorder: typeof _MdStarBorder; +export var MdStarHalf: typeof _MdStarHalf; +export var MdStarOutline: typeof _MdStarOutline; +export var MdStar: typeof _MdStar; +export var MdStars: typeof _MdStars; +export var MdStayCurrentLandscape: typeof _MdStayCurrentLandscape; +export var MdStayCurrentPortrait: typeof _MdStayCurrentPortrait; +export var MdStayPrimaryLandscape: typeof _MdStayPrimaryLandscape; +export var MdStayPrimaryPortrait: typeof _MdStayPrimaryPortrait; +export var MdStopScreenShare: typeof _MdStopScreenShare; +export var MdStop: typeof _MdStop; +export var MdStorage: typeof _MdStorage; +export var MdStoreMallDirectory: typeof _MdStoreMallDirectory; +export var MdStore: typeof _MdStore; +export var MdStraighten: typeof _MdStraighten; +export var MdStreetview: typeof _MdStreetview; +export var MdStrikethroughS: typeof _MdStrikethroughS; +export var MdStyle: typeof _MdStyle; +export var MdSubdirectoryArrowLeft: typeof _MdSubdirectoryArrowLeft; +export var MdSubdirectoryArrowRight: typeof _MdSubdirectoryArrowRight; +export var MdSubject: typeof _MdSubject; +export var MdSubscriptions: typeof _MdSubscriptions; +export var MdSubtitles: typeof _MdSubtitles; +export var MdSubway: typeof _MdSubway; +export var MdSupervisorAccount: typeof _MdSupervisorAccount; +export var MdSurroundSound: typeof _MdSurroundSound; +export var MdSwapCalls: typeof _MdSwapCalls; +export var MdSwapHoriz: typeof _MdSwapHoriz; +export var MdSwapVert: typeof _MdSwapVert; +export var MdSwapVerticalCircle: typeof _MdSwapVerticalCircle; +export var MdSwitchCamera: typeof _MdSwitchCamera; +export var MdSwitchVideo: typeof _MdSwitchVideo; +export var MdSyncDisabled: typeof _MdSyncDisabled; +export var MdSyncProblem: typeof _MdSyncProblem; +export var MdSync: typeof _MdSync; +export var MdSystemUpdateAlt: typeof _MdSystemUpdateAlt; +export var MdSystemUpdate: typeof _MdSystemUpdate; +export var MdTabUnselected: typeof _MdTabUnselected; +export var MdTab: typeof _MdTab; +export var MdTabletAndroid: typeof _MdTabletAndroid; +export var MdTabletMac: typeof _MdTabletMac; +export var MdTablet: typeof _MdTablet; +export var MdTagFaces: typeof _MdTagFaces; +export var MdTapAndPlay: typeof _MdTapAndPlay; +export var MdTerrain: typeof _MdTerrain; +export var MdTextFields: typeof _MdTextFields; +export var MdTextFormat: typeof _MdTextFormat; +export var MdTextsms: typeof _MdTextsms; +export var MdTexture: typeof _MdTexture; +export var MdTheaters: typeof _MdTheaters; +export var MdThumbDown: typeof _MdThumbDown; +export var MdThumbUp: typeof _MdThumbUp; +export var MdThumbsUpDown: typeof _MdThumbsUpDown; +export var MdTimeToLeave: typeof _MdTimeToLeave; +export var MdTimelapse: typeof _MdTimelapse; +export var MdTimeline: typeof _MdTimeline; +export var MdTimer10: typeof _MdTimer10; +export var MdTimer3: typeof _MdTimer3; +export var MdTimerOff: typeof _MdTimerOff; +export var MdTimer: typeof _MdTimer; +export var MdTitle: typeof _MdTitle; +export var MdToc: typeof _MdToc; +export var MdToday: typeof _MdToday; +export var MdToll: typeof _MdToll; +export var MdTonality: typeof _MdTonality; +export var MdTouchApp: typeof _MdTouchApp; +export var MdToys: typeof _MdToys; +export var MdTrackChanges: typeof _MdTrackChanges; +export var MdTraffic: typeof _MdTraffic; +export var MdTrain: typeof _MdTrain; +export var MdTram: typeof _MdTram; +export var MdTransferWithinAStation: typeof _MdTransferWithinAStation; +export var MdTransform: typeof _MdTransform; +export var MdTranslate: typeof _MdTranslate; +export var MdTrendingDown: typeof _MdTrendingDown; +export var MdTrendingFlat: typeof _MdTrendingFlat; +export var MdTrendingNeutral: typeof _MdTrendingNeutral; +export var MdTrendingUp: typeof _MdTrendingUp; +export var MdTune: typeof _MdTune; +export var MdTurnedInNot: typeof _MdTurnedInNot; +export var MdTurnedIn: typeof _MdTurnedIn; +export var MdTv: typeof _MdTv; +export var MdUnarchive: typeof _MdUnarchive; +export var MdUndo: typeof _MdUndo; +export var MdUnfoldLess: typeof _MdUnfoldLess; +export var MdUnfoldMore: typeof _MdUnfoldMore; +export var MdUpdate: typeof _MdUpdate; +export var MdUsb: typeof _MdUsb; +export var MdVerifiedUser: typeof _MdVerifiedUser; +export var MdVerticalAlignBottom: typeof _MdVerticalAlignBottom; +export var MdVerticalAlignCenter: typeof _MdVerticalAlignCenter; +export var MdVerticalAlignTop: typeof _MdVerticalAlignTop; +export var MdVibration: typeof _MdVibration; +export var MdVideoCall: typeof _MdVideoCall; +export var MdVideoCollection: typeof _MdVideoCollection; +export var MdVideoLabel: typeof _MdVideoLabel; +export var MdVideoLibrary: typeof _MdVideoLibrary; +export var MdVideocamOff: typeof _MdVideocamOff; +export var MdVideocam: typeof _MdVideocam; +export var MdVideogameAsset: typeof _MdVideogameAsset; +export var MdViewAgenda: typeof _MdViewAgenda; +export var MdViewArray: typeof _MdViewArray; +export var MdViewCarousel: typeof _MdViewCarousel; +export var MdViewColumn: typeof _MdViewColumn; +export var MdViewComfortable: typeof _MdViewComfortable; +export var MdViewComfy: typeof _MdViewComfy; +export var MdViewCompact: typeof _MdViewCompact; +export var MdViewDay: typeof _MdViewDay; +export var MdViewHeadline: typeof _MdViewHeadline; +export var MdViewList: typeof _MdViewList; +export var MdViewModule: typeof _MdViewModule; +export var MdViewQuilt: typeof _MdViewQuilt; +export var MdViewStream: typeof _MdViewStream; +export var MdViewWeek: typeof _MdViewWeek; +export var MdVignette: typeof _MdVignette; +export var MdVisibilityOff: typeof _MdVisibilityOff; +export var MdVisibility: typeof _MdVisibility; +export var MdVoiceChat: typeof _MdVoiceChat; +export var MdVoicemail: typeof _MdVoicemail; +export var MdVolumeDown: typeof _MdVolumeDown; +export var MdVolumeMute: typeof _MdVolumeMute; +export var MdVolumeOff: typeof _MdVolumeOff; +export var MdVolumeUp: typeof _MdVolumeUp; +export var MdVpnKey: typeof _MdVpnKey; +export var MdVpnLock: typeof _MdVpnLock; +export var MdWallpaper: typeof _MdWallpaper; +export var MdWarning: typeof _MdWarning; +export var MdWatchLater: typeof _MdWatchLater; +export var MdWatch: typeof _MdWatch; +export var MdWbAuto: typeof _MdWbAuto; +export var MdWbCloudy: typeof _MdWbCloudy; +export var MdWbIncandescent: typeof _MdWbIncandescent; +export var MdWbIridescent: typeof _MdWbIridescent; +export var MdWbSunny: typeof _MdWbSunny; +export var MdWc: typeof _MdWc; +export var MdWebAsset: typeof _MdWebAsset; +export var MdWeb: typeof _MdWeb; +export var MdWeekend: typeof _MdWeekend; +export var MdWhatshot: typeof _MdWhatshot; +export var MdWidgets: typeof _MdWidgets; +export var MdWifiLock: typeof _MdWifiLock; +export var MdWifiTethering: typeof _MdWifiTethering; +export var MdWifi: typeof _MdWifi; +export var MdWork: typeof _MdWork; +export var MdWrapText: typeof _MdWrapText; +export var MdYoutubeSearchedFor: typeof _MdYoutubeSearchedFor; +export var MdZoomIn: typeof _MdZoomIn; +export var MdZoomOutMap: typeof _MdZoomOutMap; +export var MdZoomOut: typeof _MdZoomOut; \ No newline at end of file diff --git a/react-icons/md/info-outline.d.ts b/react-icons/md/info-outline.d.ts new file mode 100644 index 0000000000..dee4beba46 --- /dev/null +++ b/react-icons/md/info-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInfoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/info.d.ts b/react-icons/md/info.d.ts new file mode 100644 index 0000000000..58cb8f3237 --- /dev/null +++ b/react-icons/md/info.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/input.d.ts b/react-icons/md/input.d.ts new file mode 100644 index 0000000000..9b30b09918 --- /dev/null +++ b/react-icons/md/input.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInput extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-chart.d.ts b/react-icons/md/insert-chart.d.ts new file mode 100644 index 0000000000..a16566bed0 --- /dev/null +++ b/react-icons/md/insert-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-comment.d.ts b/react-icons/md/insert-comment.d.ts new file mode 100644 index 0000000000..0eb6d9e51f --- /dev/null +++ b/react-icons/md/insert-comment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-drive-file.d.ts b/react-icons/md/insert-drive-file.d.ts new file mode 100644 index 0000000000..82de961c88 --- /dev/null +++ b/react-icons/md/insert-drive-file.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertDriveFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-emoticon.d.ts b/react-icons/md/insert-emoticon.d.ts new file mode 100644 index 0000000000..debf0675c7 --- /dev/null +++ b/react-icons/md/insert-emoticon.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertEmoticon extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-invitation.d.ts b/react-icons/md/insert-invitation.d.ts new file mode 100644 index 0000000000..6d09b27375 --- /dev/null +++ b/react-icons/md/insert-invitation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertInvitation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-link.d.ts b/react-icons/md/insert-link.d.ts new file mode 100644 index 0000000000..4b1ef544d6 --- /dev/null +++ b/react-icons/md/insert-link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-photo.d.ts b/react-icons/md/insert-photo.d.ts new file mode 100644 index 0000000000..30ea00ec86 --- /dev/null +++ b/react-icons/md/insert-photo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInsertPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors-off.d.ts b/react-icons/md/invert-colors-off.d.ts new file mode 100644 index 0000000000..cebe2f3ad4 --- /dev/null +++ b/react-icons/md/invert-colors-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInvertColorsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors-on.d.ts b/react-icons/md/invert-colors-on.d.ts new file mode 100644 index 0000000000..ea144963fa --- /dev/null +++ b/react-icons/md/invert-colors-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInvertColorsOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors.d.ts b/react-icons/md/invert-colors.d.ts new file mode 100644 index 0000000000..dbd356fef8 --- /dev/null +++ b/react-icons/md/invert-colors.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdInvertColors extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/iso.d.ts b/react-icons/md/iso.d.ts new file mode 100644 index 0000000000..a868ebbce4 --- /dev/null +++ b/react-icons/md/iso.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdIso extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-down.d.ts b/react-icons/md/keyboard-arrow-down.d.ts new file mode 100644 index 0000000000..afa2b6951c --- /dev/null +++ b/react-icons/md/keyboard-arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-left.d.ts b/react-icons/md/keyboard-arrow-left.d.ts new file mode 100644 index 0000000000..bd1404bcf9 --- /dev/null +++ b/react-icons/md/keyboard-arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-right.d.ts b/react-icons/md/keyboard-arrow-right.d.ts new file mode 100644 index 0000000000..3a86f545c3 --- /dev/null +++ b/react-icons/md/keyboard-arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-up.d.ts b/react-icons/md/keyboard-arrow-up.d.ts new file mode 100644 index 0000000000..643e41db3a --- /dev/null +++ b/react-icons/md/keyboard-arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-backspace.d.ts b/react-icons/md/keyboard-backspace.d.ts new file mode 100644 index 0000000000..5658eb6817 --- /dev/null +++ b/react-icons/md/keyboard-backspace.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-capslock.d.ts b/react-icons/md/keyboard-capslock.d.ts new file mode 100644 index 0000000000..866efc04e4 --- /dev/null +++ b/react-icons/md/keyboard-capslock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardCapslock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-control.d.ts b/react-icons/md/keyboard-control.d.ts new file mode 100644 index 0000000000..4ff5bef372 --- /dev/null +++ b/react-icons/md/keyboard-control.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardControl extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-hide.d.ts b/react-icons/md/keyboard-hide.d.ts new file mode 100644 index 0000000000..436dafae71 --- /dev/null +++ b/react-icons/md/keyboard-hide.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardHide extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-return.d.ts b/react-icons/md/keyboard-return.d.ts new file mode 100644 index 0000000000..cf88f85ad8 --- /dev/null +++ b/react-icons/md/keyboard-return.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardReturn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-tab.d.ts b/react-icons/md/keyboard-tab.d.ts new file mode 100644 index 0000000000..846fd7229c --- /dev/null +++ b/react-icons/md/keyboard-tab.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardTab extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-voice.d.ts b/react-icons/md/keyboard-voice.d.ts new file mode 100644 index 0000000000..5a7783fd19 --- /dev/null +++ b/react-icons/md/keyboard-voice.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboardVoice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard.d.ts b/react-icons/md/keyboard.d.ts new file mode 100644 index 0000000000..9a35216205 --- /dev/null +++ b/react-icons/md/keyboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/kitchen.d.ts b/react-icons/md/kitchen.d.ts new file mode 100644 index 0000000000..445124bd91 --- /dev/null +++ b/react-icons/md/kitchen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdKitchen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/label-outline.d.ts b/react-icons/md/label-outline.d.ts new file mode 100644 index 0000000000..d985face81 --- /dev/null +++ b/react-icons/md/label-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLabelOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/label.d.ts b/react-icons/md/label.d.ts new file mode 100644 index 0000000000..9c5d5b0a6d --- /dev/null +++ b/react-icons/md/label.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLabel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/landscape.d.ts b/react-icons/md/landscape.d.ts new file mode 100644 index 0000000000..699775a8d5 --- /dev/null +++ b/react-icons/md/landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/language.d.ts b/react-icons/md/language.d.ts new file mode 100644 index 0000000000..3791435e37 --- /dev/null +++ b/react-icons/md/language.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-chromebook.d.ts b/react-icons/md/laptop-chromebook.d.ts new file mode 100644 index 0000000000..f37baf9c01 --- /dev/null +++ b/react-icons/md/laptop-chromebook.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLaptopChromebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-mac.d.ts b/react-icons/md/laptop-mac.d.ts new file mode 100644 index 0000000000..170c06c15f --- /dev/null +++ b/react-icons/md/laptop-mac.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLaptopMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-windows.d.ts b/react-icons/md/laptop-windows.d.ts new file mode 100644 index 0000000000..5e83e89da8 --- /dev/null +++ b/react-icons/md/laptop-windows.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLaptopWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop.d.ts b/react-icons/md/laptop.d.ts new file mode 100644 index 0000000000..0ac9d8e0e4 --- /dev/null +++ b/react-icons/md/laptop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/last-page.d.ts b/react-icons/md/last-page.d.ts new file mode 100644 index 0000000000..00df0ca446 --- /dev/null +++ b/react-icons/md/last-page.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLastPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/launch.d.ts b/react-icons/md/launch.d.ts new file mode 100644 index 0000000000..572a0ad40e --- /dev/null +++ b/react-icons/md/launch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLaunch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/layers-clear.d.ts b/react-icons/md/layers-clear.d.ts new file mode 100644 index 0000000000..15c50ac304 --- /dev/null +++ b/react-icons/md/layers-clear.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLayersClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/layers.d.ts b/react-icons/md/layers.d.ts new file mode 100644 index 0000000000..1473386bfe --- /dev/null +++ b/react-icons/md/layers.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLayers extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/leak-add.d.ts b/react-icons/md/leak-add.d.ts new file mode 100644 index 0000000000..c90f4b3871 --- /dev/null +++ b/react-icons/md/leak-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLeakAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/leak-remove.d.ts b/react-icons/md/leak-remove.d.ts new file mode 100644 index 0000000000..1fc3eb2872 --- /dev/null +++ b/react-icons/md/leak-remove.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLeakRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lens.d.ts b/react-icons/md/lens.d.ts new file mode 100644 index 0000000000..03d9294ee5 --- /dev/null +++ b/react-icons/md/lens.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLens extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-add.d.ts b/react-icons/md/library-add.d.ts new file mode 100644 index 0000000000..4d360359dc --- /dev/null +++ b/react-icons/md/library-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLibraryAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-books.d.ts b/react-icons/md/library-books.d.ts new file mode 100644 index 0000000000..b0a62aae74 --- /dev/null +++ b/react-icons/md/library-books.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLibraryBooks extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-music.d.ts b/react-icons/md/library-music.d.ts new file mode 100644 index 0000000000..3ae263eea3 --- /dev/null +++ b/react-icons/md/library-music.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLibraryMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lightbulb-outline.d.ts b/react-icons/md/lightbulb-outline.d.ts new file mode 100644 index 0000000000..7a80cb4279 --- /dev/null +++ b/react-icons/md/lightbulb-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLightbulbOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/line-style.d.ts b/react-icons/md/line-style.d.ts new file mode 100644 index 0000000000..74b8e27b2d --- /dev/null +++ b/react-icons/md/line-style.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLineStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/line-weight.d.ts b/react-icons/md/line-weight.d.ts new file mode 100644 index 0000000000..5f027d1687 --- /dev/null +++ b/react-icons/md/line-weight.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLineWeight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/linear-scale.d.ts b/react-icons/md/linear-scale.d.ts new file mode 100644 index 0000000000..7ddf675ded --- /dev/null +++ b/react-icons/md/linear-scale.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLinearScale extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/link.d.ts b/react-icons/md/link.d.ts new file mode 100644 index 0000000000..7989011bea --- /dev/null +++ b/react-icons/md/link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/linked-camera.d.ts b/react-icons/md/linked-camera.d.ts new file mode 100644 index 0000000000..3f2becec47 --- /dev/null +++ b/react-icons/md/linked-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLinkedCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/list.d.ts b/react-icons/md/list.d.ts new file mode 100644 index 0000000000..5fe07ae66f --- /dev/null +++ b/react-icons/md/list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/live-help.d.ts b/react-icons/md/live-help.d.ts new file mode 100644 index 0000000000..fc611fbc21 --- /dev/null +++ b/react-icons/md/live-help.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLiveHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/live-tv.d.ts b/react-icons/md/live-tv.d.ts new file mode 100644 index 0000000000..b156f8a70c --- /dev/null +++ b/react-icons/md/live-tv.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLiveTv extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-airport.d.ts b/react-icons/md/local-airport.d.ts new file mode 100644 index 0000000000..2b48a8df98 --- /dev/null +++ b/react-icons/md/local-airport.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalAirport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-atm.d.ts b/react-icons/md/local-atm.d.ts new file mode 100644 index 0000000000..80e163811e --- /dev/null +++ b/react-icons/md/local-atm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalAtm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-attraction.d.ts b/react-icons/md/local-attraction.d.ts new file mode 100644 index 0000000000..847373d030 --- /dev/null +++ b/react-icons/md/local-attraction.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalAttraction extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-bar.d.ts b/react-icons/md/local-bar.d.ts new file mode 100644 index 0000000000..6d21516f07 --- /dev/null +++ b/react-icons/md/local-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-cafe.d.ts b/react-icons/md/local-cafe.d.ts new file mode 100644 index 0000000000..2ddb173dcc --- /dev/null +++ b/react-icons/md/local-cafe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalCafe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-car-wash.d.ts b/react-icons/md/local-car-wash.d.ts new file mode 100644 index 0000000000..30f32efcc0 --- /dev/null +++ b/react-icons/md/local-car-wash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalCarWash extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-convenience-store.d.ts b/react-icons/md/local-convenience-store.d.ts new file mode 100644 index 0000000000..5f3122dc72 --- /dev/null +++ b/react-icons/md/local-convenience-store.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalConvenienceStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-drink.d.ts b/react-icons/md/local-drink.d.ts new file mode 100644 index 0000000000..c655f3fa10 --- /dev/null +++ b/react-icons/md/local-drink.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalDrink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-florist.d.ts b/react-icons/md/local-florist.d.ts new file mode 100644 index 0000000000..8ad0700269 --- /dev/null +++ b/react-icons/md/local-florist.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalFlorist extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-gas-station.d.ts b/react-icons/md/local-gas-station.d.ts new file mode 100644 index 0000000000..9f8e0f51ee --- /dev/null +++ b/react-icons/md/local-gas-station.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalGasStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-grocery-store.d.ts b/react-icons/md/local-grocery-store.d.ts new file mode 100644 index 0000000000..a266baf995 --- /dev/null +++ b/react-icons/md/local-grocery-store.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalGroceryStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-hospital.d.ts b/react-icons/md/local-hospital.d.ts new file mode 100644 index 0000000000..0b516c956d --- /dev/null +++ b/react-icons/md/local-hospital.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalHospital extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-hotel.d.ts b/react-icons/md/local-hotel.d.ts new file mode 100644 index 0000000000..d2e8ba4326 --- /dev/null +++ b/react-icons/md/local-hotel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalHotel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-laundry-service.d.ts b/react-icons/md/local-laundry-service.d.ts new file mode 100644 index 0000000000..69dc1d91fa --- /dev/null +++ b/react-icons/md/local-laundry-service.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalLaundryService extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-library.d.ts b/react-icons/md/local-library.d.ts new file mode 100644 index 0000000000..8323474502 --- /dev/null +++ b/react-icons/md/local-library.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-mall.d.ts b/react-icons/md/local-mall.d.ts new file mode 100644 index 0000000000..ff498e258c --- /dev/null +++ b/react-icons/md/local-mall.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalMall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-movies.d.ts b/react-icons/md/local-movies.d.ts new file mode 100644 index 0000000000..fdea5b8143 --- /dev/null +++ b/react-icons/md/local-movies.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalMovies extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-offer.d.ts b/react-icons/md/local-offer.d.ts new file mode 100644 index 0000000000..d24f367bf4 --- /dev/null +++ b/react-icons/md/local-offer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalOffer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-parking.d.ts b/react-icons/md/local-parking.d.ts new file mode 100644 index 0000000000..db29d102c5 --- /dev/null +++ b/react-icons/md/local-parking.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalParking extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-pharmacy.d.ts b/react-icons/md/local-pharmacy.d.ts new file mode 100644 index 0000000000..6d0b8cd48c --- /dev/null +++ b/react-icons/md/local-pharmacy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPharmacy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-phone.d.ts b/react-icons/md/local-phone.d.ts new file mode 100644 index 0000000000..5feb41d802 --- /dev/null +++ b/react-icons/md/local-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-pizza.d.ts b/react-icons/md/local-pizza.d.ts new file mode 100644 index 0000000000..03eae8d045 --- /dev/null +++ b/react-icons/md/local-pizza.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPizza extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-play.d.ts b/react-icons/md/local-play.d.ts new file mode 100644 index 0000000000..57de312f4a --- /dev/null +++ b/react-icons/md/local-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-post-office.d.ts b/react-icons/md/local-post-office.d.ts new file mode 100644 index 0000000000..daa26b0811 --- /dev/null +++ b/react-icons/md/local-post-office.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPostOffice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-print-shop.d.ts b/react-icons/md/local-print-shop.d.ts new file mode 100644 index 0000000000..9af1ddc253 --- /dev/null +++ b/react-icons/md/local-print-shop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalPrintShop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-restaurant.d.ts b/react-icons/md/local-restaurant.d.ts new file mode 100644 index 0000000000..aa175439f8 --- /dev/null +++ b/react-icons/md/local-restaurant.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-see.d.ts b/react-icons/md/local-see.d.ts new file mode 100644 index 0000000000..2a58205790 --- /dev/null +++ b/react-icons/md/local-see.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalSee extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-shipping.d.ts b/react-icons/md/local-shipping.d.ts new file mode 100644 index 0000000000..4623d7e0ef --- /dev/null +++ b/react-icons/md/local-shipping.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalShipping extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-taxi.d.ts b/react-icons/md/local-taxi.d.ts new file mode 100644 index 0000000000..3d72753fde --- /dev/null +++ b/react-icons/md/local-taxi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocalTaxi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-city.d.ts b/react-icons/md/location-city.d.ts new file mode 100644 index 0000000000..cf7ab9c034 --- /dev/null +++ b/react-icons/md/location-city.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationCity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-disabled.d.ts b/react-icons/md/location-disabled.d.ts new file mode 100644 index 0000000000..f79f03432c --- /dev/null +++ b/react-icons/md/location-disabled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-history.d.ts b/react-icons/md/location-history.d.ts new file mode 100644 index 0000000000..32e5e2d583 --- /dev/null +++ b/react-icons/md/location-history.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-off.d.ts b/react-icons/md/location-off.d.ts new file mode 100644 index 0000000000..65bdb9e669 --- /dev/null +++ b/react-icons/md/location-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-on.d.ts b/react-icons/md/location-on.d.ts new file mode 100644 index 0000000000..0b7629ea86 --- /dev/null +++ b/react-icons/md/location-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-searching.d.ts b/react-icons/md/location-searching.d.ts new file mode 100644 index 0000000000..243d04d3b8 --- /dev/null +++ b/react-icons/md/location-searching.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLocationSearching extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock-open.d.ts b/react-icons/md/lock-open.d.ts new file mode 100644 index 0000000000..5c9a5e6bdd --- /dev/null +++ b/react-icons/md/lock-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLockOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock-outline.d.ts b/react-icons/md/lock-outline.d.ts new file mode 100644 index 0000000000..81f1b082e8 --- /dev/null +++ b/react-icons/md/lock-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLockOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock.d.ts b/react-icons/md/lock.d.ts new file mode 100644 index 0000000000..a0d1d74716 --- /dev/null +++ b/react-icons/md/lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-3.d.ts b/react-icons/md/looks-3.d.ts new file mode 100644 index 0000000000..2c3e69d835 --- /dev/null +++ b/react-icons/md/looks-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooks3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-4.d.ts b/react-icons/md/looks-4.d.ts new file mode 100644 index 0000000000..2cb7a35e12 --- /dev/null +++ b/react-icons/md/looks-4.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooks4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-5.d.ts b/react-icons/md/looks-5.d.ts new file mode 100644 index 0000000000..9a86f4cd2b --- /dev/null +++ b/react-icons/md/looks-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooks5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-6.d.ts b/react-icons/md/looks-6.d.ts new file mode 100644 index 0000000000..d942e32e16 --- /dev/null +++ b/react-icons/md/looks-6.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooks6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-one.d.ts b/react-icons/md/looks-one.d.ts new file mode 100644 index 0000000000..9c719456ac --- /dev/null +++ b/react-icons/md/looks-one.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooksOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-two.d.ts b/react-icons/md/looks-two.d.ts new file mode 100644 index 0000000000..85d9227f4e --- /dev/null +++ b/react-icons/md/looks-two.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooksTwo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks.d.ts b/react-icons/md/looks.d.ts new file mode 100644 index 0000000000..a2be6217cf --- /dev/null +++ b/react-icons/md/looks.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLooks extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loop.d.ts b/react-icons/md/loop.d.ts new file mode 100644 index 0000000000..20a5e658e4 --- /dev/null +++ b/react-icons/md/loop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loupe.d.ts b/react-icons/md/loupe.d.ts new file mode 100644 index 0000000000..c68c70a354 --- /dev/null +++ b/react-icons/md/loupe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLoupe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/low-priority.d.ts b/react-icons/md/low-priority.d.ts new file mode 100644 index 0000000000..9ca926e382 --- /dev/null +++ b/react-icons/md/low-priority.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLowPriority extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loyalty.d.ts b/react-icons/md/loyalty.d.ts new file mode 100644 index 0000000000..ceb0a4a8ab --- /dev/null +++ b/react-icons/md/loyalty.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdLoyalty extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mail-outline.d.ts b/react-icons/md/mail-outline.d.ts new file mode 100644 index 0000000000..aa776f10bf --- /dev/null +++ b/react-icons/md/mail-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMailOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mail.d.ts b/react-icons/md/mail.d.ts new file mode 100644 index 0000000000..88df96f01d --- /dev/null +++ b/react-icons/md/mail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/map.d.ts b/react-icons/md/map.d.ts new file mode 100644 index 0000000000..ba1e57f062 --- /dev/null +++ b/react-icons/md/map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/markunread-mailbox.d.ts b/react-icons/md/markunread-mailbox.d.ts new file mode 100644 index 0000000000..29557d6a20 --- /dev/null +++ b/react-icons/md/markunread-mailbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMarkunreadMailbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/markunread.d.ts b/react-icons/md/markunread.d.ts new file mode 100644 index 0000000000..28319efdfe --- /dev/null +++ b/react-icons/md/markunread.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMarkunread extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/memory.d.ts b/react-icons/md/memory.d.ts new file mode 100644 index 0000000000..308655329d --- /dev/null +++ b/react-icons/md/memory.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMemory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/menu.d.ts b/react-icons/md/menu.d.ts new file mode 100644 index 0000000000..899ebe0a24 --- /dev/null +++ b/react-icons/md/menu.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/merge-type.d.ts b/react-icons/md/merge-type.d.ts new file mode 100644 index 0000000000..4c76526df7 --- /dev/null +++ b/react-icons/md/merge-type.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMergeType extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/message.d.ts b/react-icons/md/message.d.ts new file mode 100644 index 0000000000..a09d53a0c5 --- /dev/null +++ b/react-icons/md/message.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMessage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic-none.d.ts b/react-icons/md/mic-none.d.ts new file mode 100644 index 0000000000..884bf1b628 --- /dev/null +++ b/react-icons/md/mic-none.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMicNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic-off.d.ts b/react-icons/md/mic-off.d.ts new file mode 100644 index 0000000000..dbeec4e49c --- /dev/null +++ b/react-icons/md/mic-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMicOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic.d.ts b/react-icons/md/mic.d.ts new file mode 100644 index 0000000000..0339acb382 --- /dev/null +++ b/react-icons/md/mic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mms.d.ts b/react-icons/md/mms.d.ts new file mode 100644 index 0000000000..2b279c230f --- /dev/null +++ b/react-icons/md/mms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mode-comment.d.ts b/react-icons/md/mode-comment.d.ts new file mode 100644 index 0000000000..8ca1317733 --- /dev/null +++ b/react-icons/md/mode-comment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdModeComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mode-edit.d.ts b/react-icons/md/mode-edit.d.ts new file mode 100644 index 0000000000..ef0f3e573a --- /dev/null +++ b/react-icons/md/mode-edit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdModeEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/monetization-on.d.ts b/react-icons/md/monetization-on.d.ts new file mode 100644 index 0000000000..cd57df7fdd --- /dev/null +++ b/react-icons/md/monetization-on.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMonetizationOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/money-off.d.ts b/react-icons/md/money-off.d.ts new file mode 100644 index 0000000000..8f154a2bc4 --- /dev/null +++ b/react-icons/md/money-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMoneyOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/monochrome-photos.d.ts b/react-icons/md/monochrome-photos.d.ts new file mode 100644 index 0000000000..fc5c716167 --- /dev/null +++ b/react-icons/md/monochrome-photos.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMonochromePhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mood-bad.d.ts b/react-icons/md/mood-bad.d.ts new file mode 100644 index 0000000000..17d34b9f45 --- /dev/null +++ b/react-icons/md/mood-bad.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMoodBad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mood.d.ts b/react-icons/md/mood.d.ts new file mode 100644 index 0000000000..b59615b6f8 --- /dev/null +++ b/react-icons/md/mood.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMood extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more-horiz.d.ts b/react-icons/md/more-horiz.d.ts new file mode 100644 index 0000000000..ac8c1a2e89 --- /dev/null +++ b/react-icons/md/more-horiz.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMoreHoriz extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more-vert.d.ts b/react-icons/md/more-vert.d.ts new file mode 100644 index 0000000000..b919e9fdce --- /dev/null +++ b/react-icons/md/more-vert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMoreVert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more.d.ts b/react-icons/md/more.d.ts new file mode 100644 index 0000000000..fec4ad1b55 --- /dev/null +++ b/react-icons/md/more.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/motorcycle.d.ts b/react-icons/md/motorcycle.d.ts new file mode 100644 index 0000000000..151dc7163f --- /dev/null +++ b/react-icons/md/motorcycle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMotorcycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mouse.d.ts b/react-icons/md/mouse.d.ts new file mode 100644 index 0000000000..37ac1a263a --- /dev/null +++ b/react-icons/md/mouse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMouse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/move-to-inbox.d.ts b/react-icons/md/move-to-inbox.d.ts new file mode 100644 index 0000000000..44b6d99209 --- /dev/null +++ b/react-icons/md/move-to-inbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMoveToInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie-creation.d.ts b/react-icons/md/movie-creation.d.ts new file mode 100644 index 0000000000..598edc5cf1 --- /dev/null +++ b/react-icons/md/movie-creation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMovieCreation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie-filter.d.ts b/react-icons/md/movie-filter.d.ts new file mode 100644 index 0000000000..1596550584 --- /dev/null +++ b/react-icons/md/movie-filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMovieFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie.d.ts b/react-icons/md/movie.d.ts new file mode 100644 index 0000000000..b0fae87b66 --- /dev/null +++ b/react-icons/md/movie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMovie extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/multiline-chart.d.ts b/react-icons/md/multiline-chart.d.ts new file mode 100644 index 0000000000..b5b312f5e2 --- /dev/null +++ b/react-icons/md/multiline-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMultilineChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/music-note.d.ts b/react-icons/md/music-note.d.ts new file mode 100644 index 0000000000..1147b0c126 --- /dev/null +++ b/react-icons/md/music-note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMusicNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/music-video.d.ts b/react-icons/md/music-video.d.ts new file mode 100644 index 0000000000..4faa13b1fc --- /dev/null +++ b/react-icons/md/music-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMusicVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/my-location.d.ts b/react-icons/md/my-location.d.ts new file mode 100644 index 0000000000..d3afc728ca --- /dev/null +++ b/react-icons/md/my-location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdMyLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nature-people.d.ts b/react-icons/md/nature-people.d.ts new file mode 100644 index 0000000000..17a7577779 --- /dev/null +++ b/react-icons/md/nature-people.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNaturePeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nature.d.ts b/react-icons/md/nature.d.ts new file mode 100644 index 0000000000..cca39b9b6d --- /dev/null +++ b/react-icons/md/nature.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNature extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigate-before.d.ts b/react-icons/md/navigate-before.d.ts new file mode 100644 index 0000000000..36f548b487 --- /dev/null +++ b/react-icons/md/navigate-before.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNavigateBefore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigate-next.d.ts b/react-icons/md/navigate-next.d.ts new file mode 100644 index 0000000000..37b72edcd3 --- /dev/null +++ b/react-icons/md/navigate-next.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNavigateNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigation.d.ts b/react-icons/md/navigation.d.ts new file mode 100644 index 0000000000..dfd8d23a13 --- /dev/null +++ b/react-icons/md/navigation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNavigation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/near-me.d.ts b/react-icons/md/near-me.d.ts new file mode 100644 index 0000000000..9ca6ca2105 --- /dev/null +++ b/react-icons/md/near-me.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNearMe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-cell.d.ts b/react-icons/md/network-cell.d.ts new file mode 100644 index 0000000000..0d0d2f7564 --- /dev/null +++ b/react-icons/md/network-cell.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNetworkCell extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-check.d.ts b/react-icons/md/network-check.d.ts new file mode 100644 index 0000000000..b0fc6ac8c8 --- /dev/null +++ b/react-icons/md/network-check.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNetworkCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-locked.d.ts b/react-icons/md/network-locked.d.ts new file mode 100644 index 0000000000..f7efd01377 --- /dev/null +++ b/react-icons/md/network-locked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNetworkLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-wifi.d.ts b/react-icons/md/network-wifi.d.ts new file mode 100644 index 0000000000..6a167d9ada --- /dev/null +++ b/react-icons/md/network-wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNetworkWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/new-releases.d.ts b/react-icons/md/new-releases.d.ts new file mode 100644 index 0000000000..fc850459b1 --- /dev/null +++ b/react-icons/md/new-releases.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNewReleases extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/next-week.d.ts b/react-icons/md/next-week.d.ts new file mode 100644 index 0000000000..63ef505d4c --- /dev/null +++ b/react-icons/md/next-week.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNextWeek extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nfc.d.ts b/react-icons/md/nfc.d.ts new file mode 100644 index 0000000000..8cb8cd692c --- /dev/null +++ b/react-icons/md/nfc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNfc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/no-encryption.d.ts b/react-icons/md/no-encryption.d.ts new file mode 100644 index 0000000000..220d617b9c --- /dev/null +++ b/react-icons/md/no-encryption.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNoEncryption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/no-sim.d.ts b/react-icons/md/no-sim.d.ts new file mode 100644 index 0000000000..1bec6d6c85 --- /dev/null +++ b/react-icons/md/no-sim.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNoSim extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/not-interested.d.ts b/react-icons/md/not-interested.d.ts new file mode 100644 index 0000000000..7abe215564 --- /dev/null +++ b/react-icons/md/not-interested.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotInterested extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/note-add.d.ts b/react-icons/md/note-add.d.ts new file mode 100644 index 0000000000..3fc21bff5c --- /dev/null +++ b/react-icons/md/note-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNoteAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/note.d.ts b/react-icons/md/note.d.ts new file mode 100644 index 0000000000..e1e3464242 --- /dev/null +++ b/react-icons/md/note.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-active.d.ts b/react-icons/md/notifications-active.d.ts new file mode 100644 index 0000000000..4cccbc876d --- /dev/null +++ b/react-icons/md/notifications-active.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotificationsActive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-none.d.ts b/react-icons/md/notifications-none.d.ts new file mode 100644 index 0000000000..9b3c9a70ea --- /dev/null +++ b/react-icons/md/notifications-none.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotificationsNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-off.d.ts b/react-icons/md/notifications-off.d.ts new file mode 100644 index 0000000000..c233934614 --- /dev/null +++ b/react-icons/md/notifications-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotificationsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-paused.d.ts b/react-icons/md/notifications-paused.d.ts new file mode 100644 index 0000000000..6d455d25ef --- /dev/null +++ b/react-icons/md/notifications-paused.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotificationsPaused extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications.d.ts b/react-icons/md/notifications.d.ts new file mode 100644 index 0000000000..7fb593896c --- /dev/null +++ b/react-icons/md/notifications.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNotifications extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/now-wallpaper.d.ts b/react-icons/md/now-wallpaper.d.ts new file mode 100644 index 0000000000..762d995655 --- /dev/null +++ b/react-icons/md/now-wallpaper.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNowWallpaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/now-widgets.d.ts b/react-icons/md/now-widgets.d.ts new file mode 100644 index 0000000000..025fa5ba3f --- /dev/null +++ b/react-icons/md/now-widgets.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdNowWidgets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/offline-pin.d.ts b/react-icons/md/offline-pin.d.ts new file mode 100644 index 0000000000..84de0c67c3 --- /dev/null +++ b/react-icons/md/offline-pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOfflinePin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ondemand-video.d.ts b/react-icons/md/ondemand-video.d.ts new file mode 100644 index 0000000000..43b67ead89 --- /dev/null +++ b/react-icons/md/ondemand-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOndemandVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/opacity.d.ts b/react-icons/md/opacity.d.ts new file mode 100644 index 0000000000..9e11a95333 --- /dev/null +++ b/react-icons/md/opacity.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOpacity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-in-browser.d.ts b/react-icons/md/open-in-browser.d.ts new file mode 100644 index 0000000000..ebd1c0e166 --- /dev/null +++ b/react-icons/md/open-in-browser.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOpenInBrowser extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-in-new.d.ts b/react-icons/md/open-in-new.d.ts new file mode 100644 index 0000000000..17e67dc6f5 --- /dev/null +++ b/react-icons/md/open-in-new.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOpenInNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-with.d.ts b/react-icons/md/open-with.d.ts new file mode 100644 index 0000000000..2a16675b3e --- /dev/null +++ b/react-icons/md/open-with.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdOpenWith extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pages.d.ts b/react-icons/md/pages.d.ts new file mode 100644 index 0000000000..3fcfe0a5fe --- /dev/null +++ b/react-icons/md/pages.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPages extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pageview.d.ts b/react-icons/md/pageview.d.ts new file mode 100644 index 0000000000..4d901a7e19 --- /dev/null +++ b/react-icons/md/pageview.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPageview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/palette.d.ts b/react-icons/md/palette.d.ts new file mode 100644 index 0000000000..967cee8f94 --- /dev/null +++ b/react-icons/md/palette.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPalette extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pan-tool.d.ts b/react-icons/md/pan-tool.d.ts new file mode 100644 index 0000000000..eeaaeaa4c0 --- /dev/null +++ b/react-icons/md/pan-tool.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanTool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-fish-eye.d.ts b/react-icons/md/panorama-fish-eye.d.ts new file mode 100644 index 0000000000..329a7b64d9 --- /dev/null +++ b/react-icons/md/panorama-fish-eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanoramaFishEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-horizontal.d.ts b/react-icons/md/panorama-horizontal.d.ts new file mode 100644 index 0000000000..9eeab792cd --- /dev/null +++ b/react-icons/md/panorama-horizontal.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanoramaHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-vertical.d.ts b/react-icons/md/panorama-vertical.d.ts new file mode 100644 index 0000000000..6b7d6f1db0 --- /dev/null +++ b/react-icons/md/panorama-vertical.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanoramaVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-wide-angle.d.ts b/react-icons/md/panorama-wide-angle.d.ts new file mode 100644 index 0000000000..8d0f366b3a --- /dev/null +++ b/react-icons/md/panorama-wide-angle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanoramaWideAngle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama.d.ts b/react-icons/md/panorama.d.ts new file mode 100644 index 0000000000..409d5ed6e9 --- /dev/null +++ b/react-icons/md/panorama.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPanorama extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/party-mode.d.ts b/react-icons/md/party-mode.d.ts new file mode 100644 index 0000000000..a203e8c342 --- /dev/null +++ b/react-icons/md/party-mode.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPartyMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause-circle-filled.d.ts b/react-icons/md/pause-circle-filled.d.ts new file mode 100644 index 0000000000..b48c74026e --- /dev/null +++ b/react-icons/md/pause-circle-filled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPauseCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause-circle-outline.d.ts b/react-icons/md/pause-circle-outline.d.ts new file mode 100644 index 0000000000..9a900a6a70 --- /dev/null +++ b/react-icons/md/pause-circle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPauseCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause.d.ts b/react-icons/md/pause.d.ts new file mode 100644 index 0000000000..caa3e17352 --- /dev/null +++ b/react-icons/md/pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/payment.d.ts b/react-icons/md/payment.d.ts new file mode 100644 index 0000000000..e6ccf7aa26 --- /dev/null +++ b/react-icons/md/payment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPayment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/people-outline.d.ts b/react-icons/md/people-outline.d.ts new file mode 100644 index 0000000000..6a20458f3d --- /dev/null +++ b/react-icons/md/people-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPeopleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/people.d.ts b/react-icons/md/people.d.ts new file mode 100644 index 0000000000..0ece11cd59 --- /dev/null +++ b/react-icons/md/people.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-camera-mic.d.ts b/react-icons/md/perm-camera-mic.d.ts new file mode 100644 index 0000000000..971a0f33a5 --- /dev/null +++ b/react-icons/md/perm-camera-mic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermCameraMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-contact-calendar.d.ts b/react-icons/md/perm-contact-calendar.d.ts new file mode 100644 index 0000000000..71152edd0f --- /dev/null +++ b/react-icons/md/perm-contact-calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermContactCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-data-setting.d.ts b/react-icons/md/perm-data-setting.d.ts new file mode 100644 index 0000000000..9ec9343e2c --- /dev/null +++ b/react-icons/md/perm-data-setting.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermDataSetting extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-device-information.d.ts b/react-icons/md/perm-device-information.d.ts new file mode 100644 index 0000000000..6d1c487865 --- /dev/null +++ b/react-icons/md/perm-device-information.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermDeviceInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-identity.d.ts b/react-icons/md/perm-identity.d.ts new file mode 100644 index 0000000000..a7e5b12531 --- /dev/null +++ b/react-icons/md/perm-identity.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermIdentity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-media.d.ts b/react-icons/md/perm-media.d.ts new file mode 100644 index 0000000000..dd63105c86 --- /dev/null +++ b/react-icons/md/perm-media.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermMedia extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-phone-msg.d.ts b/react-icons/md/perm-phone-msg.d.ts new file mode 100644 index 0000000000..5819bc2a8c --- /dev/null +++ b/react-icons/md/perm-phone-msg.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermPhoneMsg extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-scan-wifi.d.ts b/react-icons/md/perm-scan-wifi.d.ts new file mode 100644 index 0000000000..df045d3307 --- /dev/null +++ b/react-icons/md/perm-scan-wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPermScanWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-add.d.ts b/react-icons/md/person-add.d.ts new file mode 100644 index 0000000000..a80075f1c8 --- /dev/null +++ b/react-icons/md/person-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-outline.d.ts b/react-icons/md/person-outline.d.ts new file mode 100644 index 0000000000..359f464647 --- /dev/null +++ b/react-icons/md/person-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPersonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-pin-circle.d.ts b/react-icons/md/person-pin-circle.d.ts new file mode 100644 index 0000000000..653989979b --- /dev/null +++ b/react-icons/md/person-pin-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPersonPinCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-pin.d.ts b/react-icons/md/person-pin.d.ts new file mode 100644 index 0000000000..eafbcd83d8 --- /dev/null +++ b/react-icons/md/person-pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPersonPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person.d.ts b/react-icons/md/person.d.ts new file mode 100644 index 0000000000..530330cd9e --- /dev/null +++ b/react-icons/md/person.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/personal-video.d.ts b/react-icons/md/personal-video.d.ts new file mode 100644 index 0000000000..b72c14f489 --- /dev/null +++ b/react-icons/md/personal-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPersonalVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pets.d.ts b/react-icons/md/pets.d.ts new file mode 100644 index 0000000000..7a9fb747ce --- /dev/null +++ b/react-icons/md/pets.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-android.d.ts b/react-icons/md/phone-android.d.ts new file mode 100644 index 0000000000..6bffd6ef7c --- /dev/null +++ b/react-icons/md/phone-android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-bluetooth-speaker.d.ts b/react-icons/md/phone-bluetooth-speaker.d.ts new file mode 100644 index 0000000000..3395c95243 --- /dev/null +++ b/react-icons/md/phone-bluetooth-speaker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneBluetoothSpeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-forwarded.d.ts b/react-icons/md/phone-forwarded.d.ts new file mode 100644 index 0000000000..206e985a05 --- /dev/null +++ b/react-icons/md/phone-forwarded.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneForwarded extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-in-talk.d.ts b/react-icons/md/phone-in-talk.d.ts new file mode 100644 index 0000000000..5934da24d6 --- /dev/null +++ b/react-icons/md/phone-in-talk.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneInTalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-iphone.d.ts b/react-icons/md/phone-iphone.d.ts new file mode 100644 index 0000000000..3c9e4b6350 --- /dev/null +++ b/react-icons/md/phone-iphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneIphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-locked.d.ts b/react-icons/md/phone-locked.d.ts new file mode 100644 index 0000000000..9370064722 --- /dev/null +++ b/react-icons/md/phone-locked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-missed.d.ts b/react-icons/md/phone-missed.d.ts new file mode 100644 index 0000000000..eaa3b5622d --- /dev/null +++ b/react-icons/md/phone-missed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoneMissed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-paused.d.ts b/react-icons/md/phone-paused.d.ts new file mode 100644 index 0000000000..45dd40376c --- /dev/null +++ b/react-icons/md/phone-paused.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonePaused extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone.d.ts b/react-icons/md/phone.d.ts new file mode 100644 index 0000000000..3ce2737de0 --- /dev/null +++ b/react-icons/md/phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-erase.d.ts b/react-icons/md/phonelink-erase.d.ts new file mode 100644 index 0000000000..3df95d0af8 --- /dev/null +++ b/react-icons/md/phonelink-erase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelinkErase extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-lock.d.ts b/react-icons/md/phonelink-lock.d.ts new file mode 100644 index 0000000000..2fb774271c --- /dev/null +++ b/react-icons/md/phonelink-lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelinkLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-off.d.ts b/react-icons/md/phonelink-off.d.ts new file mode 100644 index 0000000000..ef41b0b6a6 --- /dev/null +++ b/react-icons/md/phonelink-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelinkOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-ring.d.ts b/react-icons/md/phonelink-ring.d.ts new file mode 100644 index 0000000000..cfa58d10e2 --- /dev/null +++ b/react-icons/md/phonelink-ring.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelinkRing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-setup.d.ts b/react-icons/md/phonelink-setup.d.ts new file mode 100644 index 0000000000..3d4e83f335 --- /dev/null +++ b/react-icons/md/phonelink-setup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelinkSetup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink.d.ts b/react-icons/md/phonelink.d.ts new file mode 100644 index 0000000000..754b2c5155 --- /dev/null +++ b/react-icons/md/phonelink.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhonelink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-album.d.ts b/react-icons/md/photo-album.d.ts new file mode 100644 index 0000000000..437dadf1b0 --- /dev/null +++ b/react-icons/md/photo-album.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoAlbum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-camera.d.ts b/react-icons/md/photo-camera.d.ts new file mode 100644 index 0000000000..9a79a20722 --- /dev/null +++ b/react-icons/md/photo-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-filter.d.ts b/react-icons/md/photo-filter.d.ts new file mode 100644 index 0000000000..8b3a34b4bd --- /dev/null +++ b/react-icons/md/photo-filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-library.d.ts b/react-icons/md/photo-library.d.ts new file mode 100644 index 0000000000..b2af6cacac --- /dev/null +++ b/react-icons/md/photo-library.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-actual.d.ts b/react-icons/md/photo-size-select-actual.d.ts new file mode 100644 index 0000000000..4c40c7b34c --- /dev/null +++ b/react-icons/md/photo-size-select-actual.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoSizeSelectActual extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-large.d.ts b/react-icons/md/photo-size-select-large.d.ts new file mode 100644 index 0000000000..9037238c38 --- /dev/null +++ b/react-icons/md/photo-size-select-large.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoSizeSelectLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-small.d.ts b/react-icons/md/photo-size-select-small.d.ts new file mode 100644 index 0000000000..36531f6da9 --- /dev/null +++ b/react-icons/md/photo-size-select-small.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhotoSizeSelectSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo.d.ts b/react-icons/md/photo.d.ts new file mode 100644 index 0000000000..7304d205af --- /dev/null +++ b/react-icons/md/photo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-as-pdf.d.ts b/react-icons/md/picture-as-pdf.d.ts new file mode 100644 index 0000000000..e6d7ad5ec8 --- /dev/null +++ b/react-icons/md/picture-as-pdf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPictureAsPdf extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-in-picture-alt.d.ts b/react-icons/md/picture-in-picture-alt.d.ts new file mode 100644 index 0000000000..d680da7d7b --- /dev/null +++ b/react-icons/md/picture-in-picture-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPictureInPictureAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-in-picture.d.ts b/react-icons/md/picture-in-picture.d.ts new file mode 100644 index 0000000000..95a002c05f --- /dev/null +++ b/react-icons/md/picture-in-picture.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPictureInPicture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pie-chart-outlined.d.ts b/react-icons/md/pie-chart-outlined.d.ts new file mode 100644 index 0000000000..6011528b36 --- /dev/null +++ b/react-icons/md/pie-chart-outlined.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPieChartOutlined extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pie-chart.d.ts b/react-icons/md/pie-chart.d.ts new file mode 100644 index 0000000000..3e1923ff3e --- /dev/null +++ b/react-icons/md/pie-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPieChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pin-drop.d.ts b/react-icons/md/pin-drop.d.ts new file mode 100644 index 0000000000..68669ad886 --- /dev/null +++ b/react-icons/md/pin-drop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPinDrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/place.d.ts b/react-icons/md/place.d.ts new file mode 100644 index 0000000000..f5cfa87181 --- /dev/null +++ b/react-icons/md/place.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-arrow.d.ts b/react-icons/md/play-arrow.d.ts new file mode 100644 index 0000000000..307db41417 --- /dev/null +++ b/react-icons/md/play-arrow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlayArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-circle-filled.d.ts b/react-icons/md/play-circle-filled.d.ts new file mode 100644 index 0000000000..f429c81821 --- /dev/null +++ b/react-icons/md/play-circle-filled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlayCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-circle-outline.d.ts b/react-icons/md/play-circle-outline.d.ts new file mode 100644 index 0000000000..4ea40c6077 --- /dev/null +++ b/react-icons/md/play-circle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlayCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-for-work.d.ts b/react-icons/md/play-for-work.d.ts new file mode 100644 index 0000000000..728008553a --- /dev/null +++ b/react-icons/md/play-for-work.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlayForWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-add-check.d.ts b/react-icons/md/playlist-add-check.d.ts new file mode 100644 index 0000000000..4052d6923b --- /dev/null +++ b/react-icons/md/playlist-add-check.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlaylistAddCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-add.d.ts b/react-icons/md/playlist-add.d.ts new file mode 100644 index 0000000000..77848aaec7 --- /dev/null +++ b/react-icons/md/playlist-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlaylistAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-play.d.ts b/react-icons/md/playlist-play.d.ts new file mode 100644 index 0000000000..e8f92a7f6c --- /dev/null +++ b/react-icons/md/playlist-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlaylistPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/plus-one.d.ts b/react-icons/md/plus-one.d.ts new file mode 100644 index 0000000000..653b206722 --- /dev/null +++ b/react-icons/md/plus-one.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPlusOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/poll.d.ts b/react-icons/md/poll.d.ts new file mode 100644 index 0000000000..65339f5268 --- /dev/null +++ b/react-icons/md/poll.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPoll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/polymer.d.ts b/react-icons/md/polymer.d.ts new file mode 100644 index 0000000000..7e84fdfc0a --- /dev/null +++ b/react-icons/md/polymer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPolymer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pool.d.ts b/react-icons/md/pool.d.ts new file mode 100644 index 0000000000..b66e44bd94 --- /dev/null +++ b/react-icons/md/pool.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/portable-wifi-off.d.ts b/react-icons/md/portable-wifi-off.d.ts new file mode 100644 index 0000000000..fe983ab621 --- /dev/null +++ b/react-icons/md/portable-wifi-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPortableWifiOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/portrait.d.ts b/react-icons/md/portrait.d.ts new file mode 100644 index 0000000000..1ad7f3343f --- /dev/null +++ b/react-icons/md/portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power-input.d.ts b/react-icons/md/power-input.d.ts new file mode 100644 index 0000000000..a28296a117 --- /dev/null +++ b/react-icons/md/power-input.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPowerInput extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power-settings-new.d.ts b/react-icons/md/power-settings-new.d.ts new file mode 100644 index 0000000000..e6e20f5767 --- /dev/null +++ b/react-icons/md/power-settings-new.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPowerSettingsNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power.d.ts b/react-icons/md/power.d.ts new file mode 100644 index 0000000000..2a14156858 --- /dev/null +++ b/react-icons/md/power.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pregnant-woman.d.ts b/react-icons/md/pregnant-woman.d.ts new file mode 100644 index 0000000000..9b8eda86ea --- /dev/null +++ b/react-icons/md/pregnant-woman.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPregnantWoman extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/present-to-all.d.ts b/react-icons/md/present-to-all.d.ts new file mode 100644 index 0000000000..3303c940e0 --- /dev/null +++ b/react-icons/md/present-to-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPresentToAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/print.d.ts b/react-icons/md/print.d.ts new file mode 100644 index 0000000000..5a7b38aa27 --- /dev/null +++ b/react-icons/md/print.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/priority-high.d.ts b/react-icons/md/priority-high.d.ts new file mode 100644 index 0000000000..dc496550ce --- /dev/null +++ b/react-icons/md/priority-high.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPriorityHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/public.d.ts b/react-icons/md/public.d.ts new file mode 100644 index 0000000000..c3d7214ce0 --- /dev/null +++ b/react-icons/md/public.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPublic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/publish.d.ts b/react-icons/md/publish.d.ts new file mode 100644 index 0000000000..db4a3b1f35 --- /dev/null +++ b/react-icons/md/publish.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdPublish extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/query-builder.d.ts b/react-icons/md/query-builder.d.ts new file mode 100644 index 0000000000..e4a4e2249d --- /dev/null +++ b/react-icons/md/query-builder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdQueryBuilder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/question-answer.d.ts b/react-icons/md/question-answer.d.ts new file mode 100644 index 0000000000..6ebcf43c8e --- /dev/null +++ b/react-icons/md/question-answer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdQuestionAnswer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue-music.d.ts b/react-icons/md/queue-music.d.ts new file mode 100644 index 0000000000..094fae589c --- /dev/null +++ b/react-icons/md/queue-music.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdQueueMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue-play-next.d.ts b/react-icons/md/queue-play-next.d.ts new file mode 100644 index 0000000000..597b5494f7 --- /dev/null +++ b/react-icons/md/queue-play-next.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdQueuePlayNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue.d.ts b/react-icons/md/queue.d.ts new file mode 100644 index 0000000000..1d1adf5b62 --- /dev/null +++ b/react-icons/md/queue.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio-button-checked.d.ts b/react-icons/md/radio-button-checked.d.ts new file mode 100644 index 0000000000..97ce89f3b4 --- /dev/null +++ b/react-icons/md/radio-button-checked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRadioButtonChecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio-button-unchecked.d.ts b/react-icons/md/radio-button-unchecked.d.ts new file mode 100644 index 0000000000..45858f8f0d --- /dev/null +++ b/react-icons/md/radio-button-unchecked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRadioButtonUnchecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio.d.ts b/react-icons/md/radio.d.ts new file mode 100644 index 0000000000..c18de32f40 --- /dev/null +++ b/react-icons/md/radio.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRadio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rate-review.d.ts b/react-icons/md/rate-review.d.ts new file mode 100644 index 0000000000..2ab3b3886a --- /dev/null +++ b/react-icons/md/rate-review.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRateReview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/receipt.d.ts b/react-icons/md/receipt.d.ts new file mode 100644 index 0000000000..74cb100754 --- /dev/null +++ b/react-icons/md/receipt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReceipt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/recent-actors.d.ts b/react-icons/md/recent-actors.d.ts new file mode 100644 index 0000000000..41a14f5a95 --- /dev/null +++ b/react-icons/md/recent-actors.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRecentActors extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/record-voice-over.d.ts b/react-icons/md/record-voice-over.d.ts new file mode 100644 index 0000000000..b7a1d93a63 --- /dev/null +++ b/react-icons/md/record-voice-over.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRecordVoiceOver extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/redeem.d.ts b/react-icons/md/redeem.d.ts new file mode 100644 index 0000000000..094071f611 --- /dev/null +++ b/react-icons/md/redeem.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRedeem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/redo.d.ts b/react-icons/md/redo.d.ts new file mode 100644 index 0000000000..036ee3cb1b --- /dev/null +++ b/react-icons/md/redo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRedo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/refresh.d.ts b/react-icons/md/refresh.d.ts new file mode 100644 index 0000000000..7a7ab5e939 --- /dev/null +++ b/react-icons/md/refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-circle-outline.d.ts b/react-icons/md/remove-circle-outline.d.ts new file mode 100644 index 0000000000..51c675ee41 --- /dev/null +++ b/react-icons/md/remove-circle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemoveCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-circle.d.ts b/react-icons/md/remove-circle.d.ts new file mode 100644 index 0000000000..9f9f61c684 --- /dev/null +++ b/react-icons/md/remove-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemoveCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-from-queue.d.ts b/react-icons/md/remove-from-queue.d.ts new file mode 100644 index 0000000000..21ece9c2ee --- /dev/null +++ b/react-icons/md/remove-from-queue.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemoveFromQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-red-eye.d.ts b/react-icons/md/remove-red-eye.d.ts new file mode 100644 index 0000000000..db3fcbfcd1 --- /dev/null +++ b/react-icons/md/remove-red-eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemoveRedEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-shopping-cart.d.ts b/react-icons/md/remove-shopping-cart.d.ts new file mode 100644 index 0000000000..c5fa8dc01b --- /dev/null +++ b/react-icons/md/remove-shopping-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemoveShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove.d.ts b/react-icons/md/remove.d.ts new file mode 100644 index 0000000000..e1ebf1bfc5 --- /dev/null +++ b/react-icons/md/remove.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reorder.d.ts b/react-icons/md/reorder.d.ts new file mode 100644 index 0000000000..ab0b465152 --- /dev/null +++ b/react-icons/md/reorder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/repeat-one.d.ts b/react-icons/md/repeat-one.d.ts new file mode 100644 index 0000000000..e4fc80eb27 --- /dev/null +++ b/react-icons/md/repeat-one.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRepeatOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/repeat.d.ts b/react-icons/md/repeat.d.ts new file mode 100644 index 0000000000..d0cd3655fd --- /dev/null +++ b/react-icons/md/repeat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-10.d.ts b/react-icons/md/replay-10.d.ts new file mode 100644 index 0000000000..70d75d7856 --- /dev/null +++ b/react-icons/md/replay-10.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReplay10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-30.d.ts b/react-icons/md/replay-30.d.ts new file mode 100644 index 0000000000..1972668312 --- /dev/null +++ b/react-icons/md/replay-30.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReplay30 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-5.d.ts b/react-icons/md/replay-5.d.ts new file mode 100644 index 0000000000..5fe22c164f --- /dev/null +++ b/react-icons/md/replay-5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReplay5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay.d.ts b/react-icons/md/replay.d.ts new file mode 100644 index 0000000000..dfc3ab4fa2 --- /dev/null +++ b/react-icons/md/replay.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReplay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reply-all.d.ts b/react-icons/md/reply-all.d.ts new file mode 100644 index 0000000000..51df424dc9 --- /dev/null +++ b/react-icons/md/reply-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reply.d.ts b/react-icons/md/reply.d.ts new file mode 100644 index 0000000000..c483b86b82 --- /dev/null +++ b/react-icons/md/reply.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/report-problem.d.ts b/react-icons/md/report-problem.d.ts new file mode 100644 index 0000000000..c8dacf054c --- /dev/null +++ b/react-icons/md/report-problem.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReportProblem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/report.d.ts b/react-icons/md/report.d.ts new file mode 100644 index 0000000000..360b8cbc3a --- /dev/null +++ b/react-icons/md/report.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdReport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restaurant-menu.d.ts b/react-icons/md/restaurant-menu.d.ts new file mode 100644 index 0000000000..ac96c5b1a2 --- /dev/null +++ b/react-icons/md/restaurant-menu.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRestaurantMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restaurant.d.ts b/react-icons/md/restaurant.d.ts new file mode 100644 index 0000000000..01c48c9988 --- /dev/null +++ b/react-icons/md/restaurant.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restore-page.d.ts b/react-icons/md/restore-page.d.ts new file mode 100644 index 0000000000..21442288f4 --- /dev/null +++ b/react-icons/md/restore-page.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRestorePage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restore.d.ts b/react-icons/md/restore.d.ts new file mode 100644 index 0000000000..adeebb72ce --- /dev/null +++ b/react-icons/md/restore.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRestore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ring-volume.d.ts b/react-icons/md/ring-volume.d.ts new file mode 100644 index 0000000000..2136940900 --- /dev/null +++ b/react-icons/md/ring-volume.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRingVolume extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/room-service.d.ts b/react-icons/md/room-service.d.ts new file mode 100644 index 0000000000..9cb60d92ba --- /dev/null +++ b/react-icons/md/room-service.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRoomService extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/room.d.ts b/react-icons/md/room.d.ts new file mode 100644 index 0000000000..2f50ff33e3 --- /dev/null +++ b/react-icons/md/room.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRoom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-90-degrees-ccw.d.ts b/react-icons/md/rotate-90-degrees-ccw.d.ts new file mode 100644 index 0000000000..80e3b85e93 --- /dev/null +++ b/react-icons/md/rotate-90-degrees-ccw.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRotate90DegreesCcw extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-left.d.ts b/react-icons/md/rotate-left.d.ts new file mode 100644 index 0000000000..00781fd467 --- /dev/null +++ b/react-icons/md/rotate-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRotateLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-right.d.ts b/react-icons/md/rotate-right.d.ts new file mode 100644 index 0000000000..833bf60899 --- /dev/null +++ b/react-icons/md/rotate-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRotateRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rounded-corner.d.ts b/react-icons/md/rounded-corner.d.ts new file mode 100644 index 0000000000..32bc3f28d8 --- /dev/null +++ b/react-icons/md/rounded-corner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRoundedCorner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/router.d.ts b/react-icons/md/router.d.ts new file mode 100644 index 0000000000..781a1dd169 --- /dev/null +++ b/react-icons/md/router.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRouter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rowing.d.ts b/react-icons/md/rowing.d.ts new file mode 100644 index 0000000000..055733fbab --- /dev/null +++ b/react-icons/md/rowing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRowing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rss-feed.d.ts b/react-icons/md/rss-feed.d.ts new file mode 100644 index 0000000000..d47035083e --- /dev/null +++ b/react-icons/md/rss-feed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRssFeed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rv-hookup.d.ts b/react-icons/md/rv-hookup.d.ts new file mode 100644 index 0000000000..49c78419d2 --- /dev/null +++ b/react-icons/md/rv-hookup.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdRvHookup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/satellite.d.ts b/react-icons/md/satellite.d.ts new file mode 100644 index 0000000000..898852a6be --- /dev/null +++ b/react-icons/md/satellite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSatellite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/save.d.ts b/react-icons/md/save.d.ts new file mode 100644 index 0000000000..7a8250c634 --- /dev/null +++ b/react-icons/md/save.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSave extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/scanner.d.ts b/react-icons/md/scanner.d.ts new file mode 100644 index 0000000000..b0503667fc --- /dev/null +++ b/react-icons/md/scanner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/schedule.d.ts b/react-icons/md/schedule.d.ts new file mode 100644 index 0000000000..b438196298 --- /dev/null +++ b/react-icons/md/schedule.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSchedule extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/school.d.ts b/react-icons/md/school.d.ts new file mode 100644 index 0000000000..2d0032a8a4 --- /dev/null +++ b/react-icons/md/school.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSchool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-landscape.d.ts b/react-icons/md/screen-lock-landscape.d.ts new file mode 100644 index 0000000000..1c72c25b6f --- /dev/null +++ b/react-icons/md/screen-lock-landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScreenLockLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-portrait.d.ts b/react-icons/md/screen-lock-portrait.d.ts new file mode 100644 index 0000000000..341778c4d8 --- /dev/null +++ b/react-icons/md/screen-lock-portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScreenLockPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-rotation.d.ts b/react-icons/md/screen-lock-rotation.d.ts new file mode 100644 index 0000000000..8983bfd97f --- /dev/null +++ b/react-icons/md/screen-lock-rotation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScreenLockRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-rotation.d.ts b/react-icons/md/screen-rotation.d.ts new file mode 100644 index 0000000000..7754cf623e --- /dev/null +++ b/react-icons/md/screen-rotation.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScreenRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-share.d.ts b/react-icons/md/screen-share.d.ts new file mode 100644 index 0000000000..b88b3ec3dd --- /dev/null +++ b/react-icons/md/screen-share.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdScreenShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sd-card.d.ts b/react-icons/md/sd-card.d.ts new file mode 100644 index 0000000000..979b7a949a --- /dev/null +++ b/react-icons/md/sd-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSdCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sd-storage.d.ts b/react-icons/md/sd-storage.d.ts new file mode 100644 index 0000000000..811180683f --- /dev/null +++ b/react-icons/md/sd-storage.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSdStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/search.d.ts b/react-icons/md/search.d.ts new file mode 100644 index 0000000000..99c919293e --- /dev/null +++ b/react-icons/md/search.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/security.d.ts b/react-icons/md/security.d.ts new file mode 100644 index 0000000000..b80f2802d1 --- /dev/null +++ b/react-icons/md/security.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSecurity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/select-all.d.ts b/react-icons/md/select-all.d.ts new file mode 100644 index 0000000000..b9b4135d19 --- /dev/null +++ b/react-icons/md/select-all.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSelectAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/send.d.ts b/react-icons/md/send.d.ts new file mode 100644 index 0000000000..698a92b21e --- /dev/null +++ b/react-icons/md/send.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSend extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-dissatisfied.d.ts b/react-icons/md/sentiment-dissatisfied.d.ts new file mode 100644 index 0000000000..a7720ca7a6 --- /dev/null +++ b/react-icons/md/sentiment-dissatisfied.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSentimentDissatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-neutral.d.ts b/react-icons/md/sentiment-neutral.d.ts new file mode 100644 index 0000000000..8774b302cd --- /dev/null +++ b/react-icons/md/sentiment-neutral.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSentimentNeutral extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-satisfied.d.ts b/react-icons/md/sentiment-satisfied.d.ts new file mode 100644 index 0000000000..079aee9844 --- /dev/null +++ b/react-icons/md/sentiment-satisfied.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSentimentSatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-very-dissatisfied.d.ts b/react-icons/md/sentiment-very-dissatisfied.d.ts new file mode 100644 index 0000000000..ede62ab469 --- /dev/null +++ b/react-icons/md/sentiment-very-dissatisfied.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSentimentVeryDissatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-very-satisfied.d.ts b/react-icons/md/sentiment-very-satisfied.d.ts new file mode 100644 index 0000000000..8400df879b --- /dev/null +++ b/react-icons/md/sentiment-very-satisfied.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSentimentVerySatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-applications.d.ts b/react-icons/md/settings-applications.d.ts new file mode 100644 index 0000000000..c5a662b244 --- /dev/null +++ b/react-icons/md/settings-applications.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsApplications extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-backup-restore.d.ts b/react-icons/md/settings-backup-restore.d.ts new file mode 100644 index 0000000000..852e417122 --- /dev/null +++ b/react-icons/md/settings-backup-restore.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsBackupRestore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-bluetooth.d.ts b/react-icons/md/settings-bluetooth.d.ts new file mode 100644 index 0000000000..6b8b22b434 --- /dev/null +++ b/react-icons/md/settings-bluetooth.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-brightness.d.ts b/react-icons/md/settings-brightness.d.ts new file mode 100644 index 0000000000..20a0b4cfb7 --- /dev/null +++ b/react-icons/md/settings-brightness.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsBrightness extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-cell.d.ts b/react-icons/md/settings-cell.d.ts new file mode 100644 index 0000000000..44729bd993 --- /dev/null +++ b/react-icons/md/settings-cell.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsCell extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-ethernet.d.ts b/react-icons/md/settings-ethernet.d.ts new file mode 100644 index 0000000000..c94d2d1392 --- /dev/null +++ b/react-icons/md/settings-ethernet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsEthernet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-antenna.d.ts b/react-icons/md/settings-input-antenna.d.ts new file mode 100644 index 0000000000..f9d108d911 --- /dev/null +++ b/react-icons/md/settings-input-antenna.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsInputAntenna extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-component.d.ts b/react-icons/md/settings-input-component.d.ts new file mode 100644 index 0000000000..b262f2953b --- /dev/null +++ b/react-icons/md/settings-input-component.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsInputComponent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-composite.d.ts b/react-icons/md/settings-input-composite.d.ts new file mode 100644 index 0000000000..866644f99a --- /dev/null +++ b/react-icons/md/settings-input-composite.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsInputComposite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-hdmi.d.ts b/react-icons/md/settings-input-hdmi.d.ts new file mode 100644 index 0000000000..5eca80b0bb --- /dev/null +++ b/react-icons/md/settings-input-hdmi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsInputHdmi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-svideo.d.ts b/react-icons/md/settings-input-svideo.d.ts new file mode 100644 index 0000000000..772b817bfe --- /dev/null +++ b/react-icons/md/settings-input-svideo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsInputSvideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-overscan.d.ts b/react-icons/md/settings-overscan.d.ts new file mode 100644 index 0000000000..a0770b97c3 --- /dev/null +++ b/react-icons/md/settings-overscan.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsOverscan extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-phone.d.ts b/react-icons/md/settings-phone.d.ts new file mode 100644 index 0000000000..1d4b4e2cca --- /dev/null +++ b/react-icons/md/settings-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-power.d.ts b/react-icons/md/settings-power.d.ts new file mode 100644 index 0000000000..2a71f561d7 --- /dev/null +++ b/react-icons/md/settings-power.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-remote.d.ts b/react-icons/md/settings-remote.d.ts new file mode 100644 index 0000000000..d996216fb3 --- /dev/null +++ b/react-icons/md/settings-remote.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsRemote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-system-daydream.d.ts b/react-icons/md/settings-system-daydream.d.ts new file mode 100644 index 0000000000..db317ffe17 --- /dev/null +++ b/react-icons/md/settings-system-daydream.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsSystemDaydream extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-voice.d.ts b/react-icons/md/settings-voice.d.ts new file mode 100644 index 0000000000..a972251712 --- /dev/null +++ b/react-icons/md/settings-voice.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettingsVoice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings.d.ts b/react-icons/md/settings.d.ts new file mode 100644 index 0000000000..734c0047b9 --- /dev/null +++ b/react-icons/md/settings.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/share.d.ts b/react-icons/md/share.d.ts new file mode 100644 index 0000000000..f9bce23a9c --- /dev/null +++ b/react-icons/md/share.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shop-two.d.ts b/react-icons/md/shop-two.d.ts new file mode 100644 index 0000000000..e60b964290 --- /dev/null +++ b/react-icons/md/shop-two.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShopTwo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shop.d.ts b/react-icons/md/shop.d.ts new file mode 100644 index 0000000000..0c2af01020 --- /dev/null +++ b/react-icons/md/shop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shopping-basket.d.ts b/react-icons/md/shopping-basket.d.ts new file mode 100644 index 0000000000..2b40316eb6 --- /dev/null +++ b/react-icons/md/shopping-basket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShoppingBasket extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shopping-cart.d.ts b/react-icons/md/shopping-cart.d.ts new file mode 100644 index 0000000000..dd3733a2ee --- /dev/null +++ b/react-icons/md/shopping-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/short-text.d.ts b/react-icons/md/short-text.d.ts new file mode 100644 index 0000000000..a66ed5a4f3 --- /dev/null +++ b/react-icons/md/short-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShortText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/show-chart.d.ts b/react-icons/md/show-chart.d.ts new file mode 100644 index 0000000000..2111950ee9 --- /dev/null +++ b/react-icons/md/show-chart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShowChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shuffle.d.ts b/react-icons/md/shuffle.d.ts new file mode 100644 index 0000000000..8b7c66a3c4 --- /dev/null +++ b/react-icons/md/shuffle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-4-bar.d.ts b/react-icons/md/signal-cellular-4-bar.d.ts new file mode 100644 index 0000000000..ba15cdb135 --- /dev/null +++ b/react-icons/md/signal-cellular-4-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalCellular4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts b/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts new file mode 100644 index 0000000000..eba4104439 --- /dev/null +++ b/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalCellularConnectedNoInternet4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-no-sim.d.ts b/react-icons/md/signal-cellular-no-sim.d.ts new file mode 100644 index 0000000000..9bae0ad813 --- /dev/null +++ b/react-icons/md/signal-cellular-no-sim.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalCellularNoSim extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-null.d.ts b/react-icons/md/signal-cellular-null.d.ts new file mode 100644 index 0000000000..c1b7b55b7e --- /dev/null +++ b/react-icons/md/signal-cellular-null.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalCellularNull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-off.d.ts b/react-icons/md/signal-cellular-off.d.ts new file mode 100644 index 0000000000..0da9be4b79 --- /dev/null +++ b/react-icons/md/signal-cellular-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalCellularOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-4-bar-lock.d.ts b/react-icons/md/signal-wifi-4-bar-lock.d.ts new file mode 100644 index 0000000000..81e9136b9b --- /dev/null +++ b/react-icons/md/signal-wifi-4-bar-lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalWifi4BarLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-4-bar.d.ts b/react-icons/md/signal-wifi-4-bar.d.ts new file mode 100644 index 0000000000..8051e8d0fa --- /dev/null +++ b/react-icons/md/signal-wifi-4-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalWifi4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-off.d.ts b/react-icons/md/signal-wifi-off.d.ts new file mode 100644 index 0000000000..eb9144e525 --- /dev/null +++ b/react-icons/md/signal-wifi-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSignalWifiOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sim-card-alert.d.ts b/react-icons/md/sim-card-alert.d.ts new file mode 100644 index 0000000000..82596f557c --- /dev/null +++ b/react-icons/md/sim-card-alert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSimCardAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sim-card.d.ts b/react-icons/md/sim-card.d.ts new file mode 100644 index 0000000000..27a1d002ae --- /dev/null +++ b/react-icons/md/sim-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSimCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/skip-next.d.ts b/react-icons/md/skip-next.d.ts new file mode 100644 index 0000000000..1abf4d63e6 --- /dev/null +++ b/react-icons/md/skip-next.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSkipNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/skip-previous.d.ts b/react-icons/md/skip-previous.d.ts new file mode 100644 index 0000000000..fbcc20372a --- /dev/null +++ b/react-icons/md/skip-previous.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSkipPrevious extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/slideshow.d.ts b/react-icons/md/slideshow.d.ts new file mode 100644 index 0000000000..4a121257cc --- /dev/null +++ b/react-icons/md/slideshow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSlideshow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/slow-motion-video.d.ts b/react-icons/md/slow-motion-video.d.ts new file mode 100644 index 0000000000..846c21a378 --- /dev/null +++ b/react-icons/md/slow-motion-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSlowMotionVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smartphone.d.ts b/react-icons/md/smartphone.d.ts new file mode 100644 index 0000000000..b7b81103d7 --- /dev/null +++ b/react-icons/md/smartphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSmartphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smoke-free.d.ts b/react-icons/md/smoke-free.d.ts new file mode 100644 index 0000000000..80ac19c831 --- /dev/null +++ b/react-icons/md/smoke-free.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSmokeFree extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smoking-rooms.d.ts b/react-icons/md/smoking-rooms.d.ts new file mode 100644 index 0000000000..05074808d0 --- /dev/null +++ b/react-icons/md/smoking-rooms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSmokingRooms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sms-failed.d.ts b/react-icons/md/sms-failed.d.ts new file mode 100644 index 0000000000..ad4b374b25 --- /dev/null +++ b/react-icons/md/sms-failed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSmsFailed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sms.d.ts b/react-icons/md/sms.d.ts new file mode 100644 index 0000000000..c2e81cc4bd --- /dev/null +++ b/react-icons/md/sms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/snooze.d.ts b/react-icons/md/snooze.d.ts new file mode 100644 index 0000000000..077c5c73f3 --- /dev/null +++ b/react-icons/md/snooze.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSnooze extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sort-by-alpha.d.ts b/react-icons/md/sort-by-alpha.d.ts new file mode 100644 index 0000000000..cd59d5b99e --- /dev/null +++ b/react-icons/md/sort-by-alpha.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSortByAlpha extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sort.d.ts b/react-icons/md/sort.d.ts new file mode 100644 index 0000000000..7d3183de1c --- /dev/null +++ b/react-icons/md/sort.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSort extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/spa.d.ts b/react-icons/md/spa.d.ts new file mode 100644 index 0000000000..d325fe0519 --- /dev/null +++ b/react-icons/md/spa.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpa extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/space-bar.d.ts b/react-icons/md/space-bar.d.ts new file mode 100644 index 0000000000..a99c41c81c --- /dev/null +++ b/react-icons/md/space-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpaceBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-group.d.ts b/react-icons/md/speaker-group.d.ts new file mode 100644 index 0000000000..b2793c0815 --- /dev/null +++ b/react-icons/md/speaker-group.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpeakerGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-notes-off.d.ts b/react-icons/md/speaker-notes-off.d.ts new file mode 100644 index 0000000000..3e83815529 --- /dev/null +++ b/react-icons/md/speaker-notes-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpeakerNotesOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-notes.d.ts b/react-icons/md/speaker-notes.d.ts new file mode 100644 index 0000000000..63aa9978df --- /dev/null +++ b/react-icons/md/speaker-notes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpeakerNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-phone.d.ts b/react-icons/md/speaker-phone.d.ts new file mode 100644 index 0000000000..bf343c6952 --- /dev/null +++ b/react-icons/md/speaker-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpeakerPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker.d.ts b/react-icons/md/speaker.d.ts new file mode 100644 index 0000000000..1c0709f0c5 --- /dev/null +++ b/react-icons/md/speaker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/spellcheck.d.ts b/react-icons/md/spellcheck.d.ts new file mode 100644 index 0000000000..b4000a076d --- /dev/null +++ b/react-icons/md/spellcheck.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSpellcheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-border.d.ts b/react-icons/md/star-border.d.ts new file mode 100644 index 0000000000..513a4b0936 --- /dev/null +++ b/react-icons/md/star-border.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStarBorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-half.d.ts b/react-icons/md/star-half.d.ts new file mode 100644 index 0000000000..c7ee0dde07 --- /dev/null +++ b/react-icons/md/star-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-outline.d.ts b/react-icons/md/star-outline.d.ts new file mode 100644 index 0000000000..595d80c494 --- /dev/null +++ b/react-icons/md/star-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star.d.ts b/react-icons/md/star.d.ts new file mode 100644 index 0000000000..65a7398f6d --- /dev/null +++ b/react-icons/md/star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stars.d.ts b/react-icons/md/stars.d.ts new file mode 100644 index 0000000000..12f1695a7a --- /dev/null +++ b/react-icons/md/stars.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStars extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-current-landscape.d.ts b/react-icons/md/stay-current-landscape.d.ts new file mode 100644 index 0000000000..a5f304aad1 --- /dev/null +++ b/react-icons/md/stay-current-landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStayCurrentLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-current-portrait.d.ts b/react-icons/md/stay-current-portrait.d.ts new file mode 100644 index 0000000000..551e47bab1 --- /dev/null +++ b/react-icons/md/stay-current-portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStayCurrentPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-primary-landscape.d.ts b/react-icons/md/stay-primary-landscape.d.ts new file mode 100644 index 0000000000..b9c5480f0b --- /dev/null +++ b/react-icons/md/stay-primary-landscape.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStayPrimaryLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-primary-portrait.d.ts b/react-icons/md/stay-primary-portrait.d.ts new file mode 100644 index 0000000000..fb81b17571 --- /dev/null +++ b/react-icons/md/stay-primary-portrait.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStayPrimaryPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stop-screen-share.d.ts b/react-icons/md/stop-screen-share.d.ts new file mode 100644 index 0000000000..5fe257544c --- /dev/null +++ b/react-icons/md/stop-screen-share.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStopScreenShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stop.d.ts b/react-icons/md/stop.d.ts new file mode 100644 index 0000000000..89e4e3dcf5 --- /dev/null +++ b/react-icons/md/stop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/storage.d.ts b/react-icons/md/storage.d.ts new file mode 100644 index 0000000000..6e0287c7cf --- /dev/null +++ b/react-icons/md/storage.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/store-mall-directory.d.ts b/react-icons/md/store-mall-directory.d.ts new file mode 100644 index 0000000000..d6d0f3ae04 --- /dev/null +++ b/react-icons/md/store-mall-directory.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStoreMallDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/store.d.ts b/react-icons/md/store.d.ts new file mode 100644 index 0000000000..7810674bc0 --- /dev/null +++ b/react-icons/md/store.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/straighten.d.ts b/react-icons/md/straighten.d.ts new file mode 100644 index 0000000000..f0d72a6a47 --- /dev/null +++ b/react-icons/md/straighten.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStraighten extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/streetview.d.ts b/react-icons/md/streetview.d.ts new file mode 100644 index 0000000000..6e975e8190 --- /dev/null +++ b/react-icons/md/streetview.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStreetview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/strikethrough-s.d.ts b/react-icons/md/strikethrough-s.d.ts new file mode 100644 index 0000000000..22f207d3e1 --- /dev/null +++ b/react-icons/md/strikethrough-s.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStrikethroughS extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/style.d.ts b/react-icons/md/style.d.ts new file mode 100644 index 0000000000..7bdcae58dc --- /dev/null +++ b/react-icons/md/style.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subdirectory-arrow-left.d.ts b/react-icons/md/subdirectory-arrow-left.d.ts new file mode 100644 index 0000000000..47119a8fe2 --- /dev/null +++ b/react-icons/md/subdirectory-arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubdirectoryArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subdirectory-arrow-right.d.ts b/react-icons/md/subdirectory-arrow-right.d.ts new file mode 100644 index 0000000000..5cbcdeb77a --- /dev/null +++ b/react-icons/md/subdirectory-arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubdirectoryArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subject.d.ts b/react-icons/md/subject.d.ts new file mode 100644 index 0000000000..81ca2b871b --- /dev/null +++ b/react-icons/md/subject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubject extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subscriptions.d.ts b/react-icons/md/subscriptions.d.ts new file mode 100644 index 0000000000..3f592255d7 --- /dev/null +++ b/react-icons/md/subscriptions.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubscriptions extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subtitles.d.ts b/react-icons/md/subtitles.d.ts new file mode 100644 index 0000000000..0b4257334e --- /dev/null +++ b/react-icons/md/subtitles.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubtitles extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subway.d.ts b/react-icons/md/subway.d.ts new file mode 100644 index 0000000000..cb841055fa --- /dev/null +++ b/react-icons/md/subway.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/supervisor-account.d.ts b/react-icons/md/supervisor-account.d.ts new file mode 100644 index 0000000000..8c977c80f5 --- /dev/null +++ b/react-icons/md/supervisor-account.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSupervisorAccount extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/surround-sound.d.ts b/react-icons/md/surround-sound.d.ts new file mode 100644 index 0000000000..72bb4a4c7a --- /dev/null +++ b/react-icons/md/surround-sound.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSurroundSound extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-calls.d.ts b/react-icons/md/swap-calls.d.ts new file mode 100644 index 0000000000..cbb7de2169 --- /dev/null +++ b/react-icons/md/swap-calls.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwapCalls extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-horiz.d.ts b/react-icons/md/swap-horiz.d.ts new file mode 100644 index 0000000000..391bc3762d --- /dev/null +++ b/react-icons/md/swap-horiz.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwapHoriz extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-vert.d.ts b/react-icons/md/swap-vert.d.ts new file mode 100644 index 0000000000..f63001a514 --- /dev/null +++ b/react-icons/md/swap-vert.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwapVert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-vertical-circle.d.ts b/react-icons/md/swap-vertical-circle.d.ts new file mode 100644 index 0000000000..6b38e0d145 --- /dev/null +++ b/react-icons/md/swap-vertical-circle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwapVerticalCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/switch-camera.d.ts b/react-icons/md/switch-camera.d.ts new file mode 100644 index 0000000000..dc2bf2a634 --- /dev/null +++ b/react-icons/md/switch-camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwitchCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/switch-video.d.ts b/react-icons/md/switch-video.d.ts new file mode 100644 index 0000000000..9b7dbd4dc5 --- /dev/null +++ b/react-icons/md/switch-video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSwitchVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync-disabled.d.ts b/react-icons/md/sync-disabled.d.ts new file mode 100644 index 0000000000..b67b661649 --- /dev/null +++ b/react-icons/md/sync-disabled.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSyncDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync-problem.d.ts b/react-icons/md/sync-problem.d.ts new file mode 100644 index 0000000000..52576cbf44 --- /dev/null +++ b/react-icons/md/sync-problem.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSyncProblem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync.d.ts b/react-icons/md/sync.d.ts new file mode 100644 index 0000000000..294c385d01 --- /dev/null +++ b/react-icons/md/sync.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/system-update-alt.d.ts b/react-icons/md/system-update-alt.d.ts new file mode 100644 index 0000000000..858eb653d2 --- /dev/null +++ b/react-icons/md/system-update-alt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSystemUpdateAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/system-update.d.ts b/react-icons/md/system-update.d.ts new file mode 100644 index 0000000000..23c35b7c6f --- /dev/null +++ b/react-icons/md/system-update.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdSystemUpdate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tab-unselected.d.ts b/react-icons/md/tab-unselected.d.ts new file mode 100644 index 0000000000..b01e374044 --- /dev/null +++ b/react-icons/md/tab-unselected.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTabUnselected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tab.d.ts b/react-icons/md/tab.d.ts new file mode 100644 index 0000000000..59b84c13a6 --- /dev/null +++ b/react-icons/md/tab.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTab extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet-android.d.ts b/react-icons/md/tablet-android.d.ts new file mode 100644 index 0000000000..fa79ab69de --- /dev/null +++ b/react-icons/md/tablet-android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTabletAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet-mac.d.ts b/react-icons/md/tablet-mac.d.ts new file mode 100644 index 0000000000..80c82da1bf --- /dev/null +++ b/react-icons/md/tablet-mac.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTabletMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet.d.ts b/react-icons/md/tablet.d.ts new file mode 100644 index 0000000000..9bce195d36 --- /dev/null +++ b/react-icons/md/tablet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tag-faces.d.ts b/react-icons/md/tag-faces.d.ts new file mode 100644 index 0000000000..877341e2c9 --- /dev/null +++ b/react-icons/md/tag-faces.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTagFaces extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tap-and-play.d.ts b/react-icons/md/tap-and-play.d.ts new file mode 100644 index 0000000000..6a33636553 --- /dev/null +++ b/react-icons/md/tap-and-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTapAndPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/terrain.d.ts b/react-icons/md/terrain.d.ts new file mode 100644 index 0000000000..aeab23837b --- /dev/null +++ b/react-icons/md/terrain.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTerrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/text-fields.d.ts b/react-icons/md/text-fields.d.ts new file mode 100644 index 0000000000..3b338aaf06 --- /dev/null +++ b/react-icons/md/text-fields.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTextFields extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/text-format.d.ts b/react-icons/md/text-format.d.ts new file mode 100644 index 0000000000..53802c3075 --- /dev/null +++ b/react-icons/md/text-format.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTextFormat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/textsms.d.ts b/react-icons/md/textsms.d.ts new file mode 100644 index 0000000000..7555b57070 --- /dev/null +++ b/react-icons/md/textsms.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTextsms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/texture.d.ts b/react-icons/md/texture.d.ts new file mode 100644 index 0000000000..6c24a6710a --- /dev/null +++ b/react-icons/md/texture.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTexture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/theaters.d.ts b/react-icons/md/theaters.d.ts new file mode 100644 index 0000000000..469a643367 --- /dev/null +++ b/react-icons/md/theaters.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTheaters extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumb-down.d.ts b/react-icons/md/thumb-down.d.ts new file mode 100644 index 0000000000..9aff3f72d6 --- /dev/null +++ b/react-icons/md/thumb-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdThumbDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumb-up.d.ts b/react-icons/md/thumb-up.d.ts new file mode 100644 index 0000000000..beaf19f8ea --- /dev/null +++ b/react-icons/md/thumb-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdThumbUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumbs-up-down.d.ts b/react-icons/md/thumbs-up-down.d.ts new file mode 100644 index 0000000000..48a844ee28 --- /dev/null +++ b/react-icons/md/thumbs-up-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdThumbsUpDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/time-to-leave.d.ts b/react-icons/md/time-to-leave.d.ts new file mode 100644 index 0000000000..272b8c43c7 --- /dev/null +++ b/react-icons/md/time-to-leave.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimeToLeave extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timelapse.d.ts b/react-icons/md/timelapse.d.ts new file mode 100644 index 0000000000..5d5a0cd9f1 --- /dev/null +++ b/react-icons/md/timelapse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimelapse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timeline.d.ts b/react-icons/md/timeline.d.ts new file mode 100644 index 0000000000..2c5f0bb190 --- /dev/null +++ b/react-icons/md/timeline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimeline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-10.d.ts b/react-icons/md/timer-10.d.ts new file mode 100644 index 0000000000..f1e26cac9b --- /dev/null +++ b/react-icons/md/timer-10.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimer10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-3.d.ts b/react-icons/md/timer-3.d.ts new file mode 100644 index 0000000000..35c4a2a32b --- /dev/null +++ b/react-icons/md/timer-3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimer3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-off.d.ts b/react-icons/md/timer-off.d.ts new file mode 100644 index 0000000000..081db80f24 --- /dev/null +++ b/react-icons/md/timer-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimerOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer.d.ts b/react-icons/md/timer.d.ts new file mode 100644 index 0000000000..33ccc05917 --- /dev/null +++ b/react-icons/md/timer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/title.d.ts b/react-icons/md/title.d.ts new file mode 100644 index 0000000000..fff88a2eb2 --- /dev/null +++ b/react-icons/md/title.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTitle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toc.d.ts b/react-icons/md/toc.d.ts new file mode 100644 index 0000000000..5e1d9960b3 --- /dev/null +++ b/react-icons/md/toc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdToc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/today.d.ts b/react-icons/md/today.d.ts new file mode 100644 index 0000000000..deb162e0a3 --- /dev/null +++ b/react-icons/md/today.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdToday extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toll.d.ts b/react-icons/md/toll.d.ts new file mode 100644 index 0000000000..f424ef6268 --- /dev/null +++ b/react-icons/md/toll.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdToll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tonality.d.ts b/react-icons/md/tonality.d.ts new file mode 100644 index 0000000000..999b6fb149 --- /dev/null +++ b/react-icons/md/tonality.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTonality extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/touch-app.d.ts b/react-icons/md/touch-app.d.ts new file mode 100644 index 0000000000..9c8a7d5498 --- /dev/null +++ b/react-icons/md/touch-app.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTouchApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toys.d.ts b/react-icons/md/toys.d.ts new file mode 100644 index 0000000000..4ecb76c7b5 --- /dev/null +++ b/react-icons/md/toys.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdToys extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/track-changes.d.ts b/react-icons/md/track-changes.d.ts new file mode 100644 index 0000000000..07802325ae --- /dev/null +++ b/react-icons/md/track-changes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrackChanges extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/traffic.d.ts b/react-icons/md/traffic.d.ts new file mode 100644 index 0000000000..6185a1949e --- /dev/null +++ b/react-icons/md/traffic.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTraffic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/train.d.ts b/react-icons/md/train.d.ts new file mode 100644 index 0000000000..874b170166 --- /dev/null +++ b/react-icons/md/train.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tram.d.ts b/react-icons/md/tram.d.ts new file mode 100644 index 0000000000..df96514c49 --- /dev/null +++ b/react-icons/md/tram.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTram extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/transfer-within-a-station.d.ts b/react-icons/md/transfer-within-a-station.d.ts new file mode 100644 index 0000000000..1d5c4f70e7 --- /dev/null +++ b/react-icons/md/transfer-within-a-station.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTransferWithinAStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/transform.d.ts b/react-icons/md/transform.d.ts new file mode 100644 index 0000000000..61d3c2d507 --- /dev/null +++ b/react-icons/md/transform.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTransform extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/translate.d.ts b/react-icons/md/translate.d.ts new file mode 100644 index 0000000000..f8dfd9144d --- /dev/null +++ b/react-icons/md/translate.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTranslate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-down.d.ts b/react-icons/md/trending-down.d.ts new file mode 100644 index 0000000000..0c3a7fb5f2 --- /dev/null +++ b/react-icons/md/trending-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrendingDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-flat.d.ts b/react-icons/md/trending-flat.d.ts new file mode 100644 index 0000000000..4bbdef2c21 --- /dev/null +++ b/react-icons/md/trending-flat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrendingFlat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-neutral.d.ts b/react-icons/md/trending-neutral.d.ts new file mode 100644 index 0000000000..e52bc0118a --- /dev/null +++ b/react-icons/md/trending-neutral.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrendingNeutral extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-up.d.ts b/react-icons/md/trending-up.d.ts new file mode 100644 index 0000000000..4926f9a91b --- /dev/null +++ b/react-icons/md/trending-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTrendingUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tune.d.ts b/react-icons/md/tune.d.ts new file mode 100644 index 0000000000..fb8bb50c9e --- /dev/null +++ b/react-icons/md/tune.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTune extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/turned-in-not.d.ts b/react-icons/md/turned-in-not.d.ts new file mode 100644 index 0000000000..cc192aa9b4 --- /dev/null +++ b/react-icons/md/turned-in-not.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTurnedInNot extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/turned-in.d.ts b/react-icons/md/turned-in.d.ts new file mode 100644 index 0000000000..9991b15167 --- /dev/null +++ b/react-icons/md/turned-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTurnedIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tv.d.ts b/react-icons/md/tv.d.ts new file mode 100644 index 0000000000..f345b86349 --- /dev/null +++ b/react-icons/md/tv.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdTv extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unarchive.d.ts b/react-icons/md/unarchive.d.ts new file mode 100644 index 0000000000..ed3f656fe5 --- /dev/null +++ b/react-icons/md/unarchive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUnarchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/undo.d.ts b/react-icons/md/undo.d.ts new file mode 100644 index 0000000000..ba47ba7a1d --- /dev/null +++ b/react-icons/md/undo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUndo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unfold-less.d.ts b/react-icons/md/unfold-less.d.ts new file mode 100644 index 0000000000..fc396bc102 --- /dev/null +++ b/react-icons/md/unfold-less.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUnfoldLess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unfold-more.d.ts b/react-icons/md/unfold-more.d.ts new file mode 100644 index 0000000000..467d346b02 --- /dev/null +++ b/react-icons/md/unfold-more.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUnfoldMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/update.d.ts b/react-icons/md/update.d.ts new file mode 100644 index 0000000000..fb26b1613f --- /dev/null +++ b/react-icons/md/update.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUpdate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/usb.d.ts b/react-icons/md/usb.d.ts new file mode 100644 index 0000000000..cf931f0de3 --- /dev/null +++ b/react-icons/md/usb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/verified-user.d.ts b/react-icons/md/verified-user.d.ts new file mode 100644 index 0000000000..332ab3f002 --- /dev/null +++ b/react-icons/md/verified-user.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVerifiedUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-bottom.d.ts b/react-icons/md/vertical-align-bottom.d.ts new file mode 100644 index 0000000000..5163fcbbed --- /dev/null +++ b/react-icons/md/vertical-align-bottom.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVerticalAlignBottom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-center.d.ts b/react-icons/md/vertical-align-center.d.ts new file mode 100644 index 0000000000..e9943c0e01 --- /dev/null +++ b/react-icons/md/vertical-align-center.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVerticalAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-top.d.ts b/react-icons/md/vertical-align-top.d.ts new file mode 100644 index 0000000000..082840e08c --- /dev/null +++ b/react-icons/md/vertical-align-top.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVerticalAlignTop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vibration.d.ts b/react-icons/md/vibration.d.ts new file mode 100644 index 0000000000..6a3a6c9770 --- /dev/null +++ b/react-icons/md/vibration.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVibration extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-call.d.ts b/react-icons/md/video-call.d.ts new file mode 100644 index 0000000000..2e846030f4 --- /dev/null +++ b/react-icons/md/video-call.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideoCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-collection.d.ts b/react-icons/md/video-collection.d.ts new file mode 100644 index 0000000000..2ae7844e64 --- /dev/null +++ b/react-icons/md/video-collection.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideoCollection extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-label.d.ts b/react-icons/md/video-label.d.ts new file mode 100644 index 0000000000..ed31c93626 --- /dev/null +++ b/react-icons/md/video-label.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideoLabel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-library.d.ts b/react-icons/md/video-library.d.ts new file mode 100644 index 0000000000..0ab753b0d4 --- /dev/null +++ b/react-icons/md/video-library.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideoLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videocam-off.d.ts b/react-icons/md/videocam-off.d.ts new file mode 100644 index 0000000000..7a5174f77a --- /dev/null +++ b/react-icons/md/videocam-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideocamOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videocam.d.ts b/react-icons/md/videocam.d.ts new file mode 100644 index 0000000000..114b9ffabc --- /dev/null +++ b/react-icons/md/videocam.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideocam extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videogame-asset.d.ts b/react-icons/md/videogame-asset.d.ts new file mode 100644 index 0000000000..f3168d7aff --- /dev/null +++ b/react-icons/md/videogame-asset.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVideogameAsset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-agenda.d.ts b/react-icons/md/view-agenda.d.ts new file mode 100644 index 0000000000..e44d4322cc --- /dev/null +++ b/react-icons/md/view-agenda.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewAgenda extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-array.d.ts b/react-icons/md/view-array.d.ts new file mode 100644 index 0000000000..9f09393b50 --- /dev/null +++ b/react-icons/md/view-array.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewArray extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-carousel.d.ts b/react-icons/md/view-carousel.d.ts new file mode 100644 index 0000000000..6ea94e127c --- /dev/null +++ b/react-icons/md/view-carousel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewCarousel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-column.d.ts b/react-icons/md/view-column.d.ts new file mode 100644 index 0000000000..34d3d2c742 --- /dev/null +++ b/react-icons/md/view-column.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewColumn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-comfortable.d.ts b/react-icons/md/view-comfortable.d.ts new file mode 100644 index 0000000000..eb75a5cfc1 --- /dev/null +++ b/react-icons/md/view-comfortable.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewComfortable extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-comfy.d.ts b/react-icons/md/view-comfy.d.ts new file mode 100644 index 0000000000..8ad9432293 --- /dev/null +++ b/react-icons/md/view-comfy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewComfy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-compact.d.ts b/react-icons/md/view-compact.d.ts new file mode 100644 index 0000000000..663aa2e1c1 --- /dev/null +++ b/react-icons/md/view-compact.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewCompact extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-day.d.ts b/react-icons/md/view-day.d.ts new file mode 100644 index 0000000000..5fb5625f0f --- /dev/null +++ b/react-icons/md/view-day.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewDay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-headline.d.ts b/react-icons/md/view-headline.d.ts new file mode 100644 index 0000000000..ea131765a9 --- /dev/null +++ b/react-icons/md/view-headline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewHeadline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-list.d.ts b/react-icons/md/view-list.d.ts new file mode 100644 index 0000000000..6d2a670820 --- /dev/null +++ b/react-icons/md/view-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-module.d.ts b/react-icons/md/view-module.d.ts new file mode 100644 index 0000000000..20814db577 --- /dev/null +++ b/react-icons/md/view-module.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewModule extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-quilt.d.ts b/react-icons/md/view-quilt.d.ts new file mode 100644 index 0000000000..13c73c5375 --- /dev/null +++ b/react-icons/md/view-quilt.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewQuilt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-stream.d.ts b/react-icons/md/view-stream.d.ts new file mode 100644 index 0000000000..9f898ed880 --- /dev/null +++ b/react-icons/md/view-stream.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewStream extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-week.d.ts b/react-icons/md/view-week.d.ts new file mode 100644 index 0000000000..bafa896326 --- /dev/null +++ b/react-icons/md/view-week.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdViewWeek extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vignette.d.ts b/react-icons/md/vignette.d.ts new file mode 100644 index 0000000000..d555a44da0 --- /dev/null +++ b/react-icons/md/vignette.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVignette extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/visibility-off.d.ts b/react-icons/md/visibility-off.d.ts new file mode 100644 index 0000000000..0c08afeabe --- /dev/null +++ b/react-icons/md/visibility-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVisibilityOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/visibility.d.ts b/react-icons/md/visibility.d.ts new file mode 100644 index 0000000000..5a917999e3 --- /dev/null +++ b/react-icons/md/visibility.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVisibility extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/voice-chat.d.ts b/react-icons/md/voice-chat.d.ts new file mode 100644 index 0000000000..21a1470156 --- /dev/null +++ b/react-icons/md/voice-chat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVoiceChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/voicemail.d.ts b/react-icons/md/voicemail.d.ts new file mode 100644 index 0000000000..3582bca35d --- /dev/null +++ b/react-icons/md/voicemail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVoicemail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-down.d.ts b/react-icons/md/volume-down.d.ts new file mode 100644 index 0000000000..9c73e40c60 --- /dev/null +++ b/react-icons/md/volume-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-mute.d.ts b/react-icons/md/volume-mute.d.ts new file mode 100644 index 0000000000..a648ef6788 --- /dev/null +++ b/react-icons/md/volume-mute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-off.d.ts b/react-icons/md/volume-off.d.ts new file mode 100644 index 0000000000..72ffd436f5 --- /dev/null +++ b/react-icons/md/volume-off.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-up.d.ts b/react-icons/md/volume-up.d.ts new file mode 100644 index 0000000000..a28d29a92e --- /dev/null +++ b/react-icons/md/volume-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vpn-key.d.ts b/react-icons/md/vpn-key.d.ts new file mode 100644 index 0000000000..9c3da5ac9f --- /dev/null +++ b/react-icons/md/vpn-key.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVpnKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vpn-lock.d.ts b/react-icons/md/vpn-lock.d.ts new file mode 100644 index 0000000000..02307de308 --- /dev/null +++ b/react-icons/md/vpn-lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdVpnLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wallpaper.d.ts b/react-icons/md/wallpaper.d.ts new file mode 100644 index 0000000000..09f436ea72 --- /dev/null +++ b/react-icons/md/wallpaper.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWallpaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/warning.d.ts b/react-icons/md/warning.d.ts new file mode 100644 index 0000000000..cb52080f49 --- /dev/null +++ b/react-icons/md/warning.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/watch-later.d.ts b/react-icons/md/watch-later.d.ts new file mode 100644 index 0000000000..6ff56ea604 --- /dev/null +++ b/react-icons/md/watch-later.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWatchLater extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/watch.d.ts b/react-icons/md/watch.d.ts new file mode 100644 index 0000000000..0304107a36 --- /dev/null +++ b/react-icons/md/watch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-auto.d.ts b/react-icons/md/wb-auto.d.ts new file mode 100644 index 0000000000..7094dbab5e --- /dev/null +++ b/react-icons/md/wb-auto.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWbAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-cloudy.d.ts b/react-icons/md/wb-cloudy.d.ts new file mode 100644 index 0000000000..e6cc818893 --- /dev/null +++ b/react-icons/md/wb-cloudy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWbCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-incandescent.d.ts b/react-icons/md/wb-incandescent.d.ts new file mode 100644 index 0000000000..7539a62e08 --- /dev/null +++ b/react-icons/md/wb-incandescent.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWbIncandescent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-iridescent.d.ts b/react-icons/md/wb-iridescent.d.ts new file mode 100644 index 0000000000..9a30790d34 --- /dev/null +++ b/react-icons/md/wb-iridescent.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWbIridescent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-sunny.d.ts b/react-icons/md/wb-sunny.d.ts new file mode 100644 index 0000000000..1ef8f5bcd9 --- /dev/null +++ b/react-icons/md/wb-sunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWbSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wc.d.ts b/react-icons/md/wc.d.ts new file mode 100644 index 0000000000..707fa091a7 --- /dev/null +++ b/react-icons/md/wc.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/web-asset.d.ts b/react-icons/md/web-asset.d.ts new file mode 100644 index 0000000000..8d85e297f1 --- /dev/null +++ b/react-icons/md/web-asset.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWebAsset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/web.d.ts b/react-icons/md/web.d.ts new file mode 100644 index 0000000000..39427baba2 --- /dev/null +++ b/react-icons/md/web.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWeb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/weekend.d.ts b/react-icons/md/weekend.d.ts new file mode 100644 index 0000000000..fd9459e0fc --- /dev/null +++ b/react-icons/md/weekend.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWeekend extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/whatshot.d.ts b/react-icons/md/whatshot.d.ts new file mode 100644 index 0000000000..0953f5a3ab --- /dev/null +++ b/react-icons/md/whatshot.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWhatshot extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/widgets.d.ts b/react-icons/md/widgets.d.ts new file mode 100644 index 0000000000..0e946f8d1a --- /dev/null +++ b/react-icons/md/widgets.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWidgets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi-lock.d.ts b/react-icons/md/wifi-lock.d.ts new file mode 100644 index 0000000000..f59d1531ad --- /dev/null +++ b/react-icons/md/wifi-lock.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWifiLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi-tethering.d.ts b/react-icons/md/wifi-tethering.d.ts new file mode 100644 index 0000000000..b2101a889d --- /dev/null +++ b/react-icons/md/wifi-tethering.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWifiTethering extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi.d.ts b/react-icons/md/wifi.d.ts new file mode 100644 index 0000000000..c0e6523233 --- /dev/null +++ b/react-icons/md/wifi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/work.d.ts b/react-icons/md/work.d.ts new file mode 100644 index 0000000000..4fd83c108f --- /dev/null +++ b/react-icons/md/work.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wrap-text.d.ts b/react-icons/md/wrap-text.d.ts new file mode 100644 index 0000000000..63310fe255 --- /dev/null +++ b/react-icons/md/wrap-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdWrapText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/youtube-searched-for.d.ts b/react-icons/md/youtube-searched-for.d.ts new file mode 100644 index 0000000000..a64fc5f798 --- /dev/null +++ b/react-icons/md/youtube-searched-for.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdYoutubeSearchedFor extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-in.d.ts b/react-icons/md/zoom-in.d.ts new file mode 100644 index 0000000000..b5969ca02e --- /dev/null +++ b/react-icons/md/zoom-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdZoomIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-out-map.d.ts b/react-icons/md/zoom-out-map.d.ts new file mode 100644 index 0000000000..1a2af3f147 --- /dev/null +++ b/react-icons/md/zoom-out-map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdZoomOutMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-out.d.ts b/react-icons/md/zoom-out.d.ts new file mode 100644 index 0000000000..064f6dcbca --- /dev/null +++ b/react-icons/md/zoom-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class MdZoomOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/react-icons-tests.tsx b/react-icons/react-icons-tests.tsx new file mode 100644 index 0000000000..0c37cc9da2 --- /dev/null +++ b/react-icons/react-icons-tests.tsx @@ -0,0 +1,11 @@ +import * as React from 'react'; +import FaBeer from 'react-icons/fa/beer'; +import {FaExclamation} from 'react-icons/fa'; + +class Question extends React.Component { + render() { + return

Lets go for a ?

; + } +} + + diff --git a/react-icons/ti/adjust-brightness.d.ts b/react-icons/ti/adjust-brightness.d.ts new file mode 100644 index 0000000000..596936255a --- /dev/null +++ b/react-icons/ti/adjust-brightness.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAdjustBrightness extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/adjust-contrast.d.ts b/react-icons/ti/adjust-contrast.d.ts new file mode 100644 index 0000000000..8993740265 --- /dev/null +++ b/react-icons/ti/adjust-contrast.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAdjustContrast extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/anchor-outline.d.ts b/react-icons/ti/anchor-outline.d.ts new file mode 100644 index 0000000000..47097b6ec3 --- /dev/null +++ b/react-icons/ti/anchor-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAnchorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/anchor.d.ts b/react-icons/ti/anchor.d.ts new file mode 100644 index 0000000000..b551e044c9 --- /dev/null +++ b/react-icons/ti/anchor.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAnchor extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/archive.d.ts b/react-icons/ti/archive.d.ts new file mode 100644 index 0000000000..d5df8751a8 --- /dev/null +++ b/react-icons/ti/archive.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-back-outline.d.ts b/react-icons/ti/arrow-back-outline.d.ts new file mode 100644 index 0000000000..1f3d9b55cf --- /dev/null +++ b/react-icons/ti/arrow-back-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowBackOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-back.d.ts b/react-icons/ti/arrow-back.d.ts new file mode 100644 index 0000000000..89cb507ac2 --- /dev/null +++ b/react-icons/ti/arrow-back.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down-outline.d.ts b/react-icons/ti/arrow-down-outline.d.ts new file mode 100644 index 0000000000..d057ac1741 --- /dev/null +++ b/react-icons/ti/arrow-down-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowDownOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down-thick.d.ts b/react-icons/ti/arrow-down-thick.d.ts new file mode 100644 index 0000000000..1b40860bdb --- /dev/null +++ b/react-icons/ti/arrow-down-thick.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowDownThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down.d.ts b/react-icons/ti/arrow-down.d.ts new file mode 100644 index 0000000000..0142b7bb50 --- /dev/null +++ b/react-icons/ti/arrow-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-forward-outline.d.ts b/react-icons/ti/arrow-forward-outline.d.ts new file mode 100644 index 0000000000..295ef2b65b --- /dev/null +++ b/react-icons/ti/arrow-forward-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowForwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-forward.d.ts b/react-icons/ti/arrow-forward.d.ts new file mode 100644 index 0000000000..77ff1dbcdf --- /dev/null +++ b/react-icons/ti/arrow-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left-outline.d.ts b/react-icons/ti/arrow-left-outline.d.ts new file mode 100644 index 0000000000..8373a35a8a --- /dev/null +++ b/react-icons/ti/arrow-left-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowLeftOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left-thick.d.ts b/react-icons/ti/arrow-left-thick.d.ts new file mode 100644 index 0000000000..e3544e3ef5 --- /dev/null +++ b/react-icons/ti/arrow-left-thick.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowLeftThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left.d.ts b/react-icons/ti/arrow-left.d.ts new file mode 100644 index 0000000000..83f97e675e --- /dev/null +++ b/react-icons/ti/arrow-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-loop-outline.d.ts b/react-icons/ti/arrow-loop-outline.d.ts new file mode 100644 index 0000000000..d2e0464a75 --- /dev/null +++ b/react-icons/ti/arrow-loop-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowLoopOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-loop.d.ts b/react-icons/ti/arrow-loop.d.ts new file mode 100644 index 0000000000..d9f38d92f6 --- /dev/null +++ b/react-icons/ti/arrow-loop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-maximise-outline.d.ts b/react-icons/ti/arrow-maximise-outline.d.ts new file mode 100644 index 0000000000..aa96161155 --- /dev/null +++ b/react-icons/ti/arrow-maximise-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMaximiseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-maximise.d.ts b/react-icons/ti/arrow-maximise.d.ts new file mode 100644 index 0000000000..e019b58b8d --- /dev/null +++ b/react-icons/ti/arrow-maximise.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMaximise extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-minimise-outline.d.ts b/react-icons/ti/arrow-minimise-outline.d.ts new file mode 100644 index 0000000000..ade9ad485e --- /dev/null +++ b/react-icons/ti/arrow-minimise-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMinimiseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-minimise.d.ts b/react-icons/ti/arrow-minimise.d.ts new file mode 100644 index 0000000000..c083ef682c --- /dev/null +++ b/react-icons/ti/arrow-minimise.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMinimise extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-move-outline.d.ts b/react-icons/ti/arrow-move-outline.d.ts new file mode 100644 index 0000000000..ecc382dc0c --- /dev/null +++ b/react-icons/ti/arrow-move-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMoveOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-move.d.ts b/react-icons/ti/arrow-move.d.ts new file mode 100644 index 0000000000..26104332e5 --- /dev/null +++ b/react-icons/ti/arrow-move.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowMove extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-repeat-outline.d.ts b/react-icons/ti/arrow-repeat-outline.d.ts new file mode 100644 index 0000000000..287e0ecf04 --- /dev/null +++ b/react-icons/ti/arrow-repeat-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowRepeatOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-repeat.d.ts b/react-icons/ti/arrow-repeat.d.ts new file mode 100644 index 0000000000..8882eff7d6 --- /dev/null +++ b/react-icons/ti/arrow-repeat.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right-outline.d.ts b/react-icons/ti/arrow-right-outline.d.ts new file mode 100644 index 0000000000..2134b51834 --- /dev/null +++ b/react-icons/ti/arrow-right-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowRightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right-thick.d.ts b/react-icons/ti/arrow-right-thick.d.ts new file mode 100644 index 0000000000..f10f3f238c --- /dev/null +++ b/react-icons/ti/arrow-right-thick.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowRightThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right.d.ts b/react-icons/ti/arrow-right.d.ts new file mode 100644 index 0000000000..972bc24311 --- /dev/null +++ b/react-icons/ti/arrow-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-shuffle.d.ts b/react-icons/ti/arrow-shuffle.d.ts new file mode 100644 index 0000000000..29c1988c44 --- /dev/null +++ b/react-icons/ti/arrow-shuffle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sorted-down.d.ts b/react-icons/ti/arrow-sorted-down.d.ts new file mode 100644 index 0000000000..b8de6a783b --- /dev/null +++ b/react-icons/ti/arrow-sorted-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowSortedDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sorted-up.d.ts b/react-icons/ti/arrow-sorted-up.d.ts new file mode 100644 index 0000000000..4c755bd395 --- /dev/null +++ b/react-icons/ti/arrow-sorted-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowSortedUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sync-outline.d.ts b/react-icons/ti/arrow-sync-outline.d.ts new file mode 100644 index 0000000000..316a8fc76f --- /dev/null +++ b/react-icons/ti/arrow-sync-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowSyncOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sync.d.ts b/react-icons/ti/arrow-sync.d.ts new file mode 100644 index 0000000000..ddfe0a676a --- /dev/null +++ b/react-icons/ti/arrow-sync.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-unsorted.d.ts b/react-icons/ti/arrow-unsorted.d.ts new file mode 100644 index 0000000000..97962a866a --- /dev/null +++ b/react-icons/ti/arrow-unsorted.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowUnsorted extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up-outline.d.ts b/react-icons/ti/arrow-up-outline.d.ts new file mode 100644 index 0000000000..230d7da1ca --- /dev/null +++ b/react-icons/ti/arrow-up-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowUpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up-thick.d.ts b/react-icons/ti/arrow-up-thick.d.ts new file mode 100644 index 0000000000..06367f1dc2 --- /dev/null +++ b/react-icons/ti/arrow-up-thick.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowUpThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up.d.ts b/react-icons/ti/arrow-up.d.ts new file mode 100644 index 0000000000..aaad8108e4 --- /dev/null +++ b/react-icons/ti/arrow-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/at.d.ts b/react-icons/ti/at.d.ts new file mode 100644 index 0000000000..fb58ac6010 --- /dev/null +++ b/react-icons/ti/at.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/attachment-outline.d.ts b/react-icons/ti/attachment-outline.d.ts new file mode 100644 index 0000000000..71b865944e --- /dev/null +++ b/react-icons/ti/attachment-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAttachmentOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/attachment.d.ts b/react-icons/ti/attachment.d.ts new file mode 100644 index 0000000000..f75a95d608 --- /dev/null +++ b/react-icons/ti/attachment.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiAttachment extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/backspace-outline.d.ts b/react-icons/ti/backspace-outline.d.ts new file mode 100644 index 0000000000..087c4d1d2c --- /dev/null +++ b/react-icons/ti/backspace-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBackspaceOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/backspace.d.ts b/react-icons/ti/backspace.d.ts new file mode 100644 index 0000000000..abfb24a367 --- /dev/null +++ b/react-icons/ti/backspace.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-charge.d.ts b/react-icons/ti/battery-charge.d.ts new file mode 100644 index 0000000000..1d8ccbe5c3 --- /dev/null +++ b/react-icons/ti/battery-charge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBatteryCharge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-full.d.ts b/react-icons/ti/battery-full.d.ts new file mode 100644 index 0000000000..e7dafc411c --- /dev/null +++ b/react-icons/ti/battery-full.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-high.d.ts b/react-icons/ti/battery-high.d.ts new file mode 100644 index 0000000000..7908343ccd --- /dev/null +++ b/react-icons/ti/battery-high.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBatteryHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-low.d.ts b/react-icons/ti/battery-low.d.ts new file mode 100644 index 0000000000..31a3d170ab --- /dev/null +++ b/react-icons/ti/battery-low.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBatteryLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-mid.d.ts b/react-icons/ti/battery-mid.d.ts new file mode 100644 index 0000000000..ffd918cf39 --- /dev/null +++ b/react-icons/ti/battery-mid.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBatteryMid extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/beaker.d.ts b/react-icons/ti/beaker.d.ts new file mode 100644 index 0000000000..02484f3c3a --- /dev/null +++ b/react-icons/ti/beaker.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/beer.d.ts b/react-icons/ti/beer.d.ts new file mode 100644 index 0000000000..37c18ee453 --- /dev/null +++ b/react-icons/ti/beer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/bell.d.ts b/react-icons/ti/bell.d.ts new file mode 100644 index 0000000000..4074ec7a34 --- /dev/null +++ b/react-icons/ti/bell.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/book.d.ts b/react-icons/ti/book.d.ts new file mode 100644 index 0000000000..c3a0ad12a0 --- /dev/null +++ b/react-icons/ti/book.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/bookmark.d.ts b/react-icons/ti/bookmark.d.ts new file mode 100644 index 0000000000..bc2736986d --- /dev/null +++ b/react-icons/ti/bookmark.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/briefcase.d.ts b/react-icons/ti/briefcase.d.ts new file mode 100644 index 0000000000..bdc5ff8c9d --- /dev/null +++ b/react-icons/ti/briefcase.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/brush.d.ts b/react-icons/ti/brush.d.ts new file mode 100644 index 0000000000..3d66ffafe8 --- /dev/null +++ b/react-icons/ti/brush.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/business-card.d.ts b/react-icons/ti/business-card.d.ts new file mode 100644 index 0000000000..b75c8dd8f0 --- /dev/null +++ b/react-icons/ti/business-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiBusinessCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calculator.d.ts b/react-icons/ti/calculator.d.ts new file mode 100644 index 0000000000..1673ca6f56 --- /dev/null +++ b/react-icons/ti/calculator.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calendar-outline.d.ts b/react-icons/ti/calendar-outline.d.ts new file mode 100644 index 0000000000..9375d9b9cd --- /dev/null +++ b/react-icons/ti/calendar-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCalendarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calendar.d.ts b/react-icons/ti/calendar.d.ts new file mode 100644 index 0000000000..d898cb1de5 --- /dev/null +++ b/react-icons/ti/calendar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calender-outline.d.ts b/react-icons/ti/calender-outline.d.ts new file mode 100644 index 0000000000..6b8272a6fa --- /dev/null +++ b/react-icons/ti/calender-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCalenderOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calender.d.ts b/react-icons/ti/calender.d.ts new file mode 100644 index 0000000000..65de8fa2b6 --- /dev/null +++ b/react-icons/ti/calender.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCalender extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/camera-outline.d.ts b/react-icons/ti/camera-outline.d.ts new file mode 100644 index 0000000000..36dbea9108 --- /dev/null +++ b/react-icons/ti/camera-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/camera.d.ts b/react-icons/ti/camera.d.ts new file mode 100644 index 0000000000..65df0425c6 --- /dev/null +++ b/react-icons/ti/camera.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cancel-outline.d.ts b/react-icons/ti/cancel-outline.d.ts new file mode 100644 index 0000000000..4efe1949ae --- /dev/null +++ b/react-icons/ti/cancel-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCancelOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cancel.d.ts b/react-icons/ti/cancel.d.ts new file mode 100644 index 0000000000..75473c3dda --- /dev/null +++ b/react-icons/ti/cancel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-area-outline.d.ts b/react-icons/ti/chart-area-outline.d.ts new file mode 100644 index 0000000000..10e5732b02 --- /dev/null +++ b/react-icons/ti/chart-area-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartAreaOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-area.d.ts b/react-icons/ti/chart-area.d.ts new file mode 100644 index 0000000000..22aa1c87fd --- /dev/null +++ b/react-icons/ti/chart-area.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartArea extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-bar-outline.d.ts b/react-icons/ti/chart-bar-outline.d.ts new file mode 100644 index 0000000000..77c0e9bd55 --- /dev/null +++ b/react-icons/ti/chart-bar-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartBarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-bar.d.ts b/react-icons/ti/chart-bar.d.ts new file mode 100644 index 0000000000..57c9c6401d --- /dev/null +++ b/react-icons/ti/chart-bar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-line-outline.d.ts b/react-icons/ti/chart-line-outline.d.ts new file mode 100644 index 0000000000..7bc4d7d31d --- /dev/null +++ b/react-icons/ti/chart-line-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartLineOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-line.d.ts b/react-icons/ti/chart-line.d.ts new file mode 100644 index 0000000000..d3a83096b4 --- /dev/null +++ b/react-icons/ti/chart-line.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartLine extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-pie-outline.d.ts b/react-icons/ti/chart-pie-outline.d.ts new file mode 100644 index 0000000000..49c1d5e4a3 --- /dev/null +++ b/react-icons/ti/chart-pie-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartPieOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-pie.d.ts b/react-icons/ti/chart-pie.d.ts new file mode 100644 index 0000000000..043d613fa2 --- /dev/null +++ b/react-icons/ti/chart-pie.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChartPie extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-left-outline.d.ts b/react-icons/ti/chevron-left-outline.d.ts new file mode 100644 index 0000000000..2a80ae47bc --- /dev/null +++ b/react-icons/ti/chevron-left-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChevronLeftOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-left.d.ts b/react-icons/ti/chevron-left.d.ts new file mode 100644 index 0000000000..dc38a0e899 --- /dev/null +++ b/react-icons/ti/chevron-left.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-right-outline.d.ts b/react-icons/ti/chevron-right-outline.d.ts new file mode 100644 index 0000000000..a4c5497b98 --- /dev/null +++ b/react-icons/ti/chevron-right-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChevronRightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-right.d.ts b/react-icons/ti/chevron-right.d.ts new file mode 100644 index 0000000000..a595783f39 --- /dev/null +++ b/react-icons/ti/chevron-right.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/clipboard.d.ts b/react-icons/ti/clipboard.d.ts new file mode 100644 index 0000000000..232aff9210 --- /dev/null +++ b/react-icons/ti/clipboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cloud-storage-outline.d.ts b/react-icons/ti/cloud-storage-outline.d.ts new file mode 100644 index 0000000000..70a1b09ee2 --- /dev/null +++ b/react-icons/ti/cloud-storage-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCloudStorageOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cloud-storage.d.ts b/react-icons/ti/cloud-storage.d.ts new file mode 100644 index 0000000000..a0b55596e9 --- /dev/null +++ b/react-icons/ti/cloud-storage.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCloudStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/code-outline.d.ts b/react-icons/ti/code-outline.d.ts new file mode 100644 index 0000000000..18898601b7 --- /dev/null +++ b/react-icons/ti/code-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCodeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/code.d.ts b/react-icons/ti/code.d.ts new file mode 100644 index 0000000000..e56523e7ac --- /dev/null +++ b/react-icons/ti/code.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/coffee.d.ts b/react-icons/ti/coffee.d.ts new file mode 100644 index 0000000000..4f56bda6c6 --- /dev/null +++ b/react-icons/ti/coffee.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cog-outline.d.ts b/react-icons/ti/cog-outline.d.ts new file mode 100644 index 0000000000..4358079e25 --- /dev/null +++ b/react-icons/ti/cog-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCogOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cog.d.ts b/react-icons/ti/cog.d.ts new file mode 100644 index 0000000000..f2c8c3b247 --- /dev/null +++ b/react-icons/ti/cog.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/compass.d.ts b/react-icons/ti/compass.d.ts new file mode 100644 index 0000000000..b674f8798e --- /dev/null +++ b/react-icons/ti/compass.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/contacts.d.ts b/react-icons/ti/contacts.d.ts new file mode 100644 index 0000000000..d3f1b6de96 --- /dev/null +++ b/react-icons/ti/contacts.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/credit-card.d.ts b/react-icons/ti/credit-card.d.ts new file mode 100644 index 0000000000..5ba40a4889 --- /dev/null +++ b/react-icons/ti/credit-card.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cross.d.ts b/react-icons/ti/cross.d.ts new file mode 100644 index 0000000000..66ead9ed6f --- /dev/null +++ b/react-icons/ti/cross.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCross extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/css3.d.ts b/react-icons/ti/css3.d.ts new file mode 100644 index 0000000000..2e4ff86921 --- /dev/null +++ b/react-icons/ti/css3.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/database.d.ts b/react-icons/ti/database.d.ts new file mode 100644 index 0000000000..cd19a38395 --- /dev/null +++ b/react-icons/ti/database.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/delete-outline.d.ts b/react-icons/ti/delete-outline.d.ts new file mode 100644 index 0000000000..ce1a46afe0 --- /dev/null +++ b/react-icons/ti/delete-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDeleteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/delete.d.ts b/react-icons/ti/delete.d.ts new file mode 100644 index 0000000000..54b7a52798 --- /dev/null +++ b/react-icons/ti/delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-desktop.d.ts b/react-icons/ti/device-desktop.d.ts new file mode 100644 index 0000000000..4082937cfa --- /dev/null +++ b/react-icons/ti/device-desktop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDeviceDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-laptop.d.ts b/react-icons/ti/device-laptop.d.ts new file mode 100644 index 0000000000..223e8cb78f --- /dev/null +++ b/react-icons/ti/device-laptop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDeviceLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-phone.d.ts b/react-icons/ti/device-phone.d.ts new file mode 100644 index 0000000000..099ba01e32 --- /dev/null +++ b/react-icons/ti/device-phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDevicePhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-tablet.d.ts b/react-icons/ti/device-tablet.d.ts new file mode 100644 index 0000000000..4d2e7c7ecb --- /dev/null +++ b/react-icons/ti/device-tablet.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDeviceTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/directions.d.ts b/react-icons/ti/directions.d.ts new file mode 100644 index 0000000000..9b8033529b --- /dev/null +++ b/react-icons/ti/directions.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDirections extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/divide-outline.d.ts b/react-icons/ti/divide-outline.d.ts new file mode 100644 index 0000000000..1ce6008736 --- /dev/null +++ b/react-icons/ti/divide-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDivideOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/divide.d.ts b/react-icons/ti/divide.d.ts new file mode 100644 index 0000000000..ba049b42b6 --- /dev/null +++ b/react-icons/ti/divide.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDivide extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-add.d.ts b/react-icons/ti/document-add.d.ts new file mode 100644 index 0000000000..c96e6da84a --- /dev/null +++ b/react-icons/ti/document-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDocumentAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-delete.d.ts b/react-icons/ti/document-delete.d.ts new file mode 100644 index 0000000000..fdcc134d84 --- /dev/null +++ b/react-icons/ti/document-delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDocumentDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-text.d.ts b/react-icons/ti/document-text.d.ts new file mode 100644 index 0000000000..132a18e341 --- /dev/null +++ b/react-icons/ti/document-text.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDocumentText extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document.d.ts b/react-icons/ti/document.d.ts new file mode 100644 index 0000000000..18b90c8078 --- /dev/null +++ b/react-icons/ti/document.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/download-outline.d.ts b/react-icons/ti/download-outline.d.ts new file mode 100644 index 0000000000..9c7b4117d9 --- /dev/null +++ b/react-icons/ti/download-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/download.d.ts b/react-icons/ti/download.d.ts new file mode 100644 index 0000000000..165981a873 --- /dev/null +++ b/react-icons/ti/download.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/dropbox.d.ts b/react-icons/ti/dropbox.d.ts new file mode 100644 index 0000000000..6d5db24646 --- /dev/null +++ b/react-icons/ti/dropbox.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/edit.d.ts b/react-icons/ti/edit.d.ts new file mode 100644 index 0000000000..0a20f0d9bb --- /dev/null +++ b/react-icons/ti/edit.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eject-outline.d.ts b/react-icons/ti/eject-outline.d.ts new file mode 100644 index 0000000000..9238d38c60 --- /dev/null +++ b/react-icons/ti/eject-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEjectOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eject.d.ts b/react-icons/ti/eject.d.ts new file mode 100644 index 0000000000..04578932aa --- /dev/null +++ b/react-icons/ti/eject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/equals-outline.d.ts b/react-icons/ti/equals-outline.d.ts new file mode 100644 index 0000000000..cd8ffdada6 --- /dev/null +++ b/react-icons/ti/equals-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEqualsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/equals.d.ts b/react-icons/ti/equals.d.ts new file mode 100644 index 0000000000..4a41e9c5a6 --- /dev/null +++ b/react-icons/ti/equals.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEquals extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/export-outline.d.ts b/react-icons/ti/export-outline.d.ts new file mode 100644 index 0000000000..a16dc24f03 --- /dev/null +++ b/react-icons/ti/export-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiExportOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/export.d.ts b/react-icons/ti/export.d.ts new file mode 100644 index 0000000000..815b8b9860 --- /dev/null +++ b/react-icons/ti/export.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiExport extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eye-outline.d.ts b/react-icons/ti/eye-outline.d.ts new file mode 100644 index 0000000000..f948c1f806 --- /dev/null +++ b/react-icons/ti/eye-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEyeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eye.d.ts b/react-icons/ti/eye.d.ts new file mode 100644 index 0000000000..2766026c15 --- /dev/null +++ b/react-icons/ti/eye.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/feather.d.ts b/react-icons/ti/feather.d.ts new file mode 100644 index 0000000000..e3ee080a39 --- /dev/null +++ b/react-icons/ti/feather.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFeather extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/film.d.ts b/react-icons/ti/film.d.ts new file mode 100644 index 0000000000..ca097907b5 --- /dev/null +++ b/react-icons/ti/film.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/filter.d.ts b/react-icons/ti/filter.d.ts new file mode 100644 index 0000000000..7a792ce53d --- /dev/null +++ b/react-icons/ti/filter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flag-outline.d.ts b/react-icons/ti/flag-outline.d.ts new file mode 100644 index 0000000000..39b61f70df --- /dev/null +++ b/react-icons/ti/flag-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flag.d.ts b/react-icons/ti/flag.d.ts new file mode 100644 index 0000000000..6756d5ad02 --- /dev/null +++ b/react-icons/ti/flag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flash-outline.d.ts b/react-icons/ti/flash-outline.d.ts new file mode 100644 index 0000000000..4206624b4a --- /dev/null +++ b/react-icons/ti/flash-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlashOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flash.d.ts b/react-icons/ti/flash.d.ts new file mode 100644 index 0000000000..c155d980bb --- /dev/null +++ b/react-icons/ti/flash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-children.d.ts b/react-icons/ti/flow-children.d.ts new file mode 100644 index 0000000000..9ab26c796d --- /dev/null +++ b/react-icons/ti/flow-children.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlowChildren extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-merge.d.ts b/react-icons/ti/flow-merge.d.ts new file mode 100644 index 0000000000..c31657001f --- /dev/null +++ b/react-icons/ti/flow-merge.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlowMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-parallel.d.ts b/react-icons/ti/flow-parallel.d.ts new file mode 100644 index 0000000000..b50cece646 --- /dev/null +++ b/react-icons/ti/flow-parallel.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlowParallel extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-switch.d.ts b/react-icons/ti/flow-switch.d.ts new file mode 100644 index 0000000000..f211d0bff6 --- /dev/null +++ b/react-icons/ti/flow-switch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFlowSwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-add.d.ts b/react-icons/ti/folder-add.d.ts new file mode 100644 index 0000000000..bb77eb4f17 --- /dev/null +++ b/react-icons/ti/folder-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFolderAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-delete.d.ts b/react-icons/ti/folder-delete.d.ts new file mode 100644 index 0000000000..bf3bfe3958 --- /dev/null +++ b/react-icons/ti/folder-delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFolderDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-open.d.ts b/react-icons/ti/folder-open.d.ts new file mode 100644 index 0000000000..6f0f188e86 --- /dev/null +++ b/react-icons/ti/folder-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder.d.ts b/react-icons/ti/folder.d.ts new file mode 100644 index 0000000000..0ce5764483 --- /dev/null +++ b/react-icons/ti/folder.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/gift.d.ts b/react-icons/ti/gift.d.ts new file mode 100644 index 0000000000..1335e2a466 --- /dev/null +++ b/react-icons/ti/gift.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/globe-outline.d.ts b/react-icons/ti/globe-outline.d.ts new file mode 100644 index 0000000000..4a35336cee --- /dev/null +++ b/react-icons/ti/globe-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiGlobeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/globe.d.ts b/react-icons/ti/globe.d.ts new file mode 100644 index 0000000000..9a8c4d81b5 --- /dev/null +++ b/react-icons/ti/globe.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/group-outline.d.ts b/react-icons/ti/group-outline.d.ts new file mode 100644 index 0000000000..c90a63b8d8 --- /dev/null +++ b/react-icons/ti/group-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiGroupOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/group.d.ts b/react-icons/ti/group.d.ts new file mode 100644 index 0000000000..4f5fd1ecb0 --- /dev/null +++ b/react-icons/ti/group.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/headphones.d.ts b/react-icons/ti/headphones.d.ts new file mode 100644 index 0000000000..7fa32b06de --- /dev/null +++ b/react-icons/ti/headphones.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHeadphones extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-full-outline.d.ts b/react-icons/ti/heart-full-outline.d.ts new file mode 100644 index 0000000000..528f286bcd --- /dev/null +++ b/react-icons/ti/heart-full-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHeartFullOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-half-outline.d.ts b/react-icons/ti/heart-half-outline.d.ts new file mode 100644 index 0000000000..d36d3ef634 --- /dev/null +++ b/react-icons/ti/heart-half-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHeartHalfOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-outline.d.ts b/react-icons/ti/heart-outline.d.ts new file mode 100644 index 0000000000..a456814f14 --- /dev/null +++ b/react-icons/ti/heart-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHeartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart.d.ts b/react-icons/ti/heart.d.ts new file mode 100644 index 0000000000..9b7f9a63d6 --- /dev/null +++ b/react-icons/ti/heart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/home-outline.d.ts b/react-icons/ti/home-outline.d.ts new file mode 100644 index 0000000000..d8e356aea5 --- /dev/null +++ b/react-icons/ti/home-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHomeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/home.d.ts b/react-icons/ti/home.d.ts new file mode 100644 index 0000000000..d4b20e2a1b --- /dev/null +++ b/react-icons/ti/home.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/html5.d.ts b/react-icons/ti/html5.d.ts new file mode 100644 index 0000000000..8d5d862ddd --- /dev/null +++ b/react-icons/ti/html5.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/image-outline.d.ts b/react-icons/ti/image-outline.d.ts new file mode 100644 index 0000000000..47cdff063f --- /dev/null +++ b/react-icons/ti/image-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiImageOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/image.d.ts b/react-icons/ti/image.d.ts new file mode 100644 index 0000000000..ed7769b86a --- /dev/null +++ b/react-icons/ti/image.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/index.d.ts b/react-icons/ti/index.d.ts new file mode 100644 index 0000000000..4156d41c8b --- /dev/null +++ b/react-icons/ti/index.d.ts @@ -0,0 +1,678 @@ +import _TiAdjustBrightness from "./adjust-brightness"; +import _TiAdjustContrast from "./adjust-contrast"; +import _TiAnchorOutline from "./anchor-outline"; +import _TiAnchor from "./anchor"; +import _TiArchive from "./archive"; +import _TiArrowBackOutline from "./arrow-back-outline"; +import _TiArrowBack from "./arrow-back"; +import _TiArrowDownOutline from "./arrow-down-outline"; +import _TiArrowDownThick from "./arrow-down-thick"; +import _TiArrowDown from "./arrow-down"; +import _TiArrowForwardOutline from "./arrow-forward-outline"; +import _TiArrowForward from "./arrow-forward"; +import _TiArrowLeftOutline from "./arrow-left-outline"; +import _TiArrowLeftThick from "./arrow-left-thick"; +import _TiArrowLeft from "./arrow-left"; +import _TiArrowLoopOutline from "./arrow-loop-outline"; +import _TiArrowLoop from "./arrow-loop"; +import _TiArrowMaximiseOutline from "./arrow-maximise-outline"; +import _TiArrowMaximise from "./arrow-maximise"; +import _TiArrowMinimiseOutline from "./arrow-minimise-outline"; +import _TiArrowMinimise from "./arrow-minimise"; +import _TiArrowMoveOutline from "./arrow-move-outline"; +import _TiArrowMove from "./arrow-move"; +import _TiArrowRepeatOutline from "./arrow-repeat-outline"; +import _TiArrowRepeat from "./arrow-repeat"; +import _TiArrowRightOutline from "./arrow-right-outline"; +import _TiArrowRightThick from "./arrow-right-thick"; +import _TiArrowRight from "./arrow-right"; +import _TiArrowShuffle from "./arrow-shuffle"; +import _TiArrowSortedDown from "./arrow-sorted-down"; +import _TiArrowSortedUp from "./arrow-sorted-up"; +import _TiArrowSyncOutline from "./arrow-sync-outline"; +import _TiArrowSync from "./arrow-sync"; +import _TiArrowUnsorted from "./arrow-unsorted"; +import _TiArrowUpOutline from "./arrow-up-outline"; +import _TiArrowUpThick from "./arrow-up-thick"; +import _TiArrowUp from "./arrow-up"; +import _TiAt from "./at"; +import _TiAttachmentOutline from "./attachment-outline"; +import _TiAttachment from "./attachment"; +import _TiBackspaceOutline from "./backspace-outline"; +import _TiBackspace from "./backspace"; +import _TiBatteryCharge from "./battery-charge"; +import _TiBatteryFull from "./battery-full"; +import _TiBatteryHigh from "./battery-high"; +import _TiBatteryLow from "./battery-low"; +import _TiBatteryMid from "./battery-mid"; +import _TiBeaker from "./beaker"; +import _TiBeer from "./beer"; +import _TiBell from "./bell"; +import _TiBook from "./book"; +import _TiBookmark from "./bookmark"; +import _TiBriefcase from "./briefcase"; +import _TiBrush from "./brush"; +import _TiBusinessCard from "./business-card"; +import _TiCalculator from "./calculator"; +import _TiCalendarOutline from "./calendar-outline"; +import _TiCalendar from "./calendar"; +import _TiCalenderOutline from "./calender-outline"; +import _TiCalender from "./calender"; +import _TiCameraOutline from "./camera-outline"; +import _TiCamera from "./camera"; +import _TiCancelOutline from "./cancel-outline"; +import _TiCancel from "./cancel"; +import _TiChartAreaOutline from "./chart-area-outline"; +import _TiChartArea from "./chart-area"; +import _TiChartBarOutline from "./chart-bar-outline"; +import _TiChartBar from "./chart-bar"; +import _TiChartLineOutline from "./chart-line-outline"; +import _TiChartLine from "./chart-line"; +import _TiChartPieOutline from "./chart-pie-outline"; +import _TiChartPie from "./chart-pie"; +import _TiChevronLeftOutline from "./chevron-left-outline"; +import _TiChevronLeft from "./chevron-left"; +import _TiChevronRightOutline from "./chevron-right-outline"; +import _TiChevronRight from "./chevron-right"; +import _TiClipboard from "./clipboard"; +import _TiCloudStorageOutline from "./cloud-storage-outline"; +import _TiCloudStorage from "./cloud-storage"; +import _TiCodeOutline from "./code-outline"; +import _TiCode from "./code"; +import _TiCoffee from "./coffee"; +import _TiCogOutline from "./cog-outline"; +import _TiCog from "./cog"; +import _TiCompass from "./compass"; +import _TiContacts from "./contacts"; +import _TiCreditCard from "./credit-card"; +import _TiCross from "./cross"; +import _TiCss3 from "./css3"; +import _TiDatabase from "./database"; +import _TiDeleteOutline from "./delete-outline"; +import _TiDelete from "./delete"; +import _TiDeviceDesktop from "./device-desktop"; +import _TiDeviceLaptop from "./device-laptop"; +import _TiDevicePhone from "./device-phone"; +import _TiDeviceTablet from "./device-tablet"; +import _TiDirections from "./directions"; +import _TiDivideOutline from "./divide-outline"; +import _TiDivide from "./divide"; +import _TiDocumentAdd from "./document-add"; +import _TiDocumentDelete from "./document-delete"; +import _TiDocumentText from "./document-text"; +import _TiDocument from "./document"; +import _TiDownloadOutline from "./download-outline"; +import _TiDownload from "./download"; +import _TiDropbox from "./dropbox"; +import _TiEdit from "./edit"; +import _TiEjectOutline from "./eject-outline"; +import _TiEject from "./eject"; +import _TiEqualsOutline from "./equals-outline"; +import _TiEquals from "./equals"; +import _TiExportOutline from "./export-outline"; +import _TiExport from "./export"; +import _TiEyeOutline from "./eye-outline"; +import _TiEye from "./eye"; +import _TiFeather from "./feather"; +import _TiFilm from "./film"; +import _TiFilter from "./filter"; +import _TiFlagOutline from "./flag-outline"; +import _TiFlag from "./flag"; +import _TiFlashOutline from "./flash-outline"; +import _TiFlash from "./flash"; +import _TiFlowChildren from "./flow-children"; +import _TiFlowMerge from "./flow-merge"; +import _TiFlowParallel from "./flow-parallel"; +import _TiFlowSwitch from "./flow-switch"; +import _TiFolderAdd from "./folder-add"; +import _TiFolderDelete from "./folder-delete"; +import _TiFolderOpen from "./folder-open"; +import _TiFolder from "./folder"; +import _TiGift from "./gift"; +import _TiGlobeOutline from "./globe-outline"; +import _TiGlobe from "./globe"; +import _TiGroupOutline from "./group-outline"; +import _TiGroup from "./group"; +import _TiHeadphones from "./headphones"; +import _TiHeartFullOutline from "./heart-full-outline"; +import _TiHeartHalfOutline from "./heart-half-outline"; +import _TiHeartOutline from "./heart-outline"; +import _TiHeart from "./heart"; +import _TiHomeOutline from "./home-outline"; +import _TiHome from "./home"; +import _TiHtml5 from "./html5"; +import _TiImageOutline from "./image-outline"; +import _TiImage from "./image"; +import _TiInfinityOutline from "./infinity-outline"; +import _TiInfinity from "./infinity"; +import _TiInfoLargeOutline from "./info-large-outline"; +import _TiInfoLarge from "./info-large"; +import _TiInfoOutline from "./info-outline"; +import _TiInfo from "./info"; +import _TiInputCheckedOutline from "./input-checked-outline"; +import _TiInputChecked from "./input-checked"; +import _TiKeyOutline from "./key-outline"; +import _TiKey from "./key"; +import _TiKeyboard from "./keyboard"; +import _TiLeaf from "./leaf"; +import _TiLightbulb from "./lightbulb"; +import _TiLinkOutline from "./link-outline"; +import _TiLink from "./link"; +import _TiLocationArrowOutline from "./location-arrow-outline"; +import _TiLocationArrow from "./location-arrow"; +import _TiLocationOutline from "./location-outline"; +import _TiLocation from "./location"; +import _TiLockClosedOutline from "./lock-closed-outline"; +import _TiLockClosed from "./lock-closed"; +import _TiLockOpenOutline from "./lock-open-outline"; +import _TiLockOpen from "./lock-open"; +import _TiMail from "./mail"; +import _TiMap from "./map"; +import _TiMediaEjectOutline from "./media-eject-outline"; +import _TiMediaEject from "./media-eject"; +import _TiMediaFastForwardOutline from "./media-fast-forward-outline"; +import _TiMediaFastForward from "./media-fast-forward"; +import _TiMediaPauseOutline from "./media-pause-outline"; +import _TiMediaPause from "./media-pause"; +import _TiMediaPlayOutline from "./media-play-outline"; +import _TiMediaPlayReverseOutline from "./media-play-reverse-outline"; +import _TiMediaPlayReverse from "./media-play-reverse"; +import _TiMediaPlay from "./media-play"; +import _TiMediaRecordOutline from "./media-record-outline"; +import _TiMediaRecord from "./media-record"; +import _TiMediaRewindOutline from "./media-rewind-outline"; +import _TiMediaRewind from "./media-rewind"; +import _TiMediaStopOutline from "./media-stop-outline"; +import _TiMediaStop from "./media-stop"; +import _TiMessageTyping from "./message-typing"; +import _TiMessage from "./message"; +import _TiMessages from "./messages"; +import _TiMicrophoneOutline from "./microphone-outline"; +import _TiMicrophone from "./microphone"; +import _TiMinusOutline from "./minus-outline"; +import _TiMinus from "./minus"; +import _TiMortarBoard from "./mortar-board"; +import _TiNews from "./news"; +import _TiNotesOutline from "./notes-outline"; +import _TiNotes from "./notes"; +import _TiPen from "./pen"; +import _TiPencil from "./pencil"; +import _TiPhoneOutline from "./phone-outline"; +import _TiPhone from "./phone"; +import _TiPiOutline from "./pi-outline"; +import _TiPi from "./pi"; +import _TiPinOutline from "./pin-outline"; +import _TiPin from "./pin"; +import _TiPipette from "./pipette"; +import _TiPlaneOutline from "./plane-outline"; +import _TiPlane from "./plane"; +import _TiPlug from "./plug"; +import _TiPlusOutline from "./plus-outline"; +import _TiPlus from "./plus"; +import _TiPointOfInterestOutline from "./point-of-interest-outline"; +import _TiPointOfInterest from "./point-of-interest"; +import _TiPowerOutline from "./power-outline"; +import _TiPower from "./power"; +import _TiPrinter from "./printer"; +import _TiPuzzleOutline from "./puzzle-outline"; +import _TiPuzzle from "./puzzle"; +import _TiRadarOutline from "./radar-outline"; +import _TiRadar from "./radar"; +import _TiRefreshOutline from "./refresh-outline"; +import _TiRefresh from "./refresh"; +import _TiRssOutline from "./rss-outline"; +import _TiRss from "./rss"; +import _TiScissorsOutline from "./scissors-outline"; +import _TiScissors from "./scissors"; +import _TiShoppingBag from "./shopping-bag"; +import _TiShoppingCart from "./shopping-cart"; +import _TiSocialAtCircular from "./social-at-circular"; +import _TiSocialDribbbleCircular from "./social-dribbble-circular"; +import _TiSocialDribbble from "./social-dribbble"; +import _TiSocialFacebookCircular from "./social-facebook-circular"; +import _TiSocialFacebook from "./social-facebook"; +import _TiSocialFlickrCircular from "./social-flickr-circular"; +import _TiSocialFlickr from "./social-flickr"; +import _TiSocialGithubCircular from "./social-github-circular"; +import _TiSocialGithub from "./social-github"; +import _TiSocialGooglePlusCircular from "./social-google-plus-circular"; +import _TiSocialGooglePlus from "./social-google-plus"; +import _TiSocialInstagramCircular from "./social-instagram-circular"; +import _TiSocialInstagram from "./social-instagram"; +import _TiSocialLastFmCircular from "./social-last-fm-circular"; +import _TiSocialLastFm from "./social-last-fm"; +import _TiSocialLinkedinCircular from "./social-linkedin-circular"; +import _TiSocialLinkedin from "./social-linkedin"; +import _TiSocialPinterestCircular from "./social-pinterest-circular"; +import _TiSocialPinterest from "./social-pinterest"; +import _TiSocialSkypeOutline from "./social-skype-outline"; +import _TiSocialSkype from "./social-skype"; +import _TiSocialTumblerCircular from "./social-tumbler-circular"; +import _TiSocialTumbler from "./social-tumbler"; +import _TiSocialTwitterCircular from "./social-twitter-circular"; +import _TiSocialTwitter from "./social-twitter"; +import _TiSocialVimeoCircular from "./social-vimeo-circular"; +import _TiSocialVimeo from "./social-vimeo"; +import _TiSocialYoutubeCircular from "./social-youtube-circular"; +import _TiSocialYoutube from "./social-youtube"; +import _TiSortAlphabeticallyOutline from "./sort-alphabetically-outline"; +import _TiSortAlphabetically from "./sort-alphabetically"; +import _TiSortNumericallyOutline from "./sort-numerically-outline"; +import _TiSortNumerically from "./sort-numerically"; +import _TiSpannerOutline from "./spanner-outline"; +import _TiSpanner from "./spanner"; +import _TiSpiral from "./spiral"; +import _TiStarFullOutline from "./star-full-outline"; +import _TiStarHalfOutline from "./star-half-outline"; +import _TiStarHalf from "./star-half"; +import _TiStarOutline from "./star-outline"; +import _TiStar from "./star"; +import _TiStarburstOutline from "./starburst-outline"; +import _TiStarburst from "./starburst"; +import _TiStopwatch from "./stopwatch"; +import _TiSupport from "./support"; +import _TiTabsOutline from "./tabs-outline"; +import _TiTag from "./tag"; +import _TiTags from "./tags"; +import _TiThLargeOutline from "./th-large-outline"; +import _TiThLarge from "./th-large"; +import _TiThListOutline from "./th-list-outline"; +import _TiThList from "./th-list"; +import _TiThMenuOutline from "./th-menu-outline"; +import _TiThMenu from "./th-menu"; +import _TiThSmallOutline from "./th-small-outline"; +import _TiThSmall from "./th-small"; +import _TiThermometer from "./thermometer"; +import _TiThumbsDown from "./thumbs-down"; +import _TiThumbsOk from "./thumbs-ok"; +import _TiThumbsUp from "./thumbs-up"; +import _TiTickOutline from "./tick-outline"; +import _TiTick from "./tick"; +import _TiTicket from "./ticket"; +import _TiTime from "./time"; +import _TiTimesOutline from "./times-outline"; +import _TiTimes from "./times"; +import _TiTrash from "./trash"; +import _TiTree from "./tree"; +import _TiUploadOutline from "./upload-outline"; +import _TiUpload from "./upload"; +import _TiUserAddOutline from "./user-add-outline"; +import _TiUserAdd from "./user-add"; +import _TiUserDeleteOutline from "./user-delete-outline"; +import _TiUserDelete from "./user-delete"; +import _TiUserOutline from "./user-outline"; +import _TiUser from "./user"; +import _TiVendorAndroid from "./vendor-android"; +import _TiVendorApple from "./vendor-apple"; +import _TiVendorMicrosoft from "./vendor-microsoft"; +import _TiVideoOutline from "./video-outline"; +import _TiVideo from "./video"; +import _TiVolumeDown from "./volume-down"; +import _TiVolumeMute from "./volume-mute"; +import _TiVolumeUp from "./volume-up"; +import _TiVolume from "./volume"; +import _TiWarningOutline from "./warning-outline"; +import _TiWarning from "./warning"; +import _TiWatch from "./watch"; +import _TiWavesOutline from "./waves-outline"; +import _TiWaves from "./waves"; +import _TiWeatherCloudy from "./weather-cloudy"; +import _TiWeatherDownpour from "./weather-downpour"; +import _TiWeatherNight from "./weather-night"; +import _TiWeatherPartlySunny from "./weather-partly-sunny"; +import _TiWeatherShower from "./weather-shower"; +import _TiWeatherSnow from "./weather-snow"; +import _TiWeatherStormy from "./weather-stormy"; +import _TiWeatherSunny from "./weather-sunny"; +import _TiWeatherWindyCloudy from "./weather-windy-cloudy"; +import _TiWeatherWindy from "./weather-windy"; +import _TiWiFiOutline from "./wi-fi-outline"; +import _TiWiFi from "./wi-fi"; +import _TiWine from "./wine"; +import _TiWorldOutline from "./world-outline"; +import _TiWorld from "./world"; +import _TiZoomInOutline from "./zoom-in-outline"; +import _TiZoomIn from "./zoom-in"; +import _TiZoomOutOutline from "./zoom-out-outline"; +import _TiZoomOut from "./zoom-out"; +import _TiZoomOutline from "./zoom-outline"; +import _TiZoom from "./zoom"; +export var TiAdjustBrightness: typeof _TiAdjustBrightness; +export var TiAdjustContrast: typeof _TiAdjustContrast; +export var TiAnchorOutline: typeof _TiAnchorOutline; +export var TiAnchor: typeof _TiAnchor; +export var TiArchive: typeof _TiArchive; +export var TiArrowBackOutline: typeof _TiArrowBackOutline; +export var TiArrowBack: typeof _TiArrowBack; +export var TiArrowDownOutline: typeof _TiArrowDownOutline; +export var TiArrowDownThick: typeof _TiArrowDownThick; +export var TiArrowDown: typeof _TiArrowDown; +export var TiArrowForwardOutline: typeof _TiArrowForwardOutline; +export var TiArrowForward: typeof _TiArrowForward; +export var TiArrowLeftOutline: typeof _TiArrowLeftOutline; +export var TiArrowLeftThick: typeof _TiArrowLeftThick; +export var TiArrowLeft: typeof _TiArrowLeft; +export var TiArrowLoopOutline: typeof _TiArrowLoopOutline; +export var TiArrowLoop: typeof _TiArrowLoop; +export var TiArrowMaximiseOutline: typeof _TiArrowMaximiseOutline; +export var TiArrowMaximise: typeof _TiArrowMaximise; +export var TiArrowMinimiseOutline: typeof _TiArrowMinimiseOutline; +export var TiArrowMinimise: typeof _TiArrowMinimise; +export var TiArrowMoveOutline: typeof _TiArrowMoveOutline; +export var TiArrowMove: typeof _TiArrowMove; +export var TiArrowRepeatOutline: typeof _TiArrowRepeatOutline; +export var TiArrowRepeat: typeof _TiArrowRepeat; +export var TiArrowRightOutline: typeof _TiArrowRightOutline; +export var TiArrowRightThick: typeof _TiArrowRightThick; +export var TiArrowRight: typeof _TiArrowRight; +export var TiArrowShuffle: typeof _TiArrowShuffle; +export var TiArrowSortedDown: typeof _TiArrowSortedDown; +export var TiArrowSortedUp: typeof _TiArrowSortedUp; +export var TiArrowSyncOutline: typeof _TiArrowSyncOutline; +export var TiArrowSync: typeof _TiArrowSync; +export var TiArrowUnsorted: typeof _TiArrowUnsorted; +export var TiArrowUpOutline: typeof _TiArrowUpOutline; +export var TiArrowUpThick: typeof _TiArrowUpThick; +export var TiArrowUp: typeof _TiArrowUp; +export var TiAt: typeof _TiAt; +export var TiAttachmentOutline: typeof _TiAttachmentOutline; +export var TiAttachment: typeof _TiAttachment; +export var TiBackspaceOutline: typeof _TiBackspaceOutline; +export var TiBackspace: typeof _TiBackspace; +export var TiBatteryCharge: typeof _TiBatteryCharge; +export var TiBatteryFull: typeof _TiBatteryFull; +export var TiBatteryHigh: typeof _TiBatteryHigh; +export var TiBatteryLow: typeof _TiBatteryLow; +export var TiBatteryMid: typeof _TiBatteryMid; +export var TiBeaker: typeof _TiBeaker; +export var TiBeer: typeof _TiBeer; +export var TiBell: typeof _TiBell; +export var TiBook: typeof _TiBook; +export var TiBookmark: typeof _TiBookmark; +export var TiBriefcase: typeof _TiBriefcase; +export var TiBrush: typeof _TiBrush; +export var TiBusinessCard: typeof _TiBusinessCard; +export var TiCalculator: typeof _TiCalculator; +export var TiCalendarOutline: typeof _TiCalendarOutline; +export var TiCalendar: typeof _TiCalendar; +export var TiCalenderOutline: typeof _TiCalenderOutline; +export var TiCalender: typeof _TiCalender; +export var TiCameraOutline: typeof _TiCameraOutline; +export var TiCamera: typeof _TiCamera; +export var TiCancelOutline: typeof _TiCancelOutline; +export var TiCancel: typeof _TiCancel; +export var TiChartAreaOutline: typeof _TiChartAreaOutline; +export var TiChartArea: typeof _TiChartArea; +export var TiChartBarOutline: typeof _TiChartBarOutline; +export var TiChartBar: typeof _TiChartBar; +export var TiChartLineOutline: typeof _TiChartLineOutline; +export var TiChartLine: typeof _TiChartLine; +export var TiChartPieOutline: typeof _TiChartPieOutline; +export var TiChartPie: typeof _TiChartPie; +export var TiChevronLeftOutline: typeof _TiChevronLeftOutline; +export var TiChevronLeft: typeof _TiChevronLeft; +export var TiChevronRightOutline: typeof _TiChevronRightOutline; +export var TiChevronRight: typeof _TiChevronRight; +export var TiClipboard: typeof _TiClipboard; +export var TiCloudStorageOutline: typeof _TiCloudStorageOutline; +export var TiCloudStorage: typeof _TiCloudStorage; +export var TiCodeOutline: typeof _TiCodeOutline; +export var TiCode: typeof _TiCode; +export var TiCoffee: typeof _TiCoffee; +export var TiCogOutline: typeof _TiCogOutline; +export var TiCog: typeof _TiCog; +export var TiCompass: typeof _TiCompass; +export var TiContacts: typeof _TiContacts; +export var TiCreditCard: typeof _TiCreditCard; +export var TiCross: typeof _TiCross; +export var TiCss3: typeof _TiCss3; +export var TiDatabase: typeof _TiDatabase; +export var TiDeleteOutline: typeof _TiDeleteOutline; +export var TiDelete: typeof _TiDelete; +export var TiDeviceDesktop: typeof _TiDeviceDesktop; +export var TiDeviceLaptop: typeof _TiDeviceLaptop; +export var TiDevicePhone: typeof _TiDevicePhone; +export var TiDeviceTablet: typeof _TiDeviceTablet; +export var TiDirections: typeof _TiDirections; +export var TiDivideOutline: typeof _TiDivideOutline; +export var TiDivide: typeof _TiDivide; +export var TiDocumentAdd: typeof _TiDocumentAdd; +export var TiDocumentDelete: typeof _TiDocumentDelete; +export var TiDocumentText: typeof _TiDocumentText; +export var TiDocument: typeof _TiDocument; +export var TiDownloadOutline: typeof _TiDownloadOutline; +export var TiDownload: typeof _TiDownload; +export var TiDropbox: typeof _TiDropbox; +export var TiEdit: typeof _TiEdit; +export var TiEjectOutline: typeof _TiEjectOutline; +export var TiEject: typeof _TiEject; +export var TiEqualsOutline: typeof _TiEqualsOutline; +export var TiEquals: typeof _TiEquals; +export var TiExportOutline: typeof _TiExportOutline; +export var TiExport: typeof _TiExport; +export var TiEyeOutline: typeof _TiEyeOutline; +export var TiEye: typeof _TiEye; +export var TiFeather: typeof _TiFeather; +export var TiFilm: typeof _TiFilm; +export var TiFilter: typeof _TiFilter; +export var TiFlagOutline: typeof _TiFlagOutline; +export var TiFlag: typeof _TiFlag; +export var TiFlashOutline: typeof _TiFlashOutline; +export var TiFlash: typeof _TiFlash; +export var TiFlowChildren: typeof _TiFlowChildren; +export var TiFlowMerge: typeof _TiFlowMerge; +export var TiFlowParallel: typeof _TiFlowParallel; +export var TiFlowSwitch: typeof _TiFlowSwitch; +export var TiFolderAdd: typeof _TiFolderAdd; +export var TiFolderDelete: typeof _TiFolderDelete; +export var TiFolderOpen: typeof _TiFolderOpen; +export var TiFolder: typeof _TiFolder; +export var TiGift: typeof _TiGift; +export var TiGlobeOutline: typeof _TiGlobeOutline; +export var TiGlobe: typeof _TiGlobe; +export var TiGroupOutline: typeof _TiGroupOutline; +export var TiGroup: typeof _TiGroup; +export var TiHeadphones: typeof _TiHeadphones; +export var TiHeartFullOutline: typeof _TiHeartFullOutline; +export var TiHeartHalfOutline: typeof _TiHeartHalfOutline; +export var TiHeartOutline: typeof _TiHeartOutline; +export var TiHeart: typeof _TiHeart; +export var TiHomeOutline: typeof _TiHomeOutline; +export var TiHome: typeof _TiHome; +export var TiHtml5: typeof _TiHtml5; +export var TiImageOutline: typeof _TiImageOutline; +export var TiImage: typeof _TiImage; +export var TiInfinityOutline: typeof _TiInfinityOutline; +export var TiInfinity: typeof _TiInfinity; +export var TiInfoLargeOutline: typeof _TiInfoLargeOutline; +export var TiInfoLarge: typeof _TiInfoLarge; +export var TiInfoOutline: typeof _TiInfoOutline; +export var TiInfo: typeof _TiInfo; +export var TiInputCheckedOutline: typeof _TiInputCheckedOutline; +export var TiInputChecked: typeof _TiInputChecked; +export var TiKeyOutline: typeof _TiKeyOutline; +export var TiKey: typeof _TiKey; +export var TiKeyboard: typeof _TiKeyboard; +export var TiLeaf: typeof _TiLeaf; +export var TiLightbulb: typeof _TiLightbulb; +export var TiLinkOutline: typeof _TiLinkOutline; +export var TiLink: typeof _TiLink; +export var TiLocationArrowOutline: typeof _TiLocationArrowOutline; +export var TiLocationArrow: typeof _TiLocationArrow; +export var TiLocationOutline: typeof _TiLocationOutline; +export var TiLocation: typeof _TiLocation; +export var TiLockClosedOutline: typeof _TiLockClosedOutline; +export var TiLockClosed: typeof _TiLockClosed; +export var TiLockOpenOutline: typeof _TiLockOpenOutline; +export var TiLockOpen: typeof _TiLockOpen; +export var TiMail: typeof _TiMail; +export var TiMap: typeof _TiMap; +export var TiMediaEjectOutline: typeof _TiMediaEjectOutline; +export var TiMediaEject: typeof _TiMediaEject; +export var TiMediaFastForwardOutline: typeof _TiMediaFastForwardOutline; +export var TiMediaFastForward: typeof _TiMediaFastForward; +export var TiMediaPauseOutline: typeof _TiMediaPauseOutline; +export var TiMediaPause: typeof _TiMediaPause; +export var TiMediaPlayOutline: typeof _TiMediaPlayOutline; +export var TiMediaPlayReverseOutline: typeof _TiMediaPlayReverseOutline; +export var TiMediaPlayReverse: typeof _TiMediaPlayReverse; +export var TiMediaPlay: typeof _TiMediaPlay; +export var TiMediaRecordOutline: typeof _TiMediaRecordOutline; +export var TiMediaRecord: typeof _TiMediaRecord; +export var TiMediaRewindOutline: typeof _TiMediaRewindOutline; +export var TiMediaRewind: typeof _TiMediaRewind; +export var TiMediaStopOutline: typeof _TiMediaStopOutline; +export var TiMediaStop: typeof _TiMediaStop; +export var TiMessageTyping: typeof _TiMessageTyping; +export var TiMessage: typeof _TiMessage; +export var TiMessages: typeof _TiMessages; +export var TiMicrophoneOutline: typeof _TiMicrophoneOutline; +export var TiMicrophone: typeof _TiMicrophone; +export var TiMinusOutline: typeof _TiMinusOutline; +export var TiMinus: typeof _TiMinus; +export var TiMortarBoard: typeof _TiMortarBoard; +export var TiNews: typeof _TiNews; +export var TiNotesOutline: typeof _TiNotesOutline; +export var TiNotes: typeof _TiNotes; +export var TiPen: typeof _TiPen; +export var TiPencil: typeof _TiPencil; +export var TiPhoneOutline: typeof _TiPhoneOutline; +export var TiPhone: typeof _TiPhone; +export var TiPiOutline: typeof _TiPiOutline; +export var TiPi: typeof _TiPi; +export var TiPinOutline: typeof _TiPinOutline; +export var TiPin: typeof _TiPin; +export var TiPipette: typeof _TiPipette; +export var TiPlaneOutline: typeof _TiPlaneOutline; +export var TiPlane: typeof _TiPlane; +export var TiPlug: typeof _TiPlug; +export var TiPlusOutline: typeof _TiPlusOutline; +export var TiPlus: typeof _TiPlus; +export var TiPointOfInterestOutline: typeof _TiPointOfInterestOutline; +export var TiPointOfInterest: typeof _TiPointOfInterest; +export var TiPowerOutline: typeof _TiPowerOutline; +export var TiPower: typeof _TiPower; +export var TiPrinter: typeof _TiPrinter; +export var TiPuzzleOutline: typeof _TiPuzzleOutline; +export var TiPuzzle: typeof _TiPuzzle; +export var TiRadarOutline: typeof _TiRadarOutline; +export var TiRadar: typeof _TiRadar; +export var TiRefreshOutline: typeof _TiRefreshOutline; +export var TiRefresh: typeof _TiRefresh; +export var TiRssOutline: typeof _TiRssOutline; +export var TiRss: typeof _TiRss; +export var TiScissorsOutline: typeof _TiScissorsOutline; +export var TiScissors: typeof _TiScissors; +export var TiShoppingBag: typeof _TiShoppingBag; +export var TiShoppingCart: typeof _TiShoppingCart; +export var TiSocialAtCircular: typeof _TiSocialAtCircular; +export var TiSocialDribbbleCircular: typeof _TiSocialDribbbleCircular; +export var TiSocialDribbble: typeof _TiSocialDribbble; +export var TiSocialFacebookCircular: typeof _TiSocialFacebookCircular; +export var TiSocialFacebook: typeof _TiSocialFacebook; +export var TiSocialFlickrCircular: typeof _TiSocialFlickrCircular; +export var TiSocialFlickr: typeof _TiSocialFlickr; +export var TiSocialGithubCircular: typeof _TiSocialGithubCircular; +export var TiSocialGithub: typeof _TiSocialGithub; +export var TiSocialGooglePlusCircular: typeof _TiSocialGooglePlusCircular; +export var TiSocialGooglePlus: typeof _TiSocialGooglePlus; +export var TiSocialInstagramCircular: typeof _TiSocialInstagramCircular; +export var TiSocialInstagram: typeof _TiSocialInstagram; +export var TiSocialLastFmCircular: typeof _TiSocialLastFmCircular; +export var TiSocialLastFm: typeof _TiSocialLastFm; +export var TiSocialLinkedinCircular: typeof _TiSocialLinkedinCircular; +export var TiSocialLinkedin: typeof _TiSocialLinkedin; +export var TiSocialPinterestCircular: typeof _TiSocialPinterestCircular; +export var TiSocialPinterest: typeof _TiSocialPinterest; +export var TiSocialSkypeOutline: typeof _TiSocialSkypeOutline; +export var TiSocialSkype: typeof _TiSocialSkype; +export var TiSocialTumblerCircular: typeof _TiSocialTumblerCircular; +export var TiSocialTumbler: typeof _TiSocialTumbler; +export var TiSocialTwitterCircular: typeof _TiSocialTwitterCircular; +export var TiSocialTwitter: typeof _TiSocialTwitter; +export var TiSocialVimeoCircular: typeof _TiSocialVimeoCircular; +export var TiSocialVimeo: typeof _TiSocialVimeo; +export var TiSocialYoutubeCircular: typeof _TiSocialYoutubeCircular; +export var TiSocialYoutube: typeof _TiSocialYoutube; +export var TiSortAlphabeticallyOutline: typeof _TiSortAlphabeticallyOutline; +export var TiSortAlphabetically: typeof _TiSortAlphabetically; +export var TiSortNumericallyOutline: typeof _TiSortNumericallyOutline; +export var TiSortNumerically: typeof _TiSortNumerically; +export var TiSpannerOutline: typeof _TiSpannerOutline; +export var TiSpanner: typeof _TiSpanner; +export var TiSpiral: typeof _TiSpiral; +export var TiStarFullOutline: typeof _TiStarFullOutline; +export var TiStarHalfOutline: typeof _TiStarHalfOutline; +export var TiStarHalf: typeof _TiStarHalf; +export var TiStarOutline: typeof _TiStarOutline; +export var TiStar: typeof _TiStar; +export var TiStarburstOutline: typeof _TiStarburstOutline; +export var TiStarburst: typeof _TiStarburst; +export var TiStopwatch: typeof _TiStopwatch; +export var TiSupport: typeof _TiSupport; +export var TiTabsOutline: typeof _TiTabsOutline; +export var TiTag: typeof _TiTag; +export var TiTags: typeof _TiTags; +export var TiThLargeOutline: typeof _TiThLargeOutline; +export var TiThLarge: typeof _TiThLarge; +export var TiThListOutline: typeof _TiThListOutline; +export var TiThList: typeof _TiThList; +export var TiThMenuOutline: typeof _TiThMenuOutline; +export var TiThMenu: typeof _TiThMenu; +export var TiThSmallOutline: typeof _TiThSmallOutline; +export var TiThSmall: typeof _TiThSmall; +export var TiThermometer: typeof _TiThermometer; +export var TiThumbsDown: typeof _TiThumbsDown; +export var TiThumbsOk: typeof _TiThumbsOk; +export var TiThumbsUp: typeof _TiThumbsUp; +export var TiTickOutline: typeof _TiTickOutline; +export var TiTick: typeof _TiTick; +export var TiTicket: typeof _TiTicket; +export var TiTime: typeof _TiTime; +export var TiTimesOutline: typeof _TiTimesOutline; +export var TiTimes: typeof _TiTimes; +export var TiTrash: typeof _TiTrash; +export var TiTree: typeof _TiTree; +export var TiUploadOutline: typeof _TiUploadOutline; +export var TiUpload: typeof _TiUpload; +export var TiUserAddOutline: typeof _TiUserAddOutline; +export var TiUserAdd: typeof _TiUserAdd; +export var TiUserDeleteOutline: typeof _TiUserDeleteOutline; +export var TiUserDelete: typeof _TiUserDelete; +export var TiUserOutline: typeof _TiUserOutline; +export var TiUser: typeof _TiUser; +export var TiVendorAndroid: typeof _TiVendorAndroid; +export var TiVendorApple: typeof _TiVendorApple; +export var TiVendorMicrosoft: typeof _TiVendorMicrosoft; +export var TiVideoOutline: typeof _TiVideoOutline; +export var TiVideo: typeof _TiVideo; +export var TiVolumeDown: typeof _TiVolumeDown; +export var TiVolumeMute: typeof _TiVolumeMute; +export var TiVolumeUp: typeof _TiVolumeUp; +export var TiVolume: typeof _TiVolume; +export var TiWarningOutline: typeof _TiWarningOutline; +export var TiWarning: typeof _TiWarning; +export var TiWatch: typeof _TiWatch; +export var TiWavesOutline: typeof _TiWavesOutline; +export var TiWaves: typeof _TiWaves; +export var TiWeatherCloudy: typeof _TiWeatherCloudy; +export var TiWeatherDownpour: typeof _TiWeatherDownpour; +export var TiWeatherNight: typeof _TiWeatherNight; +export var TiWeatherPartlySunny: typeof _TiWeatherPartlySunny; +export var TiWeatherShower: typeof _TiWeatherShower; +export var TiWeatherSnow: typeof _TiWeatherSnow; +export var TiWeatherStormy: typeof _TiWeatherStormy; +export var TiWeatherSunny: typeof _TiWeatherSunny; +export var TiWeatherWindyCloudy: typeof _TiWeatherWindyCloudy; +export var TiWeatherWindy: typeof _TiWeatherWindy; +export var TiWiFiOutline: typeof _TiWiFiOutline; +export var TiWiFi: typeof _TiWiFi; +export var TiWine: typeof _TiWine; +export var TiWorldOutline: typeof _TiWorldOutline; +export var TiWorld: typeof _TiWorld; +export var TiZoomInOutline: typeof _TiZoomInOutline; +export var TiZoomIn: typeof _TiZoomIn; +export var TiZoomOutOutline: typeof _TiZoomOutOutline; +export var TiZoomOut: typeof _TiZoomOut; +export var TiZoomOutline: typeof _TiZoomOutline; +export var TiZoom: typeof _TiZoom; \ No newline at end of file diff --git a/react-icons/ti/infinity-outline.d.ts b/react-icons/ti/infinity-outline.d.ts new file mode 100644 index 0000000000..99f4df44ec --- /dev/null +++ b/react-icons/ti/infinity-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfinityOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/infinity.d.ts b/react-icons/ti/infinity.d.ts new file mode 100644 index 0000000000..cd61ba08e9 --- /dev/null +++ b/react-icons/ti/infinity.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfinity extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-large-outline.d.ts b/react-icons/ti/info-large-outline.d.ts new file mode 100644 index 0000000000..7c8ea2ce3b --- /dev/null +++ b/react-icons/ti/info-large-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfoLargeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-large.d.ts b/react-icons/ti/info-large.d.ts new file mode 100644 index 0000000000..d041ff5004 --- /dev/null +++ b/react-icons/ti/info-large.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfoLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-outline.d.ts b/react-icons/ti/info-outline.d.ts new file mode 100644 index 0000000000..7730a94e80 --- /dev/null +++ b/react-icons/ti/info-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info.d.ts b/react-icons/ti/info.d.ts new file mode 100644 index 0000000000..910e7b78be --- /dev/null +++ b/react-icons/ti/info.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/input-checked-outline.d.ts b/react-icons/ti/input-checked-outline.d.ts new file mode 100644 index 0000000000..0ae10c5aed --- /dev/null +++ b/react-icons/ti/input-checked-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInputCheckedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/input-checked.d.ts b/react-icons/ti/input-checked.d.ts new file mode 100644 index 0000000000..05e5d8e863 --- /dev/null +++ b/react-icons/ti/input-checked.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiInputChecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/key-outline.d.ts b/react-icons/ti/key-outline.d.ts new file mode 100644 index 0000000000..2d04dd40f8 --- /dev/null +++ b/react-icons/ti/key-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiKeyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/key.d.ts b/react-icons/ti/key.d.ts new file mode 100644 index 0000000000..153334362e --- /dev/null +++ b/react-icons/ti/key.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/keyboard.d.ts b/react-icons/ti/keyboard.d.ts new file mode 100644 index 0000000000..c08d26f31b --- /dev/null +++ b/react-icons/ti/keyboard.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/leaf.d.ts b/react-icons/ti/leaf.d.ts new file mode 100644 index 0000000000..ff1e20feed --- /dev/null +++ b/react-icons/ti/leaf.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lightbulb.d.ts b/react-icons/ti/lightbulb.d.ts new file mode 100644 index 0000000000..00aa241f89 --- /dev/null +++ b/react-icons/ti/lightbulb.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/link-outline.d.ts b/react-icons/ti/link-outline.d.ts new file mode 100644 index 0000000000..aa88dbf990 --- /dev/null +++ b/react-icons/ti/link-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLinkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/link.d.ts b/react-icons/ti/link.d.ts new file mode 100644 index 0000000000..88dedeec88 --- /dev/null +++ b/react-icons/ti/link.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-arrow-outline.d.ts b/react-icons/ti/location-arrow-outline.d.ts new file mode 100644 index 0000000000..de09dd0674 --- /dev/null +++ b/react-icons/ti/location-arrow-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLocationArrowOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-arrow.d.ts b/react-icons/ti/location-arrow.d.ts new file mode 100644 index 0000000000..822b6c34bd --- /dev/null +++ b/react-icons/ti/location-arrow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLocationArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-outline.d.ts b/react-icons/ti/location-outline.d.ts new file mode 100644 index 0000000000..8ad13faca7 --- /dev/null +++ b/react-icons/ti/location-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLocationOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location.d.ts b/react-icons/ti/location.d.ts new file mode 100644 index 0000000000..6b6f1f2053 --- /dev/null +++ b/react-icons/ti/location.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-closed-outline.d.ts b/react-icons/ti/lock-closed-outline.d.ts new file mode 100644 index 0000000000..22bba33c82 --- /dev/null +++ b/react-icons/ti/lock-closed-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLockClosedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-closed.d.ts b/react-icons/ti/lock-closed.d.ts new file mode 100644 index 0000000000..941292bc3f --- /dev/null +++ b/react-icons/ti/lock-closed.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLockClosed extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-open-outline.d.ts b/react-icons/ti/lock-open-outline.d.ts new file mode 100644 index 0000000000..a003f56fc8 --- /dev/null +++ b/react-icons/ti/lock-open-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLockOpenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-open.d.ts b/react-icons/ti/lock-open.d.ts new file mode 100644 index 0000000000..793afc929d --- /dev/null +++ b/react-icons/ti/lock-open.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiLockOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/mail.d.ts b/react-icons/ti/mail.d.ts new file mode 100644 index 0000000000..50e22df8f0 --- /dev/null +++ b/react-icons/ti/mail.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/map.d.ts b/react-icons/ti/map.d.ts new file mode 100644 index 0000000000..a4232ab434 --- /dev/null +++ b/react-icons/ti/map.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-eject-outline.d.ts b/react-icons/ti/media-eject-outline.d.ts new file mode 100644 index 0000000000..f4a4ec314d --- /dev/null +++ b/react-icons/ti/media-eject-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaEjectOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-eject.d.ts b/react-icons/ti/media-eject.d.ts new file mode 100644 index 0000000000..aae290207f --- /dev/null +++ b/react-icons/ti/media-eject.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-fast-forward-outline.d.ts b/react-icons/ti/media-fast-forward-outline.d.ts new file mode 100644 index 0000000000..9fd3a0b44c --- /dev/null +++ b/react-icons/ti/media-fast-forward-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaFastForwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-fast-forward.d.ts b/react-icons/ti/media-fast-forward.d.ts new file mode 100644 index 0000000000..f96582a23f --- /dev/null +++ b/react-icons/ti/media-fast-forward.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-pause-outline.d.ts b/react-icons/ti/media-pause-outline.d.ts new file mode 100644 index 0000000000..2488cb7731 --- /dev/null +++ b/react-icons/ti/media-pause-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPauseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-pause.d.ts b/react-icons/ti/media-pause.d.ts new file mode 100644 index 0000000000..07e23dc8c5 --- /dev/null +++ b/react-icons/ti/media-pause.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-outline.d.ts b/react-icons/ti/media-play-outline.d.ts new file mode 100644 index 0000000000..db49c26a4b --- /dev/null +++ b/react-icons/ti/media-play-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPlayOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-reverse-outline.d.ts b/react-icons/ti/media-play-reverse-outline.d.ts new file mode 100644 index 0000000000..1390231aec --- /dev/null +++ b/react-icons/ti/media-play-reverse-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPlayReverseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-reverse.d.ts b/react-icons/ti/media-play-reverse.d.ts new file mode 100644 index 0000000000..ebd83c738a --- /dev/null +++ b/react-icons/ti/media-play-reverse.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPlayReverse extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play.d.ts b/react-icons/ti/media-play.d.ts new file mode 100644 index 0000000000..87134282a9 --- /dev/null +++ b/react-icons/ti/media-play.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-record-outline.d.ts b/react-icons/ti/media-record-outline.d.ts new file mode 100644 index 0000000000..012aaebf1d --- /dev/null +++ b/react-icons/ti/media-record-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaRecordOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-record.d.ts b/react-icons/ti/media-record.d.ts new file mode 100644 index 0000000000..f94da12a9e --- /dev/null +++ b/react-icons/ti/media-record.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-rewind-outline.d.ts b/react-icons/ti/media-rewind-outline.d.ts new file mode 100644 index 0000000000..506a37639e --- /dev/null +++ b/react-icons/ti/media-rewind-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaRewindOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-rewind.d.ts b/react-icons/ti/media-rewind.d.ts new file mode 100644 index 0000000000..dec64cff1a --- /dev/null +++ b/react-icons/ti/media-rewind.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-stop-outline.d.ts b/react-icons/ti/media-stop-outline.d.ts new file mode 100644 index 0000000000..cecc1238b6 --- /dev/null +++ b/react-icons/ti/media-stop-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaStopOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-stop.d.ts b/react-icons/ti/media-stop.d.ts new file mode 100644 index 0000000000..2dc50bd65a --- /dev/null +++ b/react-icons/ti/media-stop.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMediaStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/message-typing.d.ts b/react-icons/ti/message-typing.d.ts new file mode 100644 index 0000000000..559edc55b2 --- /dev/null +++ b/react-icons/ti/message-typing.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMessageTyping extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/message.d.ts b/react-icons/ti/message.d.ts new file mode 100644 index 0000000000..66b35f3436 --- /dev/null +++ b/react-icons/ti/message.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMessage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/messages.d.ts b/react-icons/ti/messages.d.ts new file mode 100644 index 0000000000..bc34ba77c5 --- /dev/null +++ b/react-icons/ti/messages.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMessages extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/microphone-outline.d.ts b/react-icons/ti/microphone-outline.d.ts new file mode 100644 index 0000000000..576c405276 --- /dev/null +++ b/react-icons/ti/microphone-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMicrophoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/microphone.d.ts b/react-icons/ti/microphone.d.ts new file mode 100644 index 0000000000..ff42d8d24e --- /dev/null +++ b/react-icons/ti/microphone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/minus-outline.d.ts b/react-icons/ti/minus-outline.d.ts new file mode 100644 index 0000000000..4c58f8b1f7 --- /dev/null +++ b/react-icons/ti/minus-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMinusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/minus.d.ts b/react-icons/ti/minus.d.ts new file mode 100644 index 0000000000..6bc72816ee --- /dev/null +++ b/react-icons/ti/minus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/mortar-board.d.ts b/react-icons/ti/mortar-board.d.ts new file mode 100644 index 0000000000..77306e7798 --- /dev/null +++ b/react-icons/ti/mortar-board.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiMortarBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/news.d.ts b/react-icons/ti/news.d.ts new file mode 100644 index 0000000000..064ddd778c --- /dev/null +++ b/react-icons/ti/news.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiNews extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/notes-outline.d.ts b/react-icons/ti/notes-outline.d.ts new file mode 100644 index 0000000000..c8c828dec2 --- /dev/null +++ b/react-icons/ti/notes-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiNotesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/notes.d.ts b/react-icons/ti/notes.d.ts new file mode 100644 index 0000000000..302a40958a --- /dev/null +++ b/react-icons/ti/notes.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pen.d.ts b/react-icons/ti/pen.d.ts new file mode 100644 index 0000000000..48e1f2769d --- /dev/null +++ b/react-icons/ti/pen.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pencil.d.ts b/react-icons/ti/pencil.d.ts new file mode 100644 index 0000000000..b87c34f011 --- /dev/null +++ b/react-icons/ti/pencil.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/phone-outline.d.ts b/react-icons/ti/phone-outline.d.ts new file mode 100644 index 0000000000..701be542a6 --- /dev/null +++ b/react-icons/ti/phone-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPhoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/phone.d.ts b/react-icons/ti/phone.d.ts new file mode 100644 index 0000000000..edbc041074 --- /dev/null +++ b/react-icons/ti/phone.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pi-outline.d.ts b/react-icons/ti/pi-outline.d.ts new file mode 100644 index 0000000000..091b8d9326 --- /dev/null +++ b/react-icons/ti/pi-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPiOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pi.d.ts b/react-icons/ti/pi.d.ts new file mode 100644 index 0000000000..6ebd0d14d9 --- /dev/null +++ b/react-icons/ti/pi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPi extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pin-outline.d.ts b/react-icons/ti/pin-outline.d.ts new file mode 100644 index 0000000000..67493da5ad --- /dev/null +++ b/react-icons/ti/pin-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pin.d.ts b/react-icons/ti/pin.d.ts new file mode 100644 index 0000000000..2f57819616 --- /dev/null +++ b/react-icons/ti/pin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pipette.d.ts b/react-icons/ti/pipette.d.ts new file mode 100644 index 0000000000..8e170a3cf0 --- /dev/null +++ b/react-icons/ti/pipette.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPipette extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plane-outline.d.ts b/react-icons/ti/plane-outline.d.ts new file mode 100644 index 0000000000..b03ec32fa7 --- /dev/null +++ b/react-icons/ti/plane-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPlaneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plane.d.ts b/react-icons/ti/plane.d.ts new file mode 100644 index 0000000000..94859c916f --- /dev/null +++ b/react-icons/ti/plane.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plug.d.ts b/react-icons/ti/plug.d.ts new file mode 100644 index 0000000000..72bf334ba4 --- /dev/null +++ b/react-icons/ti/plug.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plus-outline.d.ts b/react-icons/ti/plus-outline.d.ts new file mode 100644 index 0000000000..90f94429bd --- /dev/null +++ b/react-icons/ti/plus-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPlusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plus.d.ts b/react-icons/ti/plus.d.ts new file mode 100644 index 0000000000..67da8332a9 --- /dev/null +++ b/react-icons/ti/plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/point-of-interest-outline.d.ts b/react-icons/ti/point-of-interest-outline.d.ts new file mode 100644 index 0000000000..2524c60855 --- /dev/null +++ b/react-icons/ti/point-of-interest-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPointOfInterestOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/point-of-interest.d.ts b/react-icons/ti/point-of-interest.d.ts new file mode 100644 index 0000000000..034fd2d631 --- /dev/null +++ b/react-icons/ti/point-of-interest.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPointOfInterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/power-outline.d.ts b/react-icons/ti/power-outline.d.ts new file mode 100644 index 0000000000..29c1297149 --- /dev/null +++ b/react-icons/ti/power-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPowerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/power.d.ts b/react-icons/ti/power.d.ts new file mode 100644 index 0000000000..f5c1ef8761 --- /dev/null +++ b/react-icons/ti/power.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/printer.d.ts b/react-icons/ti/printer.d.ts new file mode 100644 index 0000000000..b22a9adce5 --- /dev/null +++ b/react-icons/ti/printer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/puzzle-outline.d.ts b/react-icons/ti/puzzle-outline.d.ts new file mode 100644 index 0000000000..fc35550aac --- /dev/null +++ b/react-icons/ti/puzzle-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPuzzleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/puzzle.d.ts b/react-icons/ti/puzzle.d.ts new file mode 100644 index 0000000000..4f200af790 --- /dev/null +++ b/react-icons/ti/puzzle.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiPuzzle extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/radar-outline.d.ts b/react-icons/ti/radar-outline.d.ts new file mode 100644 index 0000000000..3d78fe41cc --- /dev/null +++ b/react-icons/ti/radar-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRadarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/radar.d.ts b/react-icons/ti/radar.d.ts new file mode 100644 index 0000000000..0705f0b4c9 --- /dev/null +++ b/react-icons/ti/radar.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRadar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/refresh-outline.d.ts b/react-icons/ti/refresh-outline.d.ts new file mode 100644 index 0000000000..4c49aa6958 --- /dev/null +++ b/react-icons/ti/refresh-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRefreshOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/refresh.d.ts b/react-icons/ti/refresh.d.ts new file mode 100644 index 0000000000..597b6ce3f7 --- /dev/null +++ b/react-icons/ti/refresh.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/rss-outline.d.ts b/react-icons/ti/rss-outline.d.ts new file mode 100644 index 0000000000..4a8815516c --- /dev/null +++ b/react-icons/ti/rss-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRssOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/rss.d.ts b/react-icons/ti/rss.d.ts new file mode 100644 index 0000000000..bd7896bb2f --- /dev/null +++ b/react-icons/ti/rss.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/scissors-outline.d.ts b/react-icons/ti/scissors-outline.d.ts new file mode 100644 index 0000000000..be3c744160 --- /dev/null +++ b/react-icons/ti/scissors-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiScissorsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/scissors.d.ts b/react-icons/ti/scissors.d.ts new file mode 100644 index 0000000000..c580e89b36 --- /dev/null +++ b/react-icons/ti/scissors.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiScissors extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/shopping-bag.d.ts b/react-icons/ti/shopping-bag.d.ts new file mode 100644 index 0000000000..7fb312ff26 --- /dev/null +++ b/react-icons/ti/shopping-bag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiShoppingBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/shopping-cart.d.ts b/react-icons/ti/shopping-cart.d.ts new file mode 100644 index 0000000000..45346962f8 --- /dev/null +++ b/react-icons/ti/shopping-cart.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-at-circular.d.ts b/react-icons/ti/social-at-circular.d.ts new file mode 100644 index 0000000000..66589c3bdc --- /dev/null +++ b/react-icons/ti/social-at-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialAtCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-dribbble-circular.d.ts b/react-icons/ti/social-dribbble-circular.d.ts new file mode 100644 index 0000000000..d347f8c3da --- /dev/null +++ b/react-icons/ti/social-dribbble-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialDribbbleCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-dribbble.d.ts b/react-icons/ti/social-dribbble.d.ts new file mode 100644 index 0000000000..9c7f97ecff --- /dev/null +++ b/react-icons/ti/social-dribbble.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-facebook-circular.d.ts b/react-icons/ti/social-facebook-circular.d.ts new file mode 100644 index 0000000000..cf8381bf91 --- /dev/null +++ b/react-icons/ti/social-facebook-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialFacebookCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-facebook.d.ts b/react-icons/ti/social-facebook.d.ts new file mode 100644 index 0000000000..c5fb07eef6 --- /dev/null +++ b/react-icons/ti/social-facebook.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-flickr-circular.d.ts b/react-icons/ti/social-flickr-circular.d.ts new file mode 100644 index 0000000000..1b8ccf81db --- /dev/null +++ b/react-icons/ti/social-flickr-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialFlickrCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-flickr.d.ts b/react-icons/ti/social-flickr.d.ts new file mode 100644 index 0000000000..a5ec6185e4 --- /dev/null +++ b/react-icons/ti/social-flickr.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialFlickr extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-github-circular.d.ts b/react-icons/ti/social-github-circular.d.ts new file mode 100644 index 0000000000..9f56ff055b --- /dev/null +++ b/react-icons/ti/social-github-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialGithubCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-github.d.ts b/react-icons/ti/social-github.d.ts new file mode 100644 index 0000000000..4ea50420cf --- /dev/null +++ b/react-icons/ti/social-github.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-google-plus-circular.d.ts b/react-icons/ti/social-google-plus-circular.d.ts new file mode 100644 index 0000000000..8f49a49abe --- /dev/null +++ b/react-icons/ti/social-google-plus-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialGooglePlusCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-google-plus.d.ts b/react-icons/ti/social-google-plus.d.ts new file mode 100644 index 0000000000..05040796b3 --- /dev/null +++ b/react-icons/ti/social-google-plus.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialGooglePlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-instagram-circular.d.ts b/react-icons/ti/social-instagram-circular.d.ts new file mode 100644 index 0000000000..89ac3765ec --- /dev/null +++ b/react-icons/ti/social-instagram-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialInstagramCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-instagram.d.ts b/react-icons/ti/social-instagram.d.ts new file mode 100644 index 0000000000..c59385aaf8 --- /dev/null +++ b/react-icons/ti/social-instagram.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-last-fm-circular.d.ts b/react-icons/ti/social-last-fm-circular.d.ts new file mode 100644 index 0000000000..ad5629d115 --- /dev/null +++ b/react-icons/ti/social-last-fm-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialLastFmCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-last-fm.d.ts b/react-icons/ti/social-last-fm.d.ts new file mode 100644 index 0000000000..532cbe8962 --- /dev/null +++ b/react-icons/ti/social-last-fm.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialLastFm extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-linkedin-circular.d.ts b/react-icons/ti/social-linkedin-circular.d.ts new file mode 100644 index 0000000000..ee784428be --- /dev/null +++ b/react-icons/ti/social-linkedin-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialLinkedinCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-linkedin.d.ts b/react-icons/ti/social-linkedin.d.ts new file mode 100644 index 0000000000..ea6ab8842a --- /dev/null +++ b/react-icons/ti/social-linkedin.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-pinterest-circular.d.ts b/react-icons/ti/social-pinterest-circular.d.ts new file mode 100644 index 0000000000..f3a8d5fe54 --- /dev/null +++ b/react-icons/ti/social-pinterest-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialPinterestCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-pinterest.d.ts b/react-icons/ti/social-pinterest.d.ts new file mode 100644 index 0000000000..1e87668d6c --- /dev/null +++ b/react-icons/ti/social-pinterest.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-skype-outline.d.ts b/react-icons/ti/social-skype-outline.d.ts new file mode 100644 index 0000000000..eb07aadc7c --- /dev/null +++ b/react-icons/ti/social-skype-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialSkypeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-skype.d.ts b/react-icons/ti/social-skype.d.ts new file mode 100644 index 0000000000..f4cd7d2e7e --- /dev/null +++ b/react-icons/ti/social-skype.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-tumbler-circular.d.ts b/react-icons/ti/social-tumbler-circular.d.ts new file mode 100644 index 0000000000..3cb8a76816 --- /dev/null +++ b/react-icons/ti/social-tumbler-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialTumblerCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-tumbler.d.ts b/react-icons/ti/social-tumbler.d.ts new file mode 100644 index 0000000000..e5a9cdd8e1 --- /dev/null +++ b/react-icons/ti/social-tumbler.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialTumbler extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-twitter-circular.d.ts b/react-icons/ti/social-twitter-circular.d.ts new file mode 100644 index 0000000000..2e620a4b4a --- /dev/null +++ b/react-icons/ti/social-twitter-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialTwitterCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-twitter.d.ts b/react-icons/ti/social-twitter.d.ts new file mode 100644 index 0000000000..b16b20fc25 --- /dev/null +++ b/react-icons/ti/social-twitter.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-vimeo-circular.d.ts b/react-icons/ti/social-vimeo-circular.d.ts new file mode 100644 index 0000000000..1dc19b0077 --- /dev/null +++ b/react-icons/ti/social-vimeo-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialVimeoCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-vimeo.d.ts b/react-icons/ti/social-vimeo.d.ts new file mode 100644 index 0000000000..30432e4eae --- /dev/null +++ b/react-icons/ti/social-vimeo.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-youtube-circular.d.ts b/react-icons/ti/social-youtube-circular.d.ts new file mode 100644 index 0000000000..02840ae42c --- /dev/null +++ b/react-icons/ti/social-youtube-circular.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialYoutubeCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-youtube.d.ts b/react-icons/ti/social-youtube.d.ts new file mode 100644 index 0000000000..fe216972ea --- /dev/null +++ b/react-icons/ti/social-youtube.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSocialYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-alphabetically-outline.d.ts b/react-icons/ti/sort-alphabetically-outline.d.ts new file mode 100644 index 0000000000..70aa417903 --- /dev/null +++ b/react-icons/ti/sort-alphabetically-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSortAlphabeticallyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-alphabetically.d.ts b/react-icons/ti/sort-alphabetically.d.ts new file mode 100644 index 0000000000..310f4f70cf --- /dev/null +++ b/react-icons/ti/sort-alphabetically.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSortAlphabetically extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-numerically-outline.d.ts b/react-icons/ti/sort-numerically-outline.d.ts new file mode 100644 index 0000000000..d471e0dc12 --- /dev/null +++ b/react-icons/ti/sort-numerically-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSortNumericallyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-numerically.d.ts b/react-icons/ti/sort-numerically.d.ts new file mode 100644 index 0000000000..03bb5ea517 --- /dev/null +++ b/react-icons/ti/sort-numerically.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSortNumerically extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spanner-outline.d.ts b/react-icons/ti/spanner-outline.d.ts new file mode 100644 index 0000000000..af1782b6ec --- /dev/null +++ b/react-icons/ti/spanner-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSpannerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spanner.d.ts b/react-icons/ti/spanner.d.ts new file mode 100644 index 0000000000..caadbac51b --- /dev/null +++ b/react-icons/ti/spanner.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSpanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spiral.d.ts b/react-icons/ti/spiral.d.ts new file mode 100644 index 0000000000..08b6256cd0 --- /dev/null +++ b/react-icons/ti/spiral.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSpiral extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-full-outline.d.ts b/react-icons/ti/star-full-outline.d.ts new file mode 100644 index 0000000000..f0a4a21891 --- /dev/null +++ b/react-icons/ti/star-full-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarFullOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-half-outline.d.ts b/react-icons/ti/star-half-outline.d.ts new file mode 100644 index 0000000000..506d371624 --- /dev/null +++ b/react-icons/ti/star-half-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarHalfOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-half.d.ts b/react-icons/ti/star-half.d.ts new file mode 100644 index 0000000000..77b1e03ee1 --- /dev/null +++ b/react-icons/ti/star-half.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-outline.d.ts b/react-icons/ti/star-outline.d.ts new file mode 100644 index 0000000000..51761c4a8e --- /dev/null +++ b/react-icons/ti/star-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star.d.ts b/react-icons/ti/star.d.ts new file mode 100644 index 0000000000..47d9abf9f8 --- /dev/null +++ b/react-icons/ti/star.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/starburst-outline.d.ts b/react-icons/ti/starburst-outline.d.ts new file mode 100644 index 0000000000..89f22a38a0 --- /dev/null +++ b/react-icons/ti/starburst-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarburstOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/starburst.d.ts b/react-icons/ti/starburst.d.ts new file mode 100644 index 0000000000..6f704427a8 --- /dev/null +++ b/react-icons/ti/starburst.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStarburst extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/stopwatch.d.ts b/react-icons/ti/stopwatch.d.ts new file mode 100644 index 0000000000..43a9c51ee2 --- /dev/null +++ b/react-icons/ti/stopwatch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/support.d.ts b/react-icons/ti/support.d.ts new file mode 100644 index 0000000000..af36f51d0c --- /dev/null +++ b/react-icons/ti/support.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiSupport extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tabs-outline.d.ts b/react-icons/ti/tabs-outline.d.ts new file mode 100644 index 0000000000..f463ce23bd --- /dev/null +++ b/react-icons/ti/tabs-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTabsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tag.d.ts b/react-icons/ti/tag.d.ts new file mode 100644 index 0000000000..cb8d9cdced --- /dev/null +++ b/react-icons/ti/tag.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tags.d.ts b/react-icons/ti/tags.d.ts new file mode 100644 index 0000000000..003def5e02 --- /dev/null +++ b/react-icons/ti/tags.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTags extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-large-outline.d.ts b/react-icons/ti/th-large-outline.d.ts new file mode 100644 index 0000000000..476043f358 --- /dev/null +++ b/react-icons/ti/th-large-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThLargeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-large.d.ts b/react-icons/ti/th-large.d.ts new file mode 100644 index 0000000000..e8321ddc96 --- /dev/null +++ b/react-icons/ti/th-large.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-list-outline.d.ts b/react-icons/ti/th-list-outline.d.ts new file mode 100644 index 0000000000..3ade28003c --- /dev/null +++ b/react-icons/ti/th-list-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThListOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-list.d.ts b/react-icons/ti/th-list.d.ts new file mode 100644 index 0000000000..2337e49595 --- /dev/null +++ b/react-icons/ti/th-list.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThList extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-menu-outline.d.ts b/react-icons/ti/th-menu-outline.d.ts new file mode 100644 index 0000000000..e303022e52 --- /dev/null +++ b/react-icons/ti/th-menu-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThMenuOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-menu.d.ts b/react-icons/ti/th-menu.d.ts new file mode 100644 index 0000000000..a051fc81bf --- /dev/null +++ b/react-icons/ti/th-menu.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-small-outline.d.ts b/react-icons/ti/th-small-outline.d.ts new file mode 100644 index 0000000000..ee8333c8dc --- /dev/null +++ b/react-icons/ti/th-small-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThSmallOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-small.d.ts b/react-icons/ti/th-small.d.ts new file mode 100644 index 0000000000..4e44e78794 --- /dev/null +++ b/react-icons/ti/th-small.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thermometer.d.ts b/react-icons/ti/thermometer.d.ts new file mode 100644 index 0000000000..b513f44163 --- /dev/null +++ b/react-icons/ti/thermometer.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThermometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-down.d.ts b/react-icons/ti/thumbs-down.d.ts new file mode 100644 index 0000000000..23d345e4f0 --- /dev/null +++ b/react-icons/ti/thumbs-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThumbsDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-ok.d.ts b/react-icons/ti/thumbs-ok.d.ts new file mode 100644 index 0000000000..08e7421282 --- /dev/null +++ b/react-icons/ti/thumbs-ok.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThumbsOk extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-up.d.ts b/react-icons/ti/thumbs-up.d.ts new file mode 100644 index 0000000000..6a3fe07e0a --- /dev/null +++ b/react-icons/ti/thumbs-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiThumbsUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tick-outline.d.ts b/react-icons/ti/tick-outline.d.ts new file mode 100644 index 0000000000..6a5ffafd63 --- /dev/null +++ b/react-icons/ti/tick-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTickOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tick.d.ts b/react-icons/ti/tick.d.ts new file mode 100644 index 0000000000..18a354b762 --- /dev/null +++ b/react-icons/ti/tick.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/ticket.d.ts b/react-icons/ti/ticket.d.ts new file mode 100644 index 0000000000..8ac3c23ae5 --- /dev/null +++ b/react-icons/ti/ticket.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTicket extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/time.d.ts b/react-icons/ti/time.d.ts new file mode 100644 index 0000000000..4985b1ac80 --- /dev/null +++ b/react-icons/ti/time.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/times-outline.d.ts b/react-icons/ti/times-outline.d.ts new file mode 100644 index 0000000000..6d1f708dd6 --- /dev/null +++ b/react-icons/ti/times-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTimesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/times.d.ts b/react-icons/ti/times.d.ts new file mode 100644 index 0000000000..eb52e976d8 --- /dev/null +++ b/react-icons/ti/times.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTimes extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/trash.d.ts b/react-icons/ti/trash.d.ts new file mode 100644 index 0000000000..2ea6d74897 --- /dev/null +++ b/react-icons/ti/trash.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tree.d.ts b/react-icons/ti/tree.d.ts new file mode 100644 index 0000000000..8e33ecc871 --- /dev/null +++ b/react-icons/ti/tree.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiTree extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/upload-outline.d.ts b/react-icons/ti/upload-outline.d.ts new file mode 100644 index 0000000000..1598f91a33 --- /dev/null +++ b/react-icons/ti/upload-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/upload.d.ts b/react-icons/ti/upload.d.ts new file mode 100644 index 0000000000..c1397ba2b5 --- /dev/null +++ b/react-icons/ti/upload.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-add-outline.d.ts b/react-icons/ti/user-add-outline.d.ts new file mode 100644 index 0000000000..caa00e4959 --- /dev/null +++ b/react-icons/ti/user-add-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUserAddOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-add.d.ts b/react-icons/ti/user-add.d.ts new file mode 100644 index 0000000000..bd3df08c99 --- /dev/null +++ b/react-icons/ti/user-add.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUserAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-delete-outline.d.ts b/react-icons/ti/user-delete-outline.d.ts new file mode 100644 index 0000000000..7bc763000c --- /dev/null +++ b/react-icons/ti/user-delete-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUserDeleteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-delete.d.ts b/react-icons/ti/user-delete.d.ts new file mode 100644 index 0000000000..c7cedd6900 --- /dev/null +++ b/react-icons/ti/user-delete.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUserDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-outline.d.ts b/react-icons/ti/user-outline.d.ts new file mode 100644 index 0000000000..9c507402cb --- /dev/null +++ b/react-icons/ti/user-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUserOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user.d.ts b/react-icons/ti/user.d.ts new file mode 100644 index 0000000000..414ba3894b --- /dev/null +++ b/react-icons/ti/user.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-android.d.ts b/react-icons/ti/vendor-android.d.ts new file mode 100644 index 0000000000..4c57ccee33 --- /dev/null +++ b/react-icons/ti/vendor-android.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVendorAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-apple.d.ts b/react-icons/ti/vendor-apple.d.ts new file mode 100644 index 0000000000..436c2caada --- /dev/null +++ b/react-icons/ti/vendor-apple.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVendorApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-microsoft.d.ts b/react-icons/ti/vendor-microsoft.d.ts new file mode 100644 index 0000000000..10dd1a07a1 --- /dev/null +++ b/react-icons/ti/vendor-microsoft.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVendorMicrosoft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/video-outline.d.ts b/react-icons/ti/video-outline.d.ts new file mode 100644 index 0000000000..2ccf448259 --- /dev/null +++ b/react-icons/ti/video-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVideoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/video.d.ts b/react-icons/ti/video.d.ts new file mode 100644 index 0000000000..3b1a19e0f7 --- /dev/null +++ b/react-icons/ti/video.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-down.d.ts b/react-icons/ti/volume-down.d.ts new file mode 100644 index 0000000000..963d104757 --- /dev/null +++ b/react-icons/ti/volume-down.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-mute.d.ts b/react-icons/ti/volume-mute.d.ts new file mode 100644 index 0000000000..a33e76bcea --- /dev/null +++ b/react-icons/ti/volume-mute.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-up.d.ts b/react-icons/ti/volume-up.d.ts new file mode 100644 index 0000000000..9cc3c4f5f2 --- /dev/null +++ b/react-icons/ti/volume-up.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume.d.ts b/react-icons/ti/volume.d.ts new file mode 100644 index 0000000000..c61dd7c41f --- /dev/null +++ b/react-icons/ti/volume.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiVolume extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/warning-outline.d.ts b/react-icons/ti/warning-outline.d.ts new file mode 100644 index 0000000000..cef6ac7f42 --- /dev/null +++ b/react-icons/ti/warning-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWarningOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/warning.d.ts b/react-icons/ti/warning.d.ts new file mode 100644 index 0000000000..341e792948 --- /dev/null +++ b/react-icons/ti/warning.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/watch.d.ts b/react-icons/ti/watch.d.ts new file mode 100644 index 0000000000..4160fbae7e --- /dev/null +++ b/react-icons/ti/watch.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/waves-outline.d.ts b/react-icons/ti/waves-outline.d.ts new file mode 100644 index 0000000000..9bea5539fb --- /dev/null +++ b/react-icons/ti/waves-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWavesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/waves.d.ts b/react-icons/ti/waves.d.ts new file mode 100644 index 0000000000..cc2c664129 --- /dev/null +++ b/react-icons/ti/waves.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWaves extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-cloudy.d.ts b/react-icons/ti/weather-cloudy.d.ts new file mode 100644 index 0000000000..cc5399e067 --- /dev/null +++ b/react-icons/ti/weather-cloudy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-downpour.d.ts b/react-icons/ti/weather-downpour.d.ts new file mode 100644 index 0000000000..657584a211 --- /dev/null +++ b/react-icons/ti/weather-downpour.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherDownpour extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-night.d.ts b/react-icons/ti/weather-night.d.ts new file mode 100644 index 0000000000..524c0218d7 --- /dev/null +++ b/react-icons/ti/weather-night.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherNight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-partly-sunny.d.ts b/react-icons/ti/weather-partly-sunny.d.ts new file mode 100644 index 0000000000..ebc1cc3498 --- /dev/null +++ b/react-icons/ti/weather-partly-sunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherPartlySunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-shower.d.ts b/react-icons/ti/weather-shower.d.ts new file mode 100644 index 0000000000..ab787b977a --- /dev/null +++ b/react-icons/ti/weather-shower.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherShower extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-snow.d.ts b/react-icons/ti/weather-snow.d.ts new file mode 100644 index 0000000000..18ba76ac43 --- /dev/null +++ b/react-icons/ti/weather-snow.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherSnow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-stormy.d.ts b/react-icons/ti/weather-stormy.d.ts new file mode 100644 index 0000000000..18d125a931 --- /dev/null +++ b/react-icons/ti/weather-stormy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherStormy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-sunny.d.ts b/react-icons/ti/weather-sunny.d.ts new file mode 100644 index 0000000000..e067521c0c --- /dev/null +++ b/react-icons/ti/weather-sunny.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-windy-cloudy.d.ts b/react-icons/ti/weather-windy-cloudy.d.ts new file mode 100644 index 0000000000..a361569a87 --- /dev/null +++ b/react-icons/ti/weather-windy-cloudy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherWindyCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-windy.d.ts b/react-icons/ti/weather-windy.d.ts new file mode 100644 index 0000000000..d3869fbf25 --- /dev/null +++ b/react-icons/ti/weather-windy.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWeatherWindy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wi-fi-outline.d.ts b/react-icons/ti/wi-fi-outline.d.ts new file mode 100644 index 0000000000..b20aff78e6 --- /dev/null +++ b/react-icons/ti/wi-fi-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWiFiOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wi-fi.d.ts b/react-icons/ti/wi-fi.d.ts new file mode 100644 index 0000000000..d22c056e18 --- /dev/null +++ b/react-icons/ti/wi-fi.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWiFi extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wine.d.ts b/react-icons/ti/wine.d.ts new file mode 100644 index 0000000000..229c168a68 --- /dev/null +++ b/react-icons/ti/wine.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWine extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/world-outline.d.ts b/react-icons/ti/world-outline.d.ts new file mode 100644 index 0000000000..01eebc2c91 --- /dev/null +++ b/react-icons/ti/world-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWorldOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/world.d.ts b/react-icons/ti/world.d.ts new file mode 100644 index 0000000000..641377c5ee --- /dev/null +++ b/react-icons/ti/world.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiWorld extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-in-outline.d.ts b/react-icons/ti/zoom-in-outline.d.ts new file mode 100644 index 0000000000..c2bf90e19b --- /dev/null +++ b/react-icons/ti/zoom-in-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoomInOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-in.d.ts b/react-icons/ti/zoom-in.d.ts new file mode 100644 index 0000000000..4162828821 --- /dev/null +++ b/react-icons/ti/zoom-in.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoomIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-out-outline.d.ts b/react-icons/ti/zoom-out-outline.d.ts new file mode 100644 index 0000000000..040d208f96 --- /dev/null +++ b/react-icons/ti/zoom-out-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoomOutOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-out.d.ts b/react-icons/ti/zoom-out.d.ts new file mode 100644 index 0000000000..b8f83cf228 --- /dev/null +++ b/react-icons/ti/zoom-out.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoomOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-outline.d.ts b/react-icons/ti/zoom-outline.d.ts new file mode 100644 index 0000000000..acc1270230 --- /dev/null +++ b/react-icons/ti/zoom-outline.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoomOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom.d.ts b/react-icons/ti/zoom.d.ts new file mode 100644 index 0000000000..994301ba74 --- /dev/null +++ b/react-icons/ti/zoom.d.ts @@ -0,0 +1,3 @@ +import * as React from 'react'; +import { IconBaseProps } from 'react-icon-base'; +export default class TiZoom extends React.Component { } \ No newline at end of file diff --git a/react-icons/tsconfig.json b/react-icons/tsconfig.json new file mode 100644 index 0000000000..aca9aaa5aa --- /dev/null +++ b/react-icons/tsconfig.json @@ -0,0 +1,2849 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "jsx": "react", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "react-icons-tests.tsx", + "fa/index.d.ts", + "go/index.d.ts", + "io/index.d.ts", + "md/index.d.ts", + "ti/index.d.ts", + "fa/500px.d.ts", + "fa/adjust.d.ts", + "fa/adn.d.ts", + "fa/align-center.d.ts", + "fa/align-justify.d.ts", + "fa/align-left.d.ts", + "fa/align-right.d.ts", + "fa/amazon.d.ts", + "fa/ambulance.d.ts", + "fa/american-sign-language-interpreting.d.ts", + "fa/anchor.d.ts", + "fa/android.d.ts", + "fa/angellist.d.ts", + "fa/angle-double-down.d.ts", + "fa/angle-double-left.d.ts", + "fa/angle-double-right.d.ts", + "fa/angle-double-up.d.ts", + "fa/angle-down.d.ts", + "fa/angle-left.d.ts", + "fa/angle-right.d.ts", + "fa/angle-up.d.ts", + "fa/apple.d.ts", + "fa/archive.d.ts", + "fa/area-chart.d.ts", + "fa/arrow-circle-down.d.ts", + "fa/arrow-circle-left.d.ts", + "fa/arrow-circle-o-down.d.ts", + "fa/arrow-circle-o-left.d.ts", + "fa/arrow-circle-o-right.d.ts", + "fa/arrow-circle-o-up.d.ts", + "fa/arrow-circle-right.d.ts", + "fa/arrow-circle-up.d.ts", + "fa/arrow-down.d.ts", + "fa/arrow-left.d.ts", + "fa/arrow-right.d.ts", + "fa/arrow-up.d.ts", + "fa/arrows-alt.d.ts", + "fa/arrows-h.d.ts", + "fa/arrows-v.d.ts", + "fa/arrows.d.ts", + "fa/assistive-listening-systems.d.ts", + "fa/asterisk.d.ts", + "fa/at.d.ts", + "fa/audio-description.d.ts", + "fa/automobile.d.ts", + "fa/backward.d.ts", + "fa/balance-scale.d.ts", + "fa/ban.d.ts", + "fa/bank.d.ts", + "fa/bar-chart.d.ts", + "fa/barcode.d.ts", + "fa/bars.d.ts", + "fa/battery-0.d.ts", + "fa/battery-1.d.ts", + "fa/battery-2.d.ts", + "fa/battery-3.d.ts", + "fa/battery-4.d.ts", + "fa/bed.d.ts", + "fa/beer.d.ts", + "fa/behance-square.d.ts", + "fa/behance.d.ts", + "fa/bell-o.d.ts", + "fa/bell-slash-o.d.ts", + "fa/bell-slash.d.ts", + "fa/bell.d.ts", + "fa/bicycle.d.ts", + "fa/binoculars.d.ts", + "fa/birthday-cake.d.ts", + "fa/bitbucket-square.d.ts", + "fa/bitbucket.d.ts", + "fa/bitcoin.d.ts", + "fa/black-tie.d.ts", + "fa/blind.d.ts", + "fa/bluetooth-b.d.ts", + "fa/bluetooth.d.ts", + "fa/bold.d.ts", + "fa/bolt.d.ts", + "fa/bomb.d.ts", + "fa/book.d.ts", + "fa/bookmark-o.d.ts", + "fa/bookmark.d.ts", + "fa/braille.d.ts", + "fa/briefcase.d.ts", + "fa/bug.d.ts", + "fa/building-o.d.ts", + "fa/building.d.ts", + "fa/bullhorn.d.ts", + "fa/bullseye.d.ts", + "fa/bus.d.ts", + "fa/buysellads.d.ts", + "fa/cab.d.ts", + "fa/calculator.d.ts", + "fa/calendar-check-o.d.ts", + "fa/calendar-minus-o.d.ts", + "fa/calendar-o.d.ts", + "fa/calendar-plus-o.d.ts", + "fa/calendar-times-o.d.ts", + "fa/calendar.d.ts", + "fa/camera-retro.d.ts", + "fa/camera.d.ts", + "fa/caret-down.d.ts", + "fa/caret-left.d.ts", + "fa/caret-right.d.ts", + "fa/caret-square-o-down.d.ts", + "fa/caret-square-o-left.d.ts", + "fa/caret-square-o-right.d.ts", + "fa/caret-square-o-up.d.ts", + "fa/caret-up.d.ts", + "fa/cart-arrow-down.d.ts", + "fa/cart-plus.d.ts", + "fa/cc-amex.d.ts", + "fa/cc-diners-club.d.ts", + "fa/cc-discover.d.ts", + "fa/cc-jcb.d.ts", + "fa/cc-mastercard.d.ts", + "fa/cc-paypal.d.ts", + "fa/cc-stripe.d.ts", + "fa/cc-visa.d.ts", + "fa/cc.d.ts", + "fa/certificate.d.ts", + "fa/chain-broken.d.ts", + "fa/chain.d.ts", + "fa/check-circle-o.d.ts", + "fa/check-circle.d.ts", + "fa/check-square-o.d.ts", + "fa/check-square.d.ts", + "fa/check.d.ts", + "fa/chevron-circle-down.d.ts", + "fa/chevron-circle-left.d.ts", + "fa/chevron-circle-right.d.ts", + "fa/chevron-circle-up.d.ts", + "fa/chevron-down.d.ts", + "fa/chevron-left.d.ts", + "fa/chevron-right.d.ts", + "fa/chevron-up.d.ts", + "fa/child.d.ts", + "fa/chrome.d.ts", + "fa/circle-o-notch.d.ts", + "fa/circle-o.d.ts", + "fa/circle-thin.d.ts", + "fa/circle.d.ts", + "fa/clipboard.d.ts", + "fa/clock-o.d.ts", + "fa/clone.d.ts", + "fa/close.d.ts", + "fa/cloud-download.d.ts", + "fa/cloud-upload.d.ts", + "fa/cloud.d.ts", + "fa/cny.d.ts", + "fa/code-fork.d.ts", + "fa/code.d.ts", + "fa/codepen.d.ts", + "fa/codiepie.d.ts", + "fa/coffee.d.ts", + "fa/cog.d.ts", + "fa/cogs.d.ts", + "fa/columns.d.ts", + "fa/comment-o.d.ts", + "fa/comment.d.ts", + "fa/commenting-o.d.ts", + "fa/commenting.d.ts", + "fa/comments-o.d.ts", + "fa/comments.d.ts", + "fa/compass.d.ts", + "fa/compress.d.ts", + "fa/connectdevelop.d.ts", + "fa/contao.d.ts", + "fa/copy.d.ts", + "fa/copyright.d.ts", + "fa/creative-commons.d.ts", + "fa/credit-card-alt.d.ts", + "fa/credit-card.d.ts", + "fa/crop.d.ts", + "fa/crosshairs.d.ts", + "fa/css3.d.ts", + "fa/cube.d.ts", + "fa/cubes.d.ts", + "fa/cut.d.ts", + "fa/cutlery.d.ts", + "fa/dashboard.d.ts", + "fa/dashcube.d.ts", + "fa/database.d.ts", + "fa/deaf.d.ts", + "fa/dedent.d.ts", + "fa/delicious.d.ts", + "fa/desktop.d.ts", + "fa/deviantart.d.ts", + "fa/diamond.d.ts", + "fa/digg.d.ts", + "fa/dollar.d.ts", + "fa/dot-circle-o.d.ts", + "fa/download.d.ts", + "fa/dribbble.d.ts", + "fa/dropbox.d.ts", + "fa/drupal.d.ts", + "fa/edge.d.ts", + "fa/edit.d.ts", + "fa/eject.d.ts", + "fa/ellipsis-h.d.ts", + "fa/ellipsis-v.d.ts", + "fa/empire.d.ts", + "fa/envelope-o.d.ts", + "fa/envelope-square.d.ts", + "fa/envelope.d.ts", + "fa/envira.d.ts", + "fa/eraser.d.ts", + "fa/eur.d.ts", + "fa/exchange.d.ts", + "fa/exclamation-circle.d.ts", + "fa/exclamation-triangle.d.ts", + "fa/exclamation.d.ts", + "fa/expand.d.ts", + "fa/expeditedssl.d.ts", + "fa/external-link-square.d.ts", + "fa/external-link.d.ts", + "fa/eye-slash.d.ts", + "fa/eye.d.ts", + "fa/eyedropper.d.ts", + "fa/facebook-official.d.ts", + "fa/facebook-square.d.ts", + "fa/facebook.d.ts", + "fa/fast-backward.d.ts", + "fa/fast-forward.d.ts", + "fa/fax.d.ts", + "fa/feed.d.ts", + "fa/female.d.ts", + "fa/fighter-jet.d.ts", + "fa/file-archive-o.d.ts", + "fa/file-audio-o.d.ts", + "fa/file-code-o.d.ts", + "fa/file-excel-o.d.ts", + "fa/file-image-o.d.ts", + "fa/file-movie-o.d.ts", + "fa/file-o.d.ts", + "fa/file-pdf-o.d.ts", + "fa/file-powerpoint-o.d.ts", + "fa/file-text-o.d.ts", + "fa/file-text.d.ts", + "fa/file-word-o.d.ts", + "fa/file.d.ts", + "fa/film.d.ts", + "fa/filter.d.ts", + "fa/fire-extinguisher.d.ts", + "fa/fire.d.ts", + "fa/firefox.d.ts", + "fa/flag-checkered.d.ts", + "fa/flag-o.d.ts", + "fa/flag.d.ts", + "fa/flask.d.ts", + "fa/flickr.d.ts", + "fa/floppy-o.d.ts", + "fa/folder-o.d.ts", + "fa/folder-open-o.d.ts", + "fa/folder-open.d.ts", + "fa/folder.d.ts", + "fa/font.d.ts", + "fa/fonticons.d.ts", + "fa/fort-awesome.d.ts", + "fa/forumbee.d.ts", + "fa/forward.d.ts", + "fa/foursquare.d.ts", + "fa/frown-o.d.ts", + "fa/futbol-o.d.ts", + "fa/gamepad.d.ts", + "fa/gavel.d.ts", + "fa/gbp.d.ts", + "fa/genderless.d.ts", + "fa/get-pocket.d.ts", + "fa/gg-circle.d.ts", + "fa/gg.d.ts", + "fa/gift.d.ts", + "fa/git-square.d.ts", + "fa/git.d.ts", + "fa/github-alt.d.ts", + "fa/github-square.d.ts", + "fa/github.d.ts", + "fa/gitlab.d.ts", + "fa/gittip.d.ts", + "fa/glass.d.ts", + "fa/glide-g.d.ts", + "fa/glide.d.ts", + "fa/globe.d.ts", + "fa/google-plus-square.d.ts", + "fa/google-plus.d.ts", + "fa/google-wallet.d.ts", + "fa/google.d.ts", + "fa/graduation-cap.d.ts", + "fa/group.d.ts", + "fa/h-square.d.ts", + "fa/hacker-news.d.ts", + "fa/hand-grab-o.d.ts", + "fa/hand-lizard-o.d.ts", + "fa/hand-o-down.d.ts", + "fa/hand-o-left.d.ts", + "fa/hand-o-right.d.ts", + "fa/hand-o-up.d.ts", + "fa/hand-paper-o.d.ts", + "fa/hand-peace-o.d.ts", + "fa/hand-pointer-o.d.ts", + "fa/hand-scissors-o.d.ts", + "fa/hand-spock-o.d.ts", + "fa/hashtag.d.ts", + "fa/hdd-o.d.ts", + "fa/header.d.ts", + "fa/headphones.d.ts", + "fa/heart-o.d.ts", + "fa/heart.d.ts", + "fa/heartbeat.d.ts", + "fa/history.d.ts", + "fa/home.d.ts", + "fa/hospital-o.d.ts", + "fa/hourglass-1.d.ts", + "fa/hourglass-2.d.ts", + "fa/hourglass-3.d.ts", + "fa/hourglass-o.d.ts", + "fa/hourglass.d.ts", + "fa/houzz.d.ts", + "fa/html5.d.ts", + "fa/i-cursor.d.ts", + "fa/ils.d.ts", + "fa/image.d.ts", + "fa/inbox.d.ts", + "fa/indent.d.ts", + "fa/industry.d.ts", + "fa/info-circle.d.ts", + "fa/info.d.ts", + "fa/inr.d.ts", + "fa/instagram.d.ts", + "fa/internet-explorer.d.ts", + "fa/intersex.d.ts", + "fa/ioxhost.d.ts", + "fa/italic.d.ts", + "fa/joomla.d.ts", + "fa/jsfiddle.d.ts", + "fa/key.d.ts", + "fa/keyboard-o.d.ts", + "fa/krw.d.ts", + "fa/language.d.ts", + "fa/laptop.d.ts", + "fa/lastfm-square.d.ts", + "fa/lastfm.d.ts", + "fa/leaf.d.ts", + "fa/leanpub.d.ts", + "fa/lemon-o.d.ts", + "fa/level-down.d.ts", + "fa/level-up.d.ts", + "fa/life-bouy.d.ts", + "fa/lightbulb-o.d.ts", + "fa/line-chart.d.ts", + "fa/linkedin-square.d.ts", + "fa/linkedin.d.ts", + "fa/linux.d.ts", + "fa/list-alt.d.ts", + "fa/list-ol.d.ts", + "fa/list-ul.d.ts", + "fa/list.d.ts", + "fa/location-arrow.d.ts", + "fa/lock.d.ts", + "fa/long-arrow-down.d.ts", + "fa/long-arrow-left.d.ts", + "fa/long-arrow-right.d.ts", + "fa/long-arrow-up.d.ts", + "fa/low-vision.d.ts", + "fa/magic.d.ts", + "fa/magnet.d.ts", + "fa/mail-forward.d.ts", + "fa/mail-reply-all.d.ts", + "fa/mail-reply.d.ts", + "fa/male.d.ts", + "fa/map-marker.d.ts", + "fa/map-o.d.ts", + "fa/map-pin.d.ts", + "fa/map-signs.d.ts", + "fa/map.d.ts", + "fa/mars-double.d.ts", + "fa/mars-stroke-h.d.ts", + "fa/mars-stroke-v.d.ts", + "fa/mars-stroke.d.ts", + "fa/mars.d.ts", + "fa/maxcdn.d.ts", + "fa/meanpath.d.ts", + "fa/medium.d.ts", + "fa/medkit.d.ts", + "fa/meh-o.d.ts", + "fa/mercury.d.ts", + "fa/microphone-slash.d.ts", + "fa/microphone.d.ts", + "fa/minus-circle.d.ts", + "fa/minus-square-o.d.ts", + "fa/minus-square.d.ts", + "fa/minus.d.ts", + "fa/mixcloud.d.ts", + "fa/mobile.d.ts", + "fa/modx.d.ts", + "fa/money.d.ts", + "fa/moon-o.d.ts", + "fa/motorcycle.d.ts", + "fa/mouse-pointer.d.ts", + "fa/music.d.ts", + "fa/neuter.d.ts", + "fa/newspaper-o.d.ts", + "fa/object-group.d.ts", + "fa/object-ungroup.d.ts", + "fa/odnoklassniki-square.d.ts", + "fa/odnoklassniki.d.ts", + "fa/opencart.d.ts", + "fa/openid.d.ts", + "fa/opera.d.ts", + "fa/optin-monster.d.ts", + "fa/pagelines.d.ts", + "fa/paint-brush.d.ts", + "fa/paper-plane-o.d.ts", + "fa/paper-plane.d.ts", + "fa/paperclip.d.ts", + "fa/paragraph.d.ts", + "fa/pause-circle-o.d.ts", + "fa/pause-circle.d.ts", + "fa/pause.d.ts", + "fa/paw.d.ts", + "fa/paypal.d.ts", + "fa/pencil-square.d.ts", + "fa/pencil.d.ts", + "fa/percent.d.ts", + "fa/phone-square.d.ts", + "fa/phone.d.ts", + "fa/pie-chart.d.ts", + "fa/pied-piper-alt.d.ts", + "fa/pied-piper.d.ts", + "fa/pinterest-p.d.ts", + "fa/pinterest-square.d.ts", + "fa/pinterest.d.ts", + "fa/plane.d.ts", + "fa/play-circle-o.d.ts", + "fa/play-circle.d.ts", + "fa/play.d.ts", + "fa/plug.d.ts", + "fa/plus-circle.d.ts", + "fa/plus-square-o.d.ts", + "fa/plus-square.d.ts", + "fa/plus.d.ts", + "fa/power-off.d.ts", + "fa/print.d.ts", + "fa/product-hunt.d.ts", + "fa/puzzle-piece.d.ts", + "fa/qq.d.ts", + "fa/qrcode.d.ts", + "fa/question-circle-o.d.ts", + "fa/question-circle.d.ts", + "fa/question.d.ts", + "fa/quote-left.d.ts", + "fa/quote-right.d.ts", + "fa/ra.d.ts", + "fa/random.d.ts", + "fa/recycle.d.ts", + "fa/reddit-alien.d.ts", + "fa/reddit-square.d.ts", + "fa/reddit.d.ts", + "fa/refresh.d.ts", + "fa/registered.d.ts", + "fa/renren.d.ts", + "fa/repeat.d.ts", + "fa/retweet.d.ts", + "fa/road.d.ts", + "fa/rocket.d.ts", + "fa/rotate-left.d.ts", + "fa/rouble.d.ts", + "fa/rss-square.d.ts", + "fa/safari.d.ts", + "fa/scribd.d.ts", + "fa/search-minus.d.ts", + "fa/search-plus.d.ts", + "fa/search.d.ts", + "fa/sellsy.d.ts", + "fa/server.d.ts", + "fa/share-alt-square.d.ts", + "fa/share-alt.d.ts", + "fa/share-square-o.d.ts", + "fa/share-square.d.ts", + "fa/shield.d.ts", + "fa/ship.d.ts", + "fa/shirtsinbulk.d.ts", + "fa/shopping-bag.d.ts", + "fa/shopping-basket.d.ts", + "fa/shopping-cart.d.ts", + "fa/sign-in.d.ts", + "fa/sign-language.d.ts", + "fa/sign-out.d.ts", + "fa/signal.d.ts", + "fa/simplybuilt.d.ts", + "fa/sitemap.d.ts", + "fa/skyatlas.d.ts", + "fa/skype.d.ts", + "fa/slack.d.ts", + "fa/sliders.d.ts", + "fa/slideshare.d.ts", + "fa/smile-o.d.ts", + "fa/snapchat-ghost.d.ts", + "fa/snapchat-square.d.ts", + "fa/snapchat.d.ts", + "fa/sort-alpha-asc.d.ts", + "fa/sort-alpha-desc.d.ts", + "fa/sort-amount-asc.d.ts", + "fa/sort-amount-desc.d.ts", + "fa/sort-asc.d.ts", + "fa/sort-desc.d.ts", + "fa/sort-numeric-asc.d.ts", + "fa/sort-numeric-desc.d.ts", + "fa/sort.d.ts", + "fa/soundcloud.d.ts", + "fa/space-shuttle.d.ts", + "fa/spinner.d.ts", + "fa/spoon.d.ts", + "fa/spotify.d.ts", + "fa/square-o.d.ts", + "fa/square.d.ts", + "fa/stack-exchange.d.ts", + "fa/stack-overflow.d.ts", + "fa/star-half-empty.d.ts", + "fa/star-half.d.ts", + "fa/star-o.d.ts", + "fa/star.d.ts", + "fa/steam-square.d.ts", + "fa/steam.d.ts", + "fa/step-backward.d.ts", + "fa/step-forward.d.ts", + "fa/stethoscope.d.ts", + "fa/sticky-note-o.d.ts", + "fa/sticky-note.d.ts", + "fa/stop-circle-o.d.ts", + "fa/stop-circle.d.ts", + "fa/stop.d.ts", + "fa/street-view.d.ts", + "fa/strikethrough.d.ts", + "fa/stumbleupon-circle.d.ts", + "fa/stumbleupon.d.ts", + "fa/subscript.d.ts", + "fa/subway.d.ts", + "fa/suitcase.d.ts", + "fa/sun-o.d.ts", + "fa/superscript.d.ts", + "fa/table.d.ts", + "fa/tablet.d.ts", + "fa/tag.d.ts", + "fa/tags.d.ts", + "fa/tasks.d.ts", + "fa/television.d.ts", + "fa/tencent-weibo.d.ts", + "fa/terminal.d.ts", + "fa/text-height.d.ts", + "fa/text-width.d.ts", + "fa/th-large.d.ts", + "fa/th-list.d.ts", + "fa/th.d.ts", + "fa/thumb-tack.d.ts", + "fa/thumbs-down.d.ts", + "fa/thumbs-o-down.d.ts", + "fa/thumbs-o-up.d.ts", + "fa/thumbs-up.d.ts", + "fa/ticket.d.ts", + "fa/times-circle-o.d.ts", + "fa/times-circle.d.ts", + "fa/tint.d.ts", + "fa/toggle-off.d.ts", + "fa/toggle-on.d.ts", + "fa/trademark.d.ts", + "fa/train.d.ts", + "fa/transgender-alt.d.ts", + "fa/trash-o.d.ts", + "fa/trash.d.ts", + "fa/tree.d.ts", + "fa/trello.d.ts", + "fa/tripadvisor.d.ts", + "fa/trophy.d.ts", + "fa/truck.d.ts", + "fa/try.d.ts", + "fa/tty.d.ts", + "fa/tumblr-square.d.ts", + "fa/tumblr.d.ts", + "fa/twitch.d.ts", + "fa/twitter-square.d.ts", + "fa/twitter.d.ts", + "fa/umbrella.d.ts", + "fa/underline.d.ts", + "fa/universal-access.d.ts", + "fa/unlock-alt.d.ts", + "fa/unlock.d.ts", + "fa/upload.d.ts", + "fa/usb.d.ts", + "fa/user-md.d.ts", + "fa/user-plus.d.ts", + "fa/user-secret.d.ts", + "fa/user-times.d.ts", + "fa/user.d.ts", + "fa/venus-double.d.ts", + "fa/venus-mars.d.ts", + "fa/venus.d.ts", + "fa/viacoin.d.ts", + "fa/viadeo-square.d.ts", + "fa/viadeo.d.ts", + "fa/video-camera.d.ts", + "fa/vimeo-square.d.ts", + "fa/vimeo.d.ts", + "fa/vine.d.ts", + "fa/vk.d.ts", + "fa/volume-control-phone.d.ts", + "fa/volume-down.d.ts", + "fa/volume-off.d.ts", + "fa/volume-up.d.ts", + "fa/wechat.d.ts", + "fa/weibo.d.ts", + "fa/whatsapp.d.ts", + "fa/wheelchair-alt.d.ts", + "fa/wheelchair.d.ts", + "fa/wifi.d.ts", + "fa/wikipedia-w.d.ts", + "fa/windows.d.ts", + "fa/wordpress.d.ts", + "fa/wpbeginner.d.ts", + "fa/wpforms.d.ts", + "fa/wrench.d.ts", + "fa/xing-square.d.ts", + "fa/xing.d.ts", + "fa/y-combinator.d.ts", + "fa/yahoo.d.ts", + "fa/yelp.d.ts", + "fa/youtube-play.d.ts", + "fa/youtube-square.d.ts", + "fa/youtube.d.ts", + "go/alert.d.ts", + "go/alignment-align.d.ts", + "go/alignment-aligned-to.d.ts", + "go/alignment-unalign.d.ts", + "go/arrow-down.d.ts", + "go/arrow-left.d.ts", + "go/arrow-right.d.ts", + "go/arrow-small-down.d.ts", + "go/arrow-small-left.d.ts", + "go/arrow-small-right.d.ts", + "go/arrow-small-up.d.ts", + "go/arrow-up.d.ts", + "go/beer.d.ts", + "go/book.d.ts", + "go/bookmark.d.ts", + "go/briefcase.d.ts", + "go/broadcast.d.ts", + "go/browser.d.ts", + "go/bug.d.ts", + "go/calendar.d.ts", + "go/check.d.ts", + "go/checklist.d.ts", + "go/chevron-down.d.ts", + "go/chevron-left.d.ts", + "go/chevron-right.d.ts", + "go/chevron-up.d.ts", + "go/circle-slash.d.ts", + "go/circuit-board.d.ts", + "go/clippy.d.ts", + "go/clock.d.ts", + "go/cloud-download.d.ts", + "go/cloud-upload.d.ts", + "go/code.d.ts", + "go/color-mode.d.ts", + "go/comment-discussion.d.ts", + "go/comment.d.ts", + "go/credit-card.d.ts", + "go/dash.d.ts", + "go/dashboard.d.ts", + "go/database.d.ts", + "go/device-camera-video.d.ts", + "go/device-camera.d.ts", + "go/device-desktop.d.ts", + "go/device-mobile.d.ts", + "go/diff-added.d.ts", + "go/diff-ignored.d.ts", + "go/diff-modified.d.ts", + "go/diff-removed.d.ts", + "go/diff-renamed.d.ts", + "go/diff.d.ts", + "go/ellipsis.d.ts", + "go/eye.d.ts", + "go/file-binary.d.ts", + "go/file-code.d.ts", + "go/file-directory.d.ts", + "go/file-media.d.ts", + "go/file-pdf.d.ts", + "go/file-submodule.d.ts", + "go/file-symlink-directory.d.ts", + "go/file-symlink-file.d.ts", + "go/file-text.d.ts", + "go/file-zip.d.ts", + "go/flame.d.ts", + "go/fold.d.ts", + "go/gear.d.ts", + "go/gift.d.ts", + "go/gist-secret.d.ts", + "go/gist.d.ts", + "go/git-branch.d.ts", + "go/git-commit.d.ts", + "go/git-compare.d.ts", + "go/git-merge.d.ts", + "go/git-pull-request.d.ts", + "go/globe.d.ts", + "go/graph.d.ts", + "go/heart.d.ts", + "go/history.d.ts", + "go/home.d.ts", + "go/horizontal-rule.d.ts", + "go/hourglass.d.ts", + "go/hubot.d.ts", + "go/inbox.d.ts", + "go/info.d.ts", + "go/issue-closed.d.ts", + "go/issue-opened.d.ts", + "go/issue-reopened.d.ts", + "go/jersey.d.ts", + "go/jump-down.d.ts", + "go/jump-left.d.ts", + "go/jump-right.d.ts", + "go/jump-up.d.ts", + "go/key.d.ts", + "go/keyboard.d.ts", + "go/law.d.ts", + "go/light-bulb.d.ts", + "go/link-external.d.ts", + "go/link.d.ts", + "go/list-ordered.d.ts", + "go/list-unordered.d.ts", + "go/location.d.ts", + "go/lock.d.ts", + "go/logo-github.d.ts", + "go/mail-read.d.ts", + "go/mail-reply.d.ts", + "go/mail.d.ts", + "go/mark-github.d.ts", + "go/markdown.d.ts", + "go/megaphone.d.ts", + "go/mention.d.ts", + "go/microscope.d.ts", + "go/milestone.d.ts", + "go/mirror.d.ts", + "go/mortar-board.d.ts", + "go/move-down.d.ts", + "go/move-left.d.ts", + "go/move-right.d.ts", + "go/move-up.d.ts", + "go/mute.d.ts", + "go/no-newline.d.ts", + "go/octoface.d.ts", + "go/organization.d.ts", + "go/package.d.ts", + "go/paintcan.d.ts", + "go/pencil.d.ts", + "go/person.d.ts", + "go/pin.d.ts", + "go/playback-fast-forward.d.ts", + "go/playback-pause.d.ts", + "go/playback-play.d.ts", + "go/playback-rewind.d.ts", + "go/plug.d.ts", + "go/plus.d.ts", + "go/podium.d.ts", + "go/primitive-dot.d.ts", + "go/primitive-square.d.ts", + "go/pulse.d.ts", + "go/puzzle.d.ts", + "go/question.d.ts", + "go/quote.d.ts", + "go/radio-tower.d.ts", + "go/repo-clone.d.ts", + "go/repo-force-push.d.ts", + "go/repo-forked.d.ts", + "go/repo-pull.d.ts", + "go/repo-push.d.ts", + "go/repo.d.ts", + "go/rocket.d.ts", + "go/rss.d.ts", + "go/ruby.d.ts", + "go/screen-full.d.ts", + "go/screen-normal.d.ts", + "go/search.d.ts", + "go/server.d.ts", + "go/settings.d.ts", + "go/sign-in.d.ts", + "go/sign-out.d.ts", + "go/split.d.ts", + "go/squirrel.d.ts", + "go/star.d.ts", + "go/steps.d.ts", + "go/stop.d.ts", + "go/sync.d.ts", + "go/tag.d.ts", + "go/telescope.d.ts", + "go/terminal.d.ts", + "go/three-bars.d.ts", + "go/tools.d.ts", + "go/trashcan.d.ts", + "go/triangle-down.d.ts", + "go/triangle-left.d.ts", + "go/triangle-right.d.ts", + "go/triangle-up.d.ts", + "go/unfold.d.ts", + "go/unmute.d.ts", + "go/versions.d.ts", + "go/x.d.ts", + "go/zap.d.ts", + "io/alert-circled.d.ts", + "io/alert.d.ts", + "io/android-add-circle.d.ts", + "io/android-add.d.ts", + "io/android-alarm-clock.d.ts", + "io/android-alert.d.ts", + "io/android-apps.d.ts", + "io/android-archive.d.ts", + "io/android-arrow-back.d.ts", + "io/android-arrow-down.d.ts", + "io/android-arrow-dropdown-circle.d.ts", + "io/android-arrow-dropdown.d.ts", + "io/android-arrow-dropleft-circle.d.ts", + "io/android-arrow-dropleft.d.ts", + "io/android-arrow-dropright-circle.d.ts", + "io/android-arrow-dropright.d.ts", + "io/android-arrow-dropup-circle.d.ts", + "io/android-arrow-dropup.d.ts", + "io/android-arrow-forward.d.ts", + "io/android-arrow-up.d.ts", + "io/android-attach.d.ts", + "io/android-bar.d.ts", + "io/android-bicycle.d.ts", + "io/android-boat.d.ts", + "io/android-bookmark.d.ts", + "io/android-bulb.d.ts", + "io/android-bus.d.ts", + "io/android-calendar.d.ts", + "io/android-call.d.ts", + "io/android-camera.d.ts", + "io/android-cancel.d.ts", + "io/android-car.d.ts", + "io/android-cart.d.ts", + "io/android-chat.d.ts", + "io/android-checkbox-blank.d.ts", + "io/android-checkbox-outline-blank.d.ts", + "io/android-checkbox-outline.d.ts", + "io/android-checkbox.d.ts", + "io/android-checkmark-circle.d.ts", + "io/android-clipboard.d.ts", + "io/android-close.d.ts", + "io/android-cloud-circle.d.ts", + "io/android-cloud-done.d.ts", + "io/android-cloud-outline.d.ts", + "io/android-cloud.d.ts", + "io/android-color-palette.d.ts", + "io/android-compass.d.ts", + "io/android-contact.d.ts", + "io/android-contacts.d.ts", + "io/android-contract.d.ts", + "io/android-create.d.ts", + "io/android-delete.d.ts", + "io/android-desktop.d.ts", + "io/android-document.d.ts", + "io/android-done-all.d.ts", + "io/android-done.d.ts", + "io/android-download.d.ts", + "io/android-drafts.d.ts", + "io/android-exit.d.ts", + "io/android-expand.d.ts", + "io/android-favorite-outline.d.ts", + "io/android-favorite.d.ts", + "io/android-film.d.ts", + "io/android-folder-open.d.ts", + "io/android-folder.d.ts", + "io/android-funnel.d.ts", + "io/android-globe.d.ts", + "io/android-hand.d.ts", + "io/android-hangout.d.ts", + "io/android-happy.d.ts", + "io/android-home.d.ts", + "io/android-image.d.ts", + "io/android-laptop.d.ts", + "io/android-list.d.ts", + "io/android-locate.d.ts", + "io/android-lock.d.ts", + "io/android-mail.d.ts", + "io/android-map.d.ts", + "io/android-menu.d.ts", + "io/android-microphone-off.d.ts", + "io/android-microphone.d.ts", + "io/android-more-horizontal.d.ts", + "io/android-more-vertical.d.ts", + "io/android-navigate.d.ts", + "io/android-notifications-none.d.ts", + "io/android-notifications-off.d.ts", + "io/android-notifications.d.ts", + "io/android-open.d.ts", + "io/android-options.d.ts", + "io/android-people.d.ts", + "io/android-person-add.d.ts", + "io/android-person.d.ts", + "io/android-phone-landscape.d.ts", + "io/android-phone-portrait.d.ts", + "io/android-pin.d.ts", + "io/android-plane.d.ts", + "io/android-playstore.d.ts", + "io/android-print.d.ts", + "io/android-radio-button-off.d.ts", + "io/android-radio-button-on.d.ts", + "io/android-refresh.d.ts", + "io/android-remove-circle.d.ts", + "io/android-remove.d.ts", + "io/android-restaurant.d.ts", + "io/android-sad.d.ts", + "io/android-search.d.ts", + "io/android-send.d.ts", + "io/android-settings.d.ts", + "io/android-share-alt.d.ts", + "io/android-share.d.ts", + "io/android-star-half.d.ts", + "io/android-star-outline.d.ts", + "io/android-star.d.ts", + "io/android-stopwatch.d.ts", + "io/android-subway.d.ts", + "io/android-sunny.d.ts", + "io/android-sync.d.ts", + "io/android-textsms.d.ts", + "io/android-time.d.ts", + "io/android-train.d.ts", + "io/android-unlock.d.ts", + "io/android-upload.d.ts", + "io/android-volume-down.d.ts", + "io/android-volume-mute.d.ts", + "io/android-volume-off.d.ts", + "io/android-volume-up.d.ts", + "io/android-walk.d.ts", + "io/android-warning.d.ts", + "io/android-watch.d.ts", + "io/android-wifi.d.ts", + "io/aperture.d.ts", + "io/archive.d.ts", + "io/arrow-down-a.d.ts", + "io/arrow-down-b.d.ts", + "io/arrow-down-c.d.ts", + "io/arrow-expand.d.ts", + "io/arrow-graph-down-left.d.ts", + "io/arrow-graph-down-right.d.ts", + "io/arrow-graph-up-left.d.ts", + "io/arrow-graph-up-right.d.ts", + "io/arrow-left-a.d.ts", + "io/arrow-left-b.d.ts", + "io/arrow-left-c.d.ts", + "io/arrow-move.d.ts", + "io/arrow-resize.d.ts", + "io/arrow-return-left.d.ts", + "io/arrow-return-right.d.ts", + "io/arrow-right-a.d.ts", + "io/arrow-right-b.d.ts", + "io/arrow-right-c.d.ts", + "io/arrow-shrink.d.ts", + "io/arrow-swap.d.ts", + "io/arrow-up-a.d.ts", + "io/arrow-up-b.d.ts", + "io/arrow-up-c.d.ts", + "io/asterisk.d.ts", + "io/at.d.ts", + "io/backspace-outline.d.ts", + "io/backspace.d.ts", + "io/bag.d.ts", + "io/battery-charging.d.ts", + "io/battery-empty.d.ts", + "io/battery-full.d.ts", + "io/battery-half.d.ts", + "io/battery-low.d.ts", + "io/beaker.d.ts", + "io/beer.d.ts", + "io/bluetooth.d.ts", + "io/bonfire.d.ts", + "io/bookmark.d.ts", + "io/bowtie.d.ts", + "io/briefcase.d.ts", + "io/bug.d.ts", + "io/calculator.d.ts", + "io/calendar.d.ts", + "io/camera.d.ts", + "io/card.d.ts", + "io/cash.d.ts", + "io/chatbox-working.d.ts", + "io/chatbox.d.ts", + "io/chatboxes.d.ts", + "io/chatbubble-working.d.ts", + "io/chatbubble.d.ts", + "io/chatbubbles.d.ts", + "io/checkmark-circled.d.ts", + "io/checkmark-round.d.ts", + "io/checkmark.d.ts", + "io/chevron-down.d.ts", + "io/chevron-left.d.ts", + "io/chevron-right.d.ts", + "io/chevron-up.d.ts", + "io/clipboard.d.ts", + "io/clock.d.ts", + "io/close-circled.d.ts", + "io/close-round.d.ts", + "io/close.d.ts", + "io/closed-captioning.d.ts", + "io/cloud.d.ts", + "io/code-download.d.ts", + "io/code-working.d.ts", + "io/code.d.ts", + "io/coffee.d.ts", + "io/compass.d.ts", + "io/compose.d.ts", + "io/connectbars.d.ts", + "io/contrast.d.ts", + "io/crop.d.ts", + "io/cube.d.ts", + "io/disc.d.ts", + "io/document-text.d.ts", + "io/document.d.ts", + "io/drag.d.ts", + "io/earth.d.ts", + "io/easel.d.ts", + "io/edit.d.ts", + "io/egg.d.ts", + "io/eject.d.ts", + "io/email-unread.d.ts", + "io/email.d.ts", + "io/erlenmeyer-flask-bubbles.d.ts", + "io/erlenmeyer-flask.d.ts", + "io/eye-disabled.d.ts", + "io/eye.d.ts", + "io/female.d.ts", + "io/filing.d.ts", + "io/film-marker.d.ts", + "io/fireball.d.ts", + "io/flag.d.ts", + "io/flame.d.ts", + "io/flash-off.d.ts", + "io/flash.d.ts", + "io/folder.d.ts", + "io/fork-repo.d.ts", + "io/fork.d.ts", + "io/forward.d.ts", + "io/funnel.d.ts", + "io/gear-a.d.ts", + "io/gear-b.d.ts", + "io/grid.d.ts", + "io/hammer.d.ts", + "io/happy-outline.d.ts", + "io/happy.d.ts", + "io/headphone.d.ts", + "io/heart-broken.d.ts", + "io/heart.d.ts", + "io/help-buoy.d.ts", + "io/help-circled.d.ts", + "io/help.d.ts", + "io/home.d.ts", + "io/icecream.d.ts", + "io/image.d.ts", + "io/images.d.ts", + "io/informatcircled.d.ts", + "io/information.d.ts", + "io/ionic.d.ts", + "io/ios-alarm-outline.d.ts", + "io/ios-alarm.d.ts", + "io/ios-albums-outline.d.ts", + "io/ios-albums.d.ts", + "io/ios-americanfootball-outline.d.ts", + "io/ios-americanfootball.d.ts", + "io/ios-analytics-outline.d.ts", + "io/ios-analytics.d.ts", + "io/ios-arrow-back.d.ts", + "io/ios-arrow-down.d.ts", + "io/ios-arrow-forward.d.ts", + "io/ios-arrow-left.d.ts", + "io/ios-arrow-right.d.ts", + "io/ios-arrow-thin-down.d.ts", + "io/ios-arrow-thin-left.d.ts", + "io/ios-arrow-thin-right.d.ts", + "io/ios-arrow-thin-up.d.ts", + "io/ios-arrow-up.d.ts", + "io/ios-at-outline.d.ts", + "io/ios-at.d.ts", + "io/ios-barcode-outline.d.ts", + "io/ios-barcode.d.ts", + "io/ios-baseball-outline.d.ts", + "io/ios-baseball.d.ts", + "io/ios-basketball-outline.d.ts", + "io/ios-basketball.d.ts", + "io/ios-bell-outline.d.ts", + "io/ios-bell.d.ts", + "io/ios-body-outline.d.ts", + "io/ios-body.d.ts", + "io/ios-bolt-outline.d.ts", + "io/ios-bolt.d.ts", + "io/ios-book-outline.d.ts", + "io/ios-book.d.ts", + "io/ios-bookmarks-outline.d.ts", + "io/ios-bookmarks.d.ts", + "io/ios-box-outline.d.ts", + "io/ios-box.d.ts", + "io/ios-briefcase-outline.d.ts", + "io/ios-briefcase.d.ts", + "io/ios-browsers-outline.d.ts", + "io/ios-browsers.d.ts", + "io/ios-calculator-outline.d.ts", + "io/ios-calculator.d.ts", + "io/ios-calendar-outline.d.ts", + "io/ios-calendar.d.ts", + "io/ios-camera-outline.d.ts", + "io/ios-camera.d.ts", + "io/ios-cart-outline.d.ts", + "io/ios-cart.d.ts", + "io/ios-chatboxes-outline.d.ts", + "io/ios-chatboxes.d.ts", + "io/ios-chatbubble-outline.d.ts", + "io/ios-chatbubble.d.ts", + "io/ios-checkmark-empty.d.ts", + "io/ios-checkmark-outline.d.ts", + "io/ios-checkmark.d.ts", + "io/ios-circle-filled.d.ts", + "io/ios-circle-outline.d.ts", + "io/ios-clock-outline.d.ts", + "io/ios-clock.d.ts", + "io/ios-close-empty.d.ts", + "io/ios-close-outline.d.ts", + "io/ios-close.d.ts", + "io/ios-cloud-download-outline.d.ts", + "io/ios-cloud-download.d.ts", + "io/ios-cloud-outline.d.ts", + "io/ios-cloud-upload-outline.d.ts", + "io/ios-cloud-upload.d.ts", + "io/ios-cloud.d.ts", + "io/ios-cloudy-night-outline.d.ts", + "io/ios-cloudy-night.d.ts", + "io/ios-cloudy-outline.d.ts", + "io/ios-cloudy.d.ts", + "io/ios-cog-outline.d.ts", + "io/ios-cog.d.ts", + "io/ios-color-filter-outline.d.ts", + "io/ios-color-filter.d.ts", + "io/ios-color-wand-outline.d.ts", + "io/ios-color-wand.d.ts", + "io/ios-compose-outline.d.ts", + "io/ios-compose.d.ts", + "io/ios-contact-outline.d.ts", + "io/ios-contact.d.ts", + "io/ios-copy-outline.d.ts", + "io/ios-copy.d.ts", + "io/ios-crop-strong.d.ts", + "io/ios-crop.d.ts", + "io/ios-download-outline.d.ts", + "io/ios-download.d.ts", + "io/ios-drag.d.ts", + "io/ios-email-outline.d.ts", + "io/ios-email.d.ts", + "io/ios-eye-outline.d.ts", + "io/ios-eye.d.ts", + "io/ios-fastforward-outline.d.ts", + "io/ios-fastforward.d.ts", + "io/ios-filing-outline.d.ts", + "io/ios-filing.d.ts", + "io/ios-film-outline.d.ts", + "io/ios-film.d.ts", + "io/ios-flag-outline.d.ts", + "io/ios-flag.d.ts", + "io/ios-flame-outline.d.ts", + "io/ios-flame.d.ts", + "io/ios-flask-outline.d.ts", + "io/ios-flask.d.ts", + "io/ios-flower-outline.d.ts", + "io/ios-flower.d.ts", + "io/ios-folder-outline.d.ts", + "io/ios-folder.d.ts", + "io/ios-football-outline.d.ts", + "io/ios-football.d.ts", + "io/ios-game-controller-a-outline.d.ts", + "io/ios-game-controller-a.d.ts", + "io/ios-game-controller-b-outline.d.ts", + "io/ios-game-controller-b.d.ts", + "io/ios-gear-outline.d.ts", + "io/ios-gear.d.ts", + "io/ios-glasses-outline.d.ts", + "io/ios-glasses.d.ts", + "io/ios-grid-view-outline.d.ts", + "io/ios-grid-view.d.ts", + "io/ios-heart-outline.d.ts", + "io/ios-heart.d.ts", + "io/ios-help-empty.d.ts", + "io/ios-help-outline.d.ts", + "io/ios-help.d.ts", + "io/ios-home-outline.d.ts", + "io/ios-home.d.ts", + "io/ios-infinite-outline.d.ts", + "io/ios-infinite.d.ts", + "io/ios-informatempty.d.ts", + "io/ios-information.d.ts", + "io/ios-informatoutline.d.ts", + "io/ios-ionic-outline.d.ts", + "io/ios-keypad-outline.d.ts", + "io/ios-keypad.d.ts", + "io/ios-lightbulb-outline.d.ts", + "io/ios-lightbulb.d.ts", + "io/ios-list-outline.d.ts", + "io/ios-list.d.ts", + "io/ios-location.d.ts", + "io/ios-locatoutline.d.ts", + "io/ios-locked-outline.d.ts", + "io/ios-locked.d.ts", + "io/ios-loop-strong.d.ts", + "io/ios-loop.d.ts", + "io/ios-medical-outline.d.ts", + "io/ios-medical.d.ts", + "io/ios-medkit-outline.d.ts", + "io/ios-medkit.d.ts", + "io/ios-mic-off.d.ts", + "io/ios-mic-outline.d.ts", + "io/ios-mic.d.ts", + "io/ios-minus-empty.d.ts", + "io/ios-minus-outline.d.ts", + "io/ios-minus.d.ts", + "io/ios-monitor-outline.d.ts", + "io/ios-monitor.d.ts", + "io/ios-moon-outline.d.ts", + "io/ios-moon.d.ts", + "io/ios-more-outline.d.ts", + "io/ios-more.d.ts", + "io/ios-musical-note.d.ts", + "io/ios-musical-notes.d.ts", + "io/ios-navigate-outline.d.ts", + "io/ios-navigate.d.ts", + "io/ios-nutrition.d.ts", + "io/ios-nutritoutline.d.ts", + "io/ios-paper-outline.d.ts", + "io/ios-paper.d.ts", + "io/ios-paperplane-outline.d.ts", + "io/ios-paperplane.d.ts", + "io/ios-partlysunny-outline.d.ts", + "io/ios-partlysunny.d.ts", + "io/ios-pause-outline.d.ts", + "io/ios-pause.d.ts", + "io/ios-paw-outline.d.ts", + "io/ios-paw.d.ts", + "io/ios-people-outline.d.ts", + "io/ios-people.d.ts", + "io/ios-person-outline.d.ts", + "io/ios-person.d.ts", + "io/ios-personadd-outline.d.ts", + "io/ios-personadd.d.ts", + "io/ios-photos-outline.d.ts", + "io/ios-photos.d.ts", + "io/ios-pie-outline.d.ts", + "io/ios-pie.d.ts", + "io/ios-pint-outline.d.ts", + "io/ios-pint.d.ts", + "io/ios-play-outline.d.ts", + "io/ios-play.d.ts", + "io/ios-plus-empty.d.ts", + "io/ios-plus-outline.d.ts", + "io/ios-plus.d.ts", + "io/ios-pricetag-outline.d.ts", + "io/ios-pricetag.d.ts", + "io/ios-pricetags-outline.d.ts", + "io/ios-pricetags.d.ts", + "io/ios-printer-outline.d.ts", + "io/ios-printer.d.ts", + "io/ios-pulse-strong.d.ts", + "io/ios-pulse.d.ts", + "io/ios-rainy-outline.d.ts", + "io/ios-rainy.d.ts", + "io/ios-recording-outline.d.ts", + "io/ios-recording.d.ts", + "io/ios-redo-outline.d.ts", + "io/ios-redo.d.ts", + "io/ios-refresh-empty.d.ts", + "io/ios-refresh-outline.d.ts", + "io/ios-refresh.d.ts", + "io/ios-reload.d.ts", + "io/ios-reverse-camera-outline.d.ts", + "io/ios-reverse-camera.d.ts", + "io/ios-rewind-outline.d.ts", + "io/ios-rewind.d.ts", + "io/ios-rose-outline.d.ts", + "io/ios-rose.d.ts", + "io/ios-search-strong.d.ts", + "io/ios-search.d.ts", + "io/ios-settings-strong.d.ts", + "io/ios-settings.d.ts", + "io/ios-shuffle-strong.d.ts", + "io/ios-shuffle.d.ts", + "io/ios-skipbackward-outline.d.ts", + "io/ios-skipbackward.d.ts", + "io/ios-skipforward-outline.d.ts", + "io/ios-skipforward.d.ts", + "io/ios-snowy.d.ts", + "io/ios-speedometer-outline.d.ts", + "io/ios-speedometer.d.ts", + "io/ios-star-half.d.ts", + "io/ios-star-outline.d.ts", + "io/ios-star.d.ts", + "io/ios-stopwatch-outline.d.ts", + "io/ios-stopwatch.d.ts", + "io/ios-sunny-outline.d.ts", + "io/ios-sunny.d.ts", + "io/ios-telephone-outline.d.ts", + "io/ios-telephone.d.ts", + "io/ios-tennisball-outline.d.ts", + "io/ios-tennisball.d.ts", + "io/ios-thunderstorm-outline.d.ts", + "io/ios-thunderstorm.d.ts", + "io/ios-time-outline.d.ts", + "io/ios-time.d.ts", + "io/ios-timer-outline.d.ts", + "io/ios-timer.d.ts", + "io/ios-toggle-outline.d.ts", + "io/ios-toggle.d.ts", + "io/ios-trash-outline.d.ts", + "io/ios-trash.d.ts", + "io/ios-undo-outline.d.ts", + "io/ios-undo.d.ts", + "io/ios-unlocked-outline.d.ts", + "io/ios-unlocked.d.ts", + "io/ios-upload-outline.d.ts", + "io/ios-upload.d.ts", + "io/ios-videocam-outline.d.ts", + "io/ios-videocam.d.ts", + "io/ios-volume-high.d.ts", + "io/ios-volume-low.d.ts", + "io/ios-wineglass-outline.d.ts", + "io/ios-wineglass.d.ts", + "io/ios-world-outline.d.ts", + "io/ios-world.d.ts", + "io/ipad.d.ts", + "io/iphone.d.ts", + "io/ipod.d.ts", + "io/jet.d.ts", + "io/key.d.ts", + "io/knife.d.ts", + "io/laptop.d.ts", + "io/leaf.d.ts", + "io/levels.d.ts", + "io/lightbulb.d.ts", + "io/link.d.ts", + "io/load-a.d.ts", + "io/load-b.d.ts", + "io/load-c.d.ts", + "io/load-d.d.ts", + "io/location.d.ts", + "io/lock-combination.d.ts", + "io/locked.d.ts", + "io/log-in.d.ts", + "io/log-out.d.ts", + "io/loop.d.ts", + "io/magnet.d.ts", + "io/male.d.ts", + "io/man.d.ts", + "io/map.d.ts", + "io/medkit.d.ts", + "io/merge.d.ts", + "io/mic-a.d.ts", + "io/mic-b.d.ts", + "io/mic-c.d.ts", + "io/minus-circled.d.ts", + "io/minus-round.d.ts", + "io/minus.d.ts", + "io/model-s.d.ts", + "io/monitor.d.ts", + "io/more.d.ts", + "io/mouse.d.ts", + "io/music-note.d.ts", + "io/navicon-round.d.ts", + "io/navicon.d.ts", + "io/navigate.d.ts", + "io/network.d.ts", + "io/no-smoking.d.ts", + "io/nuclear.d.ts", + "io/outlet.d.ts", + "io/paintbrush.d.ts", + "io/paintbucket.d.ts", + "io/paper-airplane.d.ts", + "io/paperclip.d.ts", + "io/pause.d.ts", + "io/person-add.d.ts", + "io/person-stalker.d.ts", + "io/person.d.ts", + "io/pie-graph.d.ts", + "io/pin.d.ts", + "io/pinpoint.d.ts", + "io/pizza.d.ts", + "io/plane.d.ts", + "io/planet.d.ts", + "io/play.d.ts", + "io/playstation.d.ts", + "io/plus-circled.d.ts", + "io/plus-round.d.ts", + "io/plus.d.ts", + "io/podium.d.ts", + "io/pound.d.ts", + "io/power.d.ts", + "io/pricetag.d.ts", + "io/pricetags.d.ts", + "io/printer.d.ts", + "io/pull-request.d.ts", + "io/qr-scanner.d.ts", + "io/quote.d.ts", + "io/radio-waves.d.ts", + "io/record.d.ts", + "io/refresh.d.ts", + "io/reply-all.d.ts", + "io/reply.d.ts", + "io/ribbon-a.d.ts", + "io/ribbon-b.d.ts", + "io/sad-outline.d.ts", + "io/sad.d.ts", + "io/scissors.d.ts", + "io/search.d.ts", + "io/settings.d.ts", + "io/share.d.ts", + "io/shuffle.d.ts", + "io/skip-backward.d.ts", + "io/skip-forward.d.ts", + "io/social-android-outline.d.ts", + "io/social-android.d.ts", + "io/social-angular-outline.d.ts", + "io/social-angular.d.ts", + "io/social-apple-outline.d.ts", + "io/social-apple.d.ts", + "io/social-bitcoin-outline.d.ts", + "io/social-bitcoin.d.ts", + "io/social-buffer-outline.d.ts", + "io/social-buffer.d.ts", + "io/social-chrome-outline.d.ts", + "io/social-chrome.d.ts", + "io/social-codepen-outline.d.ts", + "io/social-codepen.d.ts", + "io/social-css3-outline.d.ts", + "io/social-css3.d.ts", + "io/social-designernews-outline.d.ts", + "io/social-designernews.d.ts", + "io/social-dribbble-outline.d.ts", + "io/social-dribbble.d.ts", + "io/social-dropbox-outline.d.ts", + "io/social-dropbox.d.ts", + "io/social-euro-outline.d.ts", + "io/social-euro.d.ts", + "io/social-facebook-outline.d.ts", + "io/social-facebook.d.ts", + "io/social-foursquare-outline.d.ts", + "io/social-foursquare.d.ts", + "io/social-freebsd-devil.d.ts", + "io/social-github-outline.d.ts", + "io/social-github.d.ts", + "io/social-google-outline.d.ts", + "io/social-google.d.ts", + "io/social-googleplus-outline.d.ts", + "io/social-googleplus.d.ts", + "io/social-hackernews-outline.d.ts", + "io/social-hackernews.d.ts", + "io/social-html5-outline.d.ts", + "io/social-html5.d.ts", + "io/social-instagram-outline.d.ts", + "io/social-instagram.d.ts", + "io/social-javascript-outline.d.ts", + "io/social-javascript.d.ts", + "io/social-linkedin-outline.d.ts", + "io/social-linkedin.d.ts", + "io/social-markdown.d.ts", + "io/social-nodejs.d.ts", + "io/social-octocat.d.ts", + "io/social-pinterest-outline.d.ts", + "io/social-pinterest.d.ts", + "io/social-python.d.ts", + "io/social-reddit-outline.d.ts", + "io/social-reddit.d.ts", + "io/social-rss-outline.d.ts", + "io/social-rss.d.ts", + "io/social-sass.d.ts", + "io/social-skype-outline.d.ts", + "io/social-skype.d.ts", + "io/social-snapchat-outline.d.ts", + "io/social-snapchat.d.ts", + "io/social-tumblr-outline.d.ts", + "io/social-tumblr.d.ts", + "io/social-tux.d.ts", + "io/social-twitch-outline.d.ts", + "io/social-twitch.d.ts", + "io/social-twitter-outline.d.ts", + "io/social-twitter.d.ts", + "io/social-usd-outline.d.ts", + "io/social-usd.d.ts", + "io/social-vimeo-outline.d.ts", + "io/social-vimeo.d.ts", + "io/social-whatsapp-outline.d.ts", + "io/social-whatsapp.d.ts", + "io/social-windows-outline.d.ts", + "io/social-windows.d.ts", + "io/social-wordpress-outline.d.ts", + "io/social-wordpress.d.ts", + "io/social-yahoo-outline.d.ts", + "io/social-yahoo.d.ts", + "io/social-yen-outline.d.ts", + "io/social-yen.d.ts", + "io/social-youtube-outline.d.ts", + "io/social-youtube.d.ts", + "io/soup-can-outline.d.ts", + "io/soup-can.d.ts", + "io/speakerphone.d.ts", + "io/speedometer.d.ts", + "io/spoon.d.ts", + "io/star.d.ts", + "io/stats-bars.d.ts", + "io/steam.d.ts", + "io/stop.d.ts", + "io/thermometer.d.ts", + "io/thumbsdown.d.ts", + "io/thumbsup.d.ts", + "io/toggle-filled.d.ts", + "io/toggle.d.ts", + "io/transgender.d.ts", + "io/trash-a.d.ts", + "io/trash-b.d.ts", + "io/trophy.d.ts", + "io/tshirt-outline.d.ts", + "io/tshirt.d.ts", + "io/umbrella.d.ts", + "io/university.d.ts", + "io/unlocked.d.ts", + "io/upload.d.ts", + "io/usb.d.ts", + "io/videocamera.d.ts", + "io/volume-high.d.ts", + "io/volume-low.d.ts", + "io/volume-medium.d.ts", + "io/volume-mute.d.ts", + "io/wand.d.ts", + "io/waterdrop.d.ts", + "io/wifi.d.ts", + "io/wineglass.d.ts", + "io/woman.d.ts", + "io/wrench.d.ts", + "io/xbox.d.ts", + "md/3d-rotation.d.ts", + "md/ac-unit.d.ts", + "md/access-alarm.d.ts", + "md/access-alarms.d.ts", + "md/access-time.d.ts", + "md/accessibility.d.ts", + "md/accessible.d.ts", + "md/account-balance-wallet.d.ts", + "md/account-balance.d.ts", + "md/account-box.d.ts", + "md/account-circle.d.ts", + "md/adb.d.ts", + "md/add-a-photo.d.ts", + "md/add-alarm.d.ts", + "md/add-alert.d.ts", + "md/add-box.d.ts", + "md/add-circle-outline.d.ts", + "md/add-circle.d.ts", + "md/add-location.d.ts", + "md/add-shopping-cart.d.ts", + "md/add-to-photos.d.ts", + "md/add-to-queue.d.ts", + "md/add.d.ts", + "md/adjust.d.ts", + "md/airline-seat-flat-angled.d.ts", + "md/airline-seat-flat.d.ts", + "md/airline-seat-individual-suite.d.ts", + "md/airline-seat-legroom-extra.d.ts", + "md/airline-seat-legroom-normal.d.ts", + "md/airline-seat-legroom-reduced.d.ts", + "md/airline-seat-recline-extra.d.ts", + "md/airline-seat-recline-normal.d.ts", + "md/airplanemode-active.d.ts", + "md/airplanemode-inactive.d.ts", + "md/airplay.d.ts", + "md/airport-shuttle.d.ts", + "md/alarm-add.d.ts", + "md/alarm-off.d.ts", + "md/alarm-on.d.ts", + "md/alarm.d.ts", + "md/album.d.ts", + "md/all-inclusive.d.ts", + "md/all-out.d.ts", + "md/android.d.ts", + "md/announcement.d.ts", + "md/apps.d.ts", + "md/archive.d.ts", + "md/arrow-back.d.ts", + "md/arrow-downward.d.ts", + "md/arrow-drop-down-circle.d.ts", + "md/arrow-drop-down.d.ts", + "md/arrow-drop-up.d.ts", + "md/arrow-forward.d.ts", + "md/arrow-upward.d.ts", + "md/art-track.d.ts", + "md/aspect-ratio.d.ts", + "md/assessment.d.ts", + "md/assignment-ind.d.ts", + "md/assignment-late.d.ts", + "md/assignment-return.d.ts", + "md/assignment-returned.d.ts", + "md/assignment-turned-in.d.ts", + "md/assignment.d.ts", + "md/assistant-photo.d.ts", + "md/assistant.d.ts", + "md/attach-file.d.ts", + "md/attach-money.d.ts", + "md/attachment.d.ts", + "md/audiotrack.d.ts", + "md/autorenew.d.ts", + "md/av-timer.d.ts", + "md/backspace.d.ts", + "md/backup.d.ts", + "md/battery-alert.d.ts", + "md/battery-charging-full.d.ts", + "md/battery-full.d.ts", + "md/battery-std.d.ts", + "md/battery-unknown.d.ts", + "md/beach-access.d.ts", + "md/beenhere.d.ts", + "md/block.d.ts", + "md/bluetooth-audio.d.ts", + "md/bluetooth-connected.d.ts", + "md/bluetooth-disabled.d.ts", + "md/bluetooth-searching.d.ts", + "md/bluetooth.d.ts", + "md/blur-circular.d.ts", + "md/blur-linear.d.ts", + "md/blur-off.d.ts", + "md/blur-on.d.ts", + "md/book.d.ts", + "md/bookmark-outline.d.ts", + "md/bookmark.d.ts", + "md/border-all.d.ts", + "md/border-bottom.d.ts", + "md/border-clear.d.ts", + "md/border-color.d.ts", + "md/border-horizontal.d.ts", + "md/border-inner.d.ts", + "md/border-left.d.ts", + "md/border-outer.d.ts", + "md/border-right.d.ts", + "md/border-style.d.ts", + "md/border-top.d.ts", + "md/border-vertical.d.ts", + "md/branding-watermark.d.ts", + "md/brightness-1.d.ts", + "md/brightness-2.d.ts", + "md/brightness-3.d.ts", + "md/brightness-4.d.ts", + "md/brightness-5.d.ts", + "md/brightness-6.d.ts", + "md/brightness-7.d.ts", + "md/brightness-auto.d.ts", + "md/brightness-high.d.ts", + "md/brightness-low.d.ts", + "md/brightness-medium.d.ts", + "md/broken-image.d.ts", + "md/brush.d.ts", + "md/bubble-chart.d.ts", + "md/bug-report.d.ts", + "md/build.d.ts", + "md/burst-mode.d.ts", + "md/business-center.d.ts", + "md/business.d.ts", + "md/cached.d.ts", + "md/cake.d.ts", + "md/call-end.d.ts", + "md/call-made.d.ts", + "md/call-merge.d.ts", + "md/call-missed-outgoing.d.ts", + "md/call-missed.d.ts", + "md/call-received.d.ts", + "md/call-split.d.ts", + "md/call-to-action.d.ts", + "md/call.d.ts", + "md/camera-alt.d.ts", + "md/camera-enhance.d.ts", + "md/camera-front.d.ts", + "md/camera-rear.d.ts", + "md/camera-roll.d.ts", + "md/camera.d.ts", + "md/cancel.d.ts", + "md/card-giftcard.d.ts", + "md/card-membership.d.ts", + "md/card-travel.d.ts", + "md/casino.d.ts", + "md/cast-connected.d.ts", + "md/cast.d.ts", + "md/center-focus-strong.d.ts", + "md/center-focus-weak.d.ts", + "md/change-history.d.ts", + "md/chat-bubble-outline.d.ts", + "md/chat-bubble.d.ts", + "md/chat.d.ts", + "md/check-box-outline-blank.d.ts", + "md/check-box.d.ts", + "md/check-circle.d.ts", + "md/check.d.ts", + "md/chevron-left.d.ts", + "md/chevron-right.d.ts", + "md/child-care.d.ts", + "md/child-friendly.d.ts", + "md/chrome-reader-mode.d.ts", + "md/class.d.ts", + "md/clear-all.d.ts", + "md/clear.d.ts", + "md/close.d.ts", + "md/closed-caption.d.ts", + "md/cloud-circle.d.ts", + "md/cloud-done.d.ts", + "md/cloud-download.d.ts", + "md/cloud-off.d.ts", + "md/cloud-queue.d.ts", + "md/cloud-upload.d.ts", + "md/cloud.d.ts", + "md/code.d.ts", + "md/collections-bookmark.d.ts", + "md/collections.d.ts", + "md/color-lens.d.ts", + "md/colorize.d.ts", + "md/comment.d.ts", + "md/compare-arrows.d.ts", + "md/compare.d.ts", + "md/computer.d.ts", + "md/confirmation-number.d.ts", + "md/contact-mail.d.ts", + "md/contact-phone.d.ts", + "md/contacts.d.ts", + "md/content-copy.d.ts", + "md/content-cut.d.ts", + "md/content-paste.d.ts", + "md/control-point-duplicate.d.ts", + "md/control-point.d.ts", + "md/copyright.d.ts", + "md/create-new-folder.d.ts", + "md/create.d.ts", + "md/credit-card.d.ts", + "md/crop-16-9.d.ts", + "md/crop-3-2.d.ts", + "md/crop-5-4.d.ts", + "md/crop-7-5.d.ts", + "md/crop-din.d.ts", + "md/crop-free.d.ts", + "md/crop-landscape.d.ts", + "md/crop-original.d.ts", + "md/crop-portrait.d.ts", + "md/crop-rotate.d.ts", + "md/crop-square.d.ts", + "md/crop.d.ts", + "md/dashboard.d.ts", + "md/data-usage.d.ts", + "md/date-range.d.ts", + "md/dehaze.d.ts", + "md/delete-forever.d.ts", + "md/delete-sweep.d.ts", + "md/delete.d.ts", + "md/description.d.ts", + "md/desktop-mac.d.ts", + "md/desktop-windows.d.ts", + "md/details.d.ts", + "md/developer-board.d.ts", + "md/developer-mode.d.ts", + "md/device-hub.d.ts", + "md/devices-other.d.ts", + "md/devices.d.ts", + "md/dialer-sip.d.ts", + "md/dialpad.d.ts", + "md/directions-bike.d.ts", + "md/directions-boat.d.ts", + "md/directions-bus.d.ts", + "md/directions-car.d.ts", + "md/directions-ferry.d.ts", + "md/directions-railway.d.ts", + "md/directions-run.d.ts", + "md/directions-subway.d.ts", + "md/directions-transit.d.ts", + "md/directions-walk.d.ts", + "md/directions.d.ts", + "md/disc-full.d.ts", + "md/dns.d.ts", + "md/do-not-disturb-alt.d.ts", + "md/do-not-disturb-off.d.ts", + "md/do-not-disturb.d.ts", + "md/dock.d.ts", + "md/domain.d.ts", + "md/done-all.d.ts", + "md/done.d.ts", + "md/donut-large.d.ts", + "md/donut-small.d.ts", + "md/drafts.d.ts", + "md/drag-handle.d.ts", + "md/drive-eta.d.ts", + "md/dvr.d.ts", + "md/edit-location.d.ts", + "md/edit.d.ts", + "md/eject.d.ts", + "md/email.d.ts", + "md/enhanced-encryption.d.ts", + "md/equalizer.d.ts", + "md/error-outline.d.ts", + "md/error.d.ts", + "md/euro-symbol.d.ts", + "md/ev-station.d.ts", + "md/event-available.d.ts", + "md/event-busy.d.ts", + "md/event-note.d.ts", + "md/event-seat.d.ts", + "md/event.d.ts", + "md/exit-to-app.d.ts", + "md/expand-less.d.ts", + "md/expand-more.d.ts", + "md/explicit.d.ts", + "md/explore.d.ts", + "md/exposure-minus-1.d.ts", + "md/exposure-minus-2.d.ts", + "md/exposure-neg-1.d.ts", + "md/exposure-neg-2.d.ts", + "md/exposure-plus-1.d.ts", + "md/exposure-plus-2.d.ts", + "md/exposure-zero.d.ts", + "md/exposure.d.ts", + "md/extension.d.ts", + "md/face.d.ts", + "md/fast-forward.d.ts", + "md/fast-rewind.d.ts", + "md/favorite-border.d.ts", + "md/favorite-outline.d.ts", + "md/favorite.d.ts", + "md/featured-play-list.d.ts", + "md/featured-video.d.ts", + "md/feedback.d.ts", + "md/fiber-dvr.d.ts", + "md/fiber-manual-record.d.ts", + "md/fiber-new.d.ts", + "md/fiber-pin.d.ts", + "md/fiber-smart-record.d.ts", + "md/file-download.d.ts", + "md/file-upload.d.ts", + "md/filter-1.d.ts", + "md/filter-2.d.ts", + "md/filter-3.d.ts", + "md/filter-4.d.ts", + "md/filter-5.d.ts", + "md/filter-6.d.ts", + "md/filter-7.d.ts", + "md/filter-8.d.ts", + "md/filter-9-plus.d.ts", + "md/filter-9.d.ts", + "md/filter-b-and-w.d.ts", + "md/filter-center-focus.d.ts", + "md/filter-drama.d.ts", + "md/filter-frames.d.ts", + "md/filter-hdr.d.ts", + "md/filter-list.d.ts", + "md/filter-none.d.ts", + "md/filter-tilt-shift.d.ts", + "md/filter-vintage.d.ts", + "md/filter.d.ts", + "md/find-in-page.d.ts", + "md/find-replace.d.ts", + "md/fingerprint.d.ts", + "md/first-page.d.ts", + "md/fitness-center.d.ts", + "md/flag.d.ts", + "md/flare.d.ts", + "md/flash-auto.d.ts", + "md/flash-off.d.ts", + "md/flash-on.d.ts", + "md/flight-land.d.ts", + "md/flight-takeoff.d.ts", + "md/flight.d.ts", + "md/flip-to-back.d.ts", + "md/flip-to-front.d.ts", + "md/flip.d.ts", + "md/folder-open.d.ts", + "md/folder-shared.d.ts", + "md/folder-special.d.ts", + "md/folder.d.ts", + "md/font-download.d.ts", + "md/format-align-center.d.ts", + "md/format-align-justify.d.ts", + "md/format-align-left.d.ts", + "md/format-align-right.d.ts", + "md/format-bold.d.ts", + "md/format-clear.d.ts", + "md/format-color-fill.d.ts", + "md/format-color-reset.d.ts", + "md/format-color-text.d.ts", + "md/format-indent-decrease.d.ts", + "md/format-indent-increase.d.ts", + "md/format-italic.d.ts", + "md/format-line-spacing.d.ts", + "md/format-list-bulleted.d.ts", + "md/format-list-numbered.d.ts", + "md/format-paint.d.ts", + "md/format-quote.d.ts", + "md/format-shapes.d.ts", + "md/format-size.d.ts", + "md/format-strikethrough.d.ts", + "md/format-textdirection-l-to-r.d.ts", + "md/format-textdirection-r-to-l.d.ts", + "md/format-underlined.d.ts", + "md/forum.d.ts", + "md/forward-10.d.ts", + "md/forward-30.d.ts", + "md/forward-5.d.ts", + "md/forward.d.ts", + "md/free-breakfast.d.ts", + "md/fullscreen-exit.d.ts", + "md/fullscreen.d.ts", + "md/functions.d.ts", + "md/g-translate.d.ts", + "md/gamepad.d.ts", + "md/games.d.ts", + "md/gavel.d.ts", + "md/gesture.d.ts", + "md/get-app.d.ts", + "md/gif.d.ts", + "md/goat.d.ts", + "md/golf-course.d.ts", + "md/gps-fixed.d.ts", + "md/gps-not-fixed.d.ts", + "md/gps-off.d.ts", + "md/grade.d.ts", + "md/gradient.d.ts", + "md/grain.d.ts", + "md/graphic-eq.d.ts", + "md/grid-off.d.ts", + "md/grid-on.d.ts", + "md/group-add.d.ts", + "md/group-work.d.ts", + "md/group.d.ts", + "md/hd.d.ts", + "md/hdr-off.d.ts", + "md/hdr-on.d.ts", + "md/hdr-strong.d.ts", + "md/hdr-weak.d.ts", + "md/headset-mic.d.ts", + "md/headset.d.ts", + "md/healing.d.ts", + "md/hearing.d.ts", + "md/help-outline.d.ts", + "md/help.d.ts", + "md/high-quality.d.ts", + "md/highlight-off.d.ts", + "md/highlight-remove.d.ts", + "md/highlight.d.ts", + "md/history.d.ts", + "md/home.d.ts", + "md/hot-tub.d.ts", + "md/hotel.d.ts", + "md/hourglass-empty.d.ts", + "md/hourglass-full.d.ts", + "md/http.d.ts", + "md/https.d.ts", + "md/image-aspect-ratio.d.ts", + "md/image.d.ts", + "md/import-contacts.d.ts", + "md/import-export.d.ts", + "md/important-devices.d.ts", + "md/inbox.d.ts", + "md/indeterminate-check-box.d.ts", + "md/info-outline.d.ts", + "md/info.d.ts", + "md/input.d.ts", + "md/insert-chart.d.ts", + "md/insert-comment.d.ts", + "md/insert-drive-file.d.ts", + "md/insert-emoticon.d.ts", + "md/insert-invitation.d.ts", + "md/insert-link.d.ts", + "md/insert-photo.d.ts", + "md/invert-colors-off.d.ts", + "md/invert-colors-on.d.ts", + "md/invert-colors.d.ts", + "md/iso.d.ts", + "md/keyboard-arrow-down.d.ts", + "md/keyboard-arrow-left.d.ts", + "md/keyboard-arrow-right.d.ts", + "md/keyboard-arrow-up.d.ts", + "md/keyboard-backspace.d.ts", + "md/keyboard-capslock.d.ts", + "md/keyboard-control.d.ts", + "md/keyboard-hide.d.ts", + "md/keyboard-return.d.ts", + "md/keyboard-tab.d.ts", + "md/keyboard-voice.d.ts", + "md/keyboard.d.ts", + "md/kitchen.d.ts", + "md/label-outline.d.ts", + "md/label.d.ts", + "md/landscape.d.ts", + "md/language.d.ts", + "md/laptop-chromebook.d.ts", + "md/laptop-mac.d.ts", + "md/laptop-windows.d.ts", + "md/laptop.d.ts", + "md/last-page.d.ts", + "md/launch.d.ts", + "md/layers-clear.d.ts", + "md/layers.d.ts", + "md/leak-add.d.ts", + "md/leak-remove.d.ts", + "md/lens.d.ts", + "md/library-add.d.ts", + "md/library-books.d.ts", + "md/library-music.d.ts", + "md/lightbulb-outline.d.ts", + "md/line-style.d.ts", + "md/line-weight.d.ts", + "md/linear-scale.d.ts", + "md/link.d.ts", + "md/linked-camera.d.ts", + "md/list.d.ts", + "md/live-help.d.ts", + "md/live-tv.d.ts", + "md/local-airport.d.ts", + "md/local-atm.d.ts", + "md/local-attraction.d.ts", + "md/local-bar.d.ts", + "md/local-cafe.d.ts", + "md/local-car-wash.d.ts", + "md/local-convenience-store.d.ts", + "md/local-drink.d.ts", + "md/local-florist.d.ts", + "md/local-gas-station.d.ts", + "md/local-grocery-store.d.ts", + "md/local-hospital.d.ts", + "md/local-hotel.d.ts", + "md/local-laundry-service.d.ts", + "md/local-library.d.ts", + "md/local-mall.d.ts", + "md/local-movies.d.ts", + "md/local-offer.d.ts", + "md/local-parking.d.ts", + "md/local-pharmacy.d.ts", + "md/local-phone.d.ts", + "md/local-pizza.d.ts", + "md/local-play.d.ts", + "md/local-post-office.d.ts", + "md/local-print-shop.d.ts", + "md/local-restaurant.d.ts", + "md/local-see.d.ts", + "md/local-shipping.d.ts", + "md/local-taxi.d.ts", + "md/location-city.d.ts", + "md/location-disabled.d.ts", + "md/location-history.d.ts", + "md/location-off.d.ts", + "md/location-on.d.ts", + "md/location-searching.d.ts", + "md/lock-open.d.ts", + "md/lock-outline.d.ts", + "md/lock.d.ts", + "md/looks-3.d.ts", + "md/looks-4.d.ts", + "md/looks-5.d.ts", + "md/looks-6.d.ts", + "md/looks-one.d.ts", + "md/looks-two.d.ts", + "md/looks.d.ts", + "md/loop.d.ts", + "md/loupe.d.ts", + "md/low-priority.d.ts", + "md/loyalty.d.ts", + "md/mail-outline.d.ts", + "md/mail.d.ts", + "md/map.d.ts", + "md/markunread-mailbox.d.ts", + "md/markunread.d.ts", + "md/memory.d.ts", + "md/menu.d.ts", + "md/merge-type.d.ts", + "md/message.d.ts", + "md/mic-none.d.ts", + "md/mic-off.d.ts", + "md/mic.d.ts", + "md/mms.d.ts", + "md/mode-comment.d.ts", + "md/mode-edit.d.ts", + "md/monetization-on.d.ts", + "md/money-off.d.ts", + "md/monochrome-photos.d.ts", + "md/mood-bad.d.ts", + "md/mood.d.ts", + "md/more-horiz.d.ts", + "md/more-vert.d.ts", + "md/more.d.ts", + "md/motorcycle.d.ts", + "md/mouse.d.ts", + "md/move-to-inbox.d.ts", + "md/movie-creation.d.ts", + "md/movie-filter.d.ts", + "md/movie.d.ts", + "md/multiline-chart.d.ts", + "md/music-note.d.ts", + "md/music-video.d.ts", + "md/my-location.d.ts", + "md/nature-people.d.ts", + "md/nature.d.ts", + "md/navigate-before.d.ts", + "md/navigate-next.d.ts", + "md/navigation.d.ts", + "md/near-me.d.ts", + "md/network-cell.d.ts", + "md/network-check.d.ts", + "md/network-locked.d.ts", + "md/network-wifi.d.ts", + "md/new-releases.d.ts", + "md/next-week.d.ts", + "md/nfc.d.ts", + "md/no-encryption.d.ts", + "md/no-sim.d.ts", + "md/not-interested.d.ts", + "md/note-add.d.ts", + "md/note.d.ts", + "md/notifications-active.d.ts", + "md/notifications-none.d.ts", + "md/notifications-off.d.ts", + "md/notifications-paused.d.ts", + "md/notifications.d.ts", + "md/now-wallpaper.d.ts", + "md/now-widgets.d.ts", + "md/offline-pin.d.ts", + "md/ondemand-video.d.ts", + "md/opacity.d.ts", + "md/open-in-browser.d.ts", + "md/open-in-new.d.ts", + "md/open-with.d.ts", + "md/pages.d.ts", + "md/pageview.d.ts", + "md/palette.d.ts", + "md/pan-tool.d.ts", + "md/panorama-fish-eye.d.ts", + "md/panorama-horizontal.d.ts", + "md/panorama-vertical.d.ts", + "md/panorama-wide-angle.d.ts", + "md/panorama.d.ts", + "md/party-mode.d.ts", + "md/pause-circle-filled.d.ts", + "md/pause-circle-outline.d.ts", + "md/pause.d.ts", + "md/payment.d.ts", + "md/people-outline.d.ts", + "md/people.d.ts", + "md/perm-camera-mic.d.ts", + "md/perm-contact-calendar.d.ts", + "md/perm-data-setting.d.ts", + "md/perm-device-information.d.ts", + "md/perm-identity.d.ts", + "md/perm-media.d.ts", + "md/perm-phone-msg.d.ts", + "md/perm-scan-wifi.d.ts", + "md/person-add.d.ts", + "md/person-outline.d.ts", + "md/person-pin-circle.d.ts", + "md/person-pin.d.ts", + "md/person.d.ts", + "md/personal-video.d.ts", + "md/pets.d.ts", + "md/phone-android.d.ts", + "md/phone-bluetooth-speaker.d.ts", + "md/phone-forwarded.d.ts", + "md/phone-in-talk.d.ts", + "md/phone-iphone.d.ts", + "md/phone-locked.d.ts", + "md/phone-missed.d.ts", + "md/phone-paused.d.ts", + "md/phone.d.ts", + "md/phonelink-erase.d.ts", + "md/phonelink-lock.d.ts", + "md/phonelink-off.d.ts", + "md/phonelink-ring.d.ts", + "md/phonelink-setup.d.ts", + "md/phonelink.d.ts", + "md/photo-album.d.ts", + "md/photo-camera.d.ts", + "md/photo-filter.d.ts", + "md/photo-library.d.ts", + "md/photo-size-select-actual.d.ts", + "md/photo-size-select-large.d.ts", + "md/photo-size-select-small.d.ts", + "md/photo.d.ts", + "md/picture-as-pdf.d.ts", + "md/picture-in-picture-alt.d.ts", + "md/picture-in-picture.d.ts", + "md/pie-chart-outlined.d.ts", + "md/pie-chart.d.ts", + "md/pin-drop.d.ts", + "md/place.d.ts", + "md/play-arrow.d.ts", + "md/play-circle-filled.d.ts", + "md/play-circle-outline.d.ts", + "md/play-for-work.d.ts", + "md/playlist-add-check.d.ts", + "md/playlist-add.d.ts", + "md/playlist-play.d.ts", + "md/plus-one.d.ts", + "md/poll.d.ts", + "md/polymer.d.ts", + "md/pool.d.ts", + "md/portable-wifi-off.d.ts", + "md/portrait.d.ts", + "md/power-input.d.ts", + "md/power-settings-new.d.ts", + "md/power.d.ts", + "md/pregnant-woman.d.ts", + "md/present-to-all.d.ts", + "md/print.d.ts", + "md/priority-high.d.ts", + "md/public.d.ts", + "md/publish.d.ts", + "md/query-builder.d.ts", + "md/question-answer.d.ts", + "md/queue-music.d.ts", + "md/queue-play-next.d.ts", + "md/queue.d.ts", + "md/radio-button-checked.d.ts", + "md/radio-button-unchecked.d.ts", + "md/radio.d.ts", + "md/rate-review.d.ts", + "md/receipt.d.ts", + "md/recent-actors.d.ts", + "md/record-voice-over.d.ts", + "md/redeem.d.ts", + "md/redo.d.ts", + "md/refresh.d.ts", + "md/remove-circle-outline.d.ts", + "md/remove-circle.d.ts", + "md/remove-from-queue.d.ts", + "md/remove-red-eye.d.ts", + "md/remove-shopping-cart.d.ts", + "md/remove.d.ts", + "md/reorder.d.ts", + "md/repeat-one.d.ts", + "md/repeat.d.ts", + "md/replay-10.d.ts", + "md/replay-30.d.ts", + "md/replay-5.d.ts", + "md/replay.d.ts", + "md/reply-all.d.ts", + "md/reply.d.ts", + "md/report-problem.d.ts", + "md/report.d.ts", + "md/restaurant-menu.d.ts", + "md/restaurant.d.ts", + "md/restore-page.d.ts", + "md/restore.d.ts", + "md/ring-volume.d.ts", + "md/room-service.d.ts", + "md/room.d.ts", + "md/rotate-90-degrees-ccw.d.ts", + "md/rotate-left.d.ts", + "md/rotate-right.d.ts", + "md/rounded-corner.d.ts", + "md/router.d.ts", + "md/rowing.d.ts", + "md/rss-feed.d.ts", + "md/rv-hookup.d.ts", + "md/satellite.d.ts", + "md/save.d.ts", + "md/scanner.d.ts", + "md/schedule.d.ts", + "md/school.d.ts", + "md/screen-lock-landscape.d.ts", + "md/screen-lock-portrait.d.ts", + "md/screen-lock-rotation.d.ts", + "md/screen-rotation.d.ts", + "md/screen-share.d.ts", + "md/sd-card.d.ts", + "md/sd-storage.d.ts", + "md/search.d.ts", + "md/security.d.ts", + "md/select-all.d.ts", + "md/send.d.ts", + "md/sentiment-dissatisfied.d.ts", + "md/sentiment-neutral.d.ts", + "md/sentiment-satisfied.d.ts", + "md/sentiment-very-dissatisfied.d.ts", + "md/sentiment-very-satisfied.d.ts", + "md/settings-applications.d.ts", + "md/settings-backup-restore.d.ts", + "md/settings-bluetooth.d.ts", + "md/settings-brightness.d.ts", + "md/settings-cell.d.ts", + "md/settings-ethernet.d.ts", + "md/settings-input-antenna.d.ts", + "md/settings-input-component.d.ts", + "md/settings-input-composite.d.ts", + "md/settings-input-hdmi.d.ts", + "md/settings-input-svideo.d.ts", + "md/settings-overscan.d.ts", + "md/settings-phone.d.ts", + "md/settings-power.d.ts", + "md/settings-remote.d.ts", + "md/settings-system-daydream.d.ts", + "md/settings-voice.d.ts", + "md/settings.d.ts", + "md/share.d.ts", + "md/shop-two.d.ts", + "md/shop.d.ts", + "md/shopping-basket.d.ts", + "md/shopping-cart.d.ts", + "md/short-text.d.ts", + "md/show-chart.d.ts", + "md/shuffle.d.ts", + "md/signal-cellular-4-bar.d.ts", + "md/signal-cellular-connected-no-internet-4-bar.d.ts", + "md/signal-cellular-no-sim.d.ts", + "md/signal-cellular-null.d.ts", + "md/signal-cellular-off.d.ts", + "md/signal-wifi-4-bar-lock.d.ts", + "md/signal-wifi-4-bar.d.ts", + "md/signal-wifi-off.d.ts", + "md/sim-card-alert.d.ts", + "md/sim-card.d.ts", + "md/skip-next.d.ts", + "md/skip-previous.d.ts", + "md/slideshow.d.ts", + "md/slow-motion-video.d.ts", + "md/smartphone.d.ts", + "md/smoke-free.d.ts", + "md/smoking-rooms.d.ts", + "md/sms-failed.d.ts", + "md/sms.d.ts", + "md/snooze.d.ts", + "md/sort-by-alpha.d.ts", + "md/sort.d.ts", + "md/spa.d.ts", + "md/space-bar.d.ts", + "md/speaker-group.d.ts", + "md/speaker-notes-off.d.ts", + "md/speaker-notes.d.ts", + "md/speaker-phone.d.ts", + "md/speaker.d.ts", + "md/spellcheck.d.ts", + "md/star-border.d.ts", + "md/star-half.d.ts", + "md/star-outline.d.ts", + "md/star.d.ts", + "md/stars.d.ts", + "md/stay-current-landscape.d.ts", + "md/stay-current-portrait.d.ts", + "md/stay-primary-landscape.d.ts", + "md/stay-primary-portrait.d.ts", + "md/stop-screen-share.d.ts", + "md/stop.d.ts", + "md/storage.d.ts", + "md/store-mall-directory.d.ts", + "md/store.d.ts", + "md/straighten.d.ts", + "md/streetview.d.ts", + "md/strikethrough-s.d.ts", + "md/style.d.ts", + "md/subdirectory-arrow-left.d.ts", + "md/subdirectory-arrow-right.d.ts", + "md/subject.d.ts", + "md/subscriptions.d.ts", + "md/subtitles.d.ts", + "md/subway.d.ts", + "md/supervisor-account.d.ts", + "md/surround-sound.d.ts", + "md/swap-calls.d.ts", + "md/swap-horiz.d.ts", + "md/swap-vert.d.ts", + "md/swap-vertical-circle.d.ts", + "md/switch-camera.d.ts", + "md/switch-video.d.ts", + "md/sync-disabled.d.ts", + "md/sync-problem.d.ts", + "md/sync.d.ts", + "md/system-update-alt.d.ts", + "md/system-update.d.ts", + "md/tab-unselected.d.ts", + "md/tab.d.ts", + "md/tablet-android.d.ts", + "md/tablet-mac.d.ts", + "md/tablet.d.ts", + "md/tag-faces.d.ts", + "md/tap-and-play.d.ts", + "md/terrain.d.ts", + "md/text-fields.d.ts", + "md/text-format.d.ts", + "md/textsms.d.ts", + "md/texture.d.ts", + "md/theaters.d.ts", + "md/thumb-down.d.ts", + "md/thumb-up.d.ts", + "md/thumbs-up-down.d.ts", + "md/time-to-leave.d.ts", + "md/timelapse.d.ts", + "md/timeline.d.ts", + "md/timer-10.d.ts", + "md/timer-3.d.ts", + "md/timer-off.d.ts", + "md/timer.d.ts", + "md/title.d.ts", + "md/toc.d.ts", + "md/today.d.ts", + "md/toll.d.ts", + "md/tonality.d.ts", + "md/touch-app.d.ts", + "md/toys.d.ts", + "md/track-changes.d.ts", + "md/traffic.d.ts", + "md/train.d.ts", + "md/tram.d.ts", + "md/transfer-within-a-station.d.ts", + "md/transform.d.ts", + "md/translate.d.ts", + "md/trending-down.d.ts", + "md/trending-flat.d.ts", + "md/trending-neutral.d.ts", + "md/trending-up.d.ts", + "md/tune.d.ts", + "md/turned-in-not.d.ts", + "md/turned-in.d.ts", + "md/tv.d.ts", + "md/unarchive.d.ts", + "md/undo.d.ts", + "md/unfold-less.d.ts", + "md/unfold-more.d.ts", + "md/update.d.ts", + "md/usb.d.ts", + "md/verified-user.d.ts", + "md/vertical-align-bottom.d.ts", + "md/vertical-align-center.d.ts", + "md/vertical-align-top.d.ts", + "md/vibration.d.ts", + "md/video-call.d.ts", + "md/video-collection.d.ts", + "md/video-label.d.ts", + "md/video-library.d.ts", + "md/videocam-off.d.ts", + "md/videocam.d.ts", + "md/videogame-asset.d.ts", + "md/view-agenda.d.ts", + "md/view-array.d.ts", + "md/view-carousel.d.ts", + "md/view-column.d.ts", + "md/view-comfortable.d.ts", + "md/view-comfy.d.ts", + "md/view-compact.d.ts", + "md/view-day.d.ts", + "md/view-headline.d.ts", + "md/view-list.d.ts", + "md/view-module.d.ts", + "md/view-quilt.d.ts", + "md/view-stream.d.ts", + "md/view-week.d.ts", + "md/vignette.d.ts", + "md/visibility-off.d.ts", + "md/visibility.d.ts", + "md/voice-chat.d.ts", + "md/voicemail.d.ts", + "md/volume-down.d.ts", + "md/volume-mute.d.ts", + "md/volume-off.d.ts", + "md/volume-up.d.ts", + "md/vpn-key.d.ts", + "md/vpn-lock.d.ts", + "md/wallpaper.d.ts", + "md/warning.d.ts", + "md/watch-later.d.ts", + "md/watch.d.ts", + "md/wb-auto.d.ts", + "md/wb-cloudy.d.ts", + "md/wb-incandescent.d.ts", + "md/wb-iridescent.d.ts", + "md/wb-sunny.d.ts", + "md/wc.d.ts", + "md/web-asset.d.ts", + "md/web.d.ts", + "md/weekend.d.ts", + "md/whatshot.d.ts", + "md/widgets.d.ts", + "md/wifi-lock.d.ts", + "md/wifi-tethering.d.ts", + "md/wifi.d.ts", + "md/work.d.ts", + "md/wrap-text.d.ts", + "md/youtube-searched-for.d.ts", + "md/zoom-in.d.ts", + "md/zoom-out-map.d.ts", + "md/zoom-out.d.ts", + "ti/adjust-brightness.d.ts", + "ti/adjust-contrast.d.ts", + "ti/anchor-outline.d.ts", + "ti/anchor.d.ts", + "ti/archive.d.ts", + "ti/arrow-back-outline.d.ts", + "ti/arrow-back.d.ts", + "ti/arrow-down-outline.d.ts", + "ti/arrow-down-thick.d.ts", + "ti/arrow-down.d.ts", + "ti/arrow-forward-outline.d.ts", + "ti/arrow-forward.d.ts", + "ti/arrow-left-outline.d.ts", + "ti/arrow-left-thick.d.ts", + "ti/arrow-left.d.ts", + "ti/arrow-loop-outline.d.ts", + "ti/arrow-loop.d.ts", + "ti/arrow-maximise-outline.d.ts", + "ti/arrow-maximise.d.ts", + "ti/arrow-minimise-outline.d.ts", + "ti/arrow-minimise.d.ts", + "ti/arrow-move-outline.d.ts", + "ti/arrow-move.d.ts", + "ti/arrow-repeat-outline.d.ts", + "ti/arrow-repeat.d.ts", + "ti/arrow-right-outline.d.ts", + "ti/arrow-right-thick.d.ts", + "ti/arrow-right.d.ts", + "ti/arrow-shuffle.d.ts", + "ti/arrow-sorted-down.d.ts", + "ti/arrow-sorted-up.d.ts", + "ti/arrow-sync-outline.d.ts", + "ti/arrow-sync.d.ts", + "ti/arrow-unsorted.d.ts", + "ti/arrow-up-outline.d.ts", + "ti/arrow-up-thick.d.ts", + "ti/arrow-up.d.ts", + "ti/at.d.ts", + "ti/attachment-outline.d.ts", + "ti/attachment.d.ts", + "ti/backspace-outline.d.ts", + "ti/backspace.d.ts", + "ti/battery-charge.d.ts", + "ti/battery-full.d.ts", + "ti/battery-high.d.ts", + "ti/battery-low.d.ts", + "ti/battery-mid.d.ts", + "ti/beaker.d.ts", + "ti/beer.d.ts", + "ti/bell.d.ts", + "ti/book.d.ts", + "ti/bookmark.d.ts", + "ti/briefcase.d.ts", + "ti/brush.d.ts", + "ti/business-card.d.ts", + "ti/calculator.d.ts", + "ti/calendar-outline.d.ts", + "ti/calendar.d.ts", + "ti/calender-outline.d.ts", + "ti/calender.d.ts", + "ti/camera-outline.d.ts", + "ti/camera.d.ts", + "ti/cancel-outline.d.ts", + "ti/cancel.d.ts", + "ti/chart-area-outline.d.ts", + "ti/chart-area.d.ts", + "ti/chart-bar-outline.d.ts", + "ti/chart-bar.d.ts", + "ti/chart-line-outline.d.ts", + "ti/chart-line.d.ts", + "ti/chart-pie-outline.d.ts", + "ti/chart-pie.d.ts", + "ti/chevron-left-outline.d.ts", + "ti/chevron-left.d.ts", + "ti/chevron-right-outline.d.ts", + "ti/chevron-right.d.ts", + "ti/clipboard.d.ts", + "ti/cloud-storage-outline.d.ts", + "ti/cloud-storage.d.ts", + "ti/code-outline.d.ts", + "ti/code.d.ts", + "ti/coffee.d.ts", + "ti/cog-outline.d.ts", + "ti/cog.d.ts", + "ti/compass.d.ts", + "ti/contacts.d.ts", + "ti/credit-card.d.ts", + "ti/cross.d.ts", + "ti/css3.d.ts", + "ti/database.d.ts", + "ti/delete-outline.d.ts", + "ti/delete.d.ts", + "ti/device-desktop.d.ts", + "ti/device-laptop.d.ts", + "ti/device-phone.d.ts", + "ti/device-tablet.d.ts", + "ti/directions.d.ts", + "ti/divide-outline.d.ts", + "ti/divide.d.ts", + "ti/document-add.d.ts", + "ti/document-delete.d.ts", + "ti/document-text.d.ts", + "ti/document.d.ts", + "ti/download-outline.d.ts", + "ti/download.d.ts", + "ti/dropbox.d.ts", + "ti/edit.d.ts", + "ti/eject-outline.d.ts", + "ti/eject.d.ts", + "ti/equals-outline.d.ts", + "ti/equals.d.ts", + "ti/export-outline.d.ts", + "ti/export.d.ts", + "ti/eye-outline.d.ts", + "ti/eye.d.ts", + "ti/feather.d.ts", + "ti/film.d.ts", + "ti/filter.d.ts", + "ti/flag-outline.d.ts", + "ti/flag.d.ts", + "ti/flash-outline.d.ts", + "ti/flash.d.ts", + "ti/flow-children.d.ts", + "ti/flow-merge.d.ts", + "ti/flow-parallel.d.ts", + "ti/flow-switch.d.ts", + "ti/folder-add.d.ts", + "ti/folder-delete.d.ts", + "ti/folder-open.d.ts", + "ti/folder.d.ts", + "ti/gift.d.ts", + "ti/globe-outline.d.ts", + "ti/globe.d.ts", + "ti/group-outline.d.ts", + "ti/group.d.ts", + "ti/headphones.d.ts", + "ti/heart-full-outline.d.ts", + "ti/heart-half-outline.d.ts", + "ti/heart-outline.d.ts", + "ti/heart.d.ts", + "ti/home-outline.d.ts", + "ti/home.d.ts", + "ti/html5.d.ts", + "ti/image-outline.d.ts", + "ti/image.d.ts", + "ti/infinity-outline.d.ts", + "ti/infinity.d.ts", + "ti/info-large-outline.d.ts", + "ti/info-large.d.ts", + "ti/info-outline.d.ts", + "ti/info.d.ts", + "ti/input-checked-outline.d.ts", + "ti/input-checked.d.ts", + "ti/key-outline.d.ts", + "ti/key.d.ts", + "ti/keyboard.d.ts", + "ti/leaf.d.ts", + "ti/lightbulb.d.ts", + "ti/link-outline.d.ts", + "ti/link.d.ts", + "ti/location-arrow-outline.d.ts", + "ti/location-arrow.d.ts", + "ti/location-outline.d.ts", + "ti/location.d.ts", + "ti/lock-closed-outline.d.ts", + "ti/lock-closed.d.ts", + "ti/lock-open-outline.d.ts", + "ti/lock-open.d.ts", + "ti/mail.d.ts", + "ti/map.d.ts", + "ti/media-eject-outline.d.ts", + "ti/media-eject.d.ts", + "ti/media-fast-forward-outline.d.ts", + "ti/media-fast-forward.d.ts", + "ti/media-pause-outline.d.ts", + "ti/media-pause.d.ts", + "ti/media-play-outline.d.ts", + "ti/media-play-reverse-outline.d.ts", + "ti/media-play-reverse.d.ts", + "ti/media-play.d.ts", + "ti/media-record-outline.d.ts", + "ti/media-record.d.ts", + "ti/media-rewind-outline.d.ts", + "ti/media-rewind.d.ts", + "ti/media-stop-outline.d.ts", + "ti/media-stop.d.ts", + "ti/message-typing.d.ts", + "ti/message.d.ts", + "ti/messages.d.ts", + "ti/microphone-outline.d.ts", + "ti/microphone.d.ts", + "ti/minus-outline.d.ts", + "ti/minus.d.ts", + "ti/mortar-board.d.ts", + "ti/news.d.ts", + "ti/notes-outline.d.ts", + "ti/notes.d.ts", + "ti/pen.d.ts", + "ti/pencil.d.ts", + "ti/phone-outline.d.ts", + "ti/phone.d.ts", + "ti/pi-outline.d.ts", + "ti/pi.d.ts", + "ti/pin-outline.d.ts", + "ti/pin.d.ts", + "ti/pipette.d.ts", + "ti/plane-outline.d.ts", + "ti/plane.d.ts", + "ti/plug.d.ts", + "ti/plus-outline.d.ts", + "ti/plus.d.ts", + "ti/point-of-interest-outline.d.ts", + "ti/point-of-interest.d.ts", + "ti/power-outline.d.ts", + "ti/power.d.ts", + "ti/printer.d.ts", + "ti/puzzle-outline.d.ts", + "ti/puzzle.d.ts", + "ti/radar-outline.d.ts", + "ti/radar.d.ts", + "ti/refresh-outline.d.ts", + "ti/refresh.d.ts", + "ti/rss-outline.d.ts", + "ti/rss.d.ts", + "ti/scissors-outline.d.ts", + "ti/scissors.d.ts", + "ti/shopping-bag.d.ts", + "ti/shopping-cart.d.ts", + "ti/social-at-circular.d.ts", + "ti/social-dribbble-circular.d.ts", + "ti/social-dribbble.d.ts", + "ti/social-facebook-circular.d.ts", + "ti/social-facebook.d.ts", + "ti/social-flickr-circular.d.ts", + "ti/social-flickr.d.ts", + "ti/social-github-circular.d.ts", + "ti/social-github.d.ts", + "ti/social-google-plus-circular.d.ts", + "ti/social-google-plus.d.ts", + "ti/social-instagram-circular.d.ts", + "ti/social-instagram.d.ts", + "ti/social-last-fm-circular.d.ts", + "ti/social-last-fm.d.ts", + "ti/social-linkedin-circular.d.ts", + "ti/social-linkedin.d.ts", + "ti/social-pinterest-circular.d.ts", + "ti/social-pinterest.d.ts", + "ti/social-skype-outline.d.ts", + "ti/social-skype.d.ts", + "ti/social-tumbler-circular.d.ts", + "ti/social-tumbler.d.ts", + "ti/social-twitter-circular.d.ts", + "ti/social-twitter.d.ts", + "ti/social-vimeo-circular.d.ts", + "ti/social-vimeo.d.ts", + "ti/social-youtube-circular.d.ts", + "ti/social-youtube.d.ts", + "ti/sort-alphabetically-outline.d.ts", + "ti/sort-alphabetically.d.ts", + "ti/sort-numerically-outline.d.ts", + "ti/sort-numerically.d.ts", + "ti/spanner-outline.d.ts", + "ti/spanner.d.ts", + "ti/spiral.d.ts", + "ti/star-full-outline.d.ts", + "ti/star-half-outline.d.ts", + "ti/star-half.d.ts", + "ti/star-outline.d.ts", + "ti/star.d.ts", + "ti/starburst-outline.d.ts", + "ti/starburst.d.ts", + "ti/stopwatch.d.ts", + "ti/support.d.ts", + "ti/tabs-outline.d.ts", + "ti/tag.d.ts", + "ti/tags.d.ts", + "ti/th-large-outline.d.ts", + "ti/th-large.d.ts", + "ti/th-list-outline.d.ts", + "ti/th-list.d.ts", + "ti/th-menu-outline.d.ts", + "ti/th-menu.d.ts", + "ti/th-small-outline.d.ts", + "ti/th-small.d.ts", + "ti/thermometer.d.ts", + "ti/thumbs-down.d.ts", + "ti/thumbs-ok.d.ts", + "ti/thumbs-up.d.ts", + "ti/tick-outline.d.ts", + "ti/tick.d.ts", + "ti/ticket.d.ts", + "ti/time.d.ts", + "ti/times-outline.d.ts", + "ti/times.d.ts", + "ti/trash.d.ts", + "ti/tree.d.ts", + "ti/upload-outline.d.ts", + "ti/upload.d.ts", + "ti/user-add-outline.d.ts", + "ti/user-add.d.ts", + "ti/user-delete-outline.d.ts", + "ti/user-delete.d.ts", + "ti/user-outline.d.ts", + "ti/user.d.ts", + "ti/vendor-android.d.ts", + "ti/vendor-apple.d.ts", + "ti/vendor-microsoft.d.ts", + "ti/video-outline.d.ts", + "ti/video.d.ts", + "ti/volume-down.d.ts", + "ti/volume-mute.d.ts", + "ti/volume-up.d.ts", + "ti/volume.d.ts", + "ti/warning-outline.d.ts", + "ti/warning.d.ts", + "ti/watch.d.ts", + "ti/waves-outline.d.ts", + "ti/waves.d.ts", + "ti/weather-cloudy.d.ts", + "ti/weather-downpour.d.ts", + "ti/weather-night.d.ts", + "ti/weather-partly-sunny.d.ts", + "ti/weather-shower.d.ts", + "ti/weather-snow.d.ts", + "ti/weather-stormy.d.ts", + "ti/weather-sunny.d.ts", + "ti/weather-windy-cloudy.d.ts", + "ti/weather-windy.d.ts", + "ti/wi-fi-outline.d.ts", + "ti/wi-fi.d.ts", + "ti/wine.d.ts", + "ti/world-outline.d.ts", + "ti/world.d.ts", + "ti/zoom-in-outline.d.ts", + "ti/zoom-in.d.ts", + "ti/zoom-out-outline.d.ts", + "ti/zoom-out.d.ts", + "ti/zoom-outline.d.ts", + "ti/zoom.d.ts" + ] +} diff --git a/react-icons/tslint.json b/react-icons/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/react-icons/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 5e88519fcb90c06432818d31c10240f8635fcaf2 Mon Sep 17 00:00:00 2001 From: Alexandre Pare Date: Thu, 26 Jan 2017 17:54:33 -0500 Subject: [PATCH 032/231] use the react options --- react-icon-base/tsconfig.json | 11 +++++++---- react-icons/tsconfig.json | 29 ++++++++++++++++------------- 2 files changed, 23 insertions(+), 17 deletions(-) diff --git a/react-icon-base/tsconfig.json b/react-icon-base/tsconfig.json index e4de4aa67e..bb4889e2e9 100644 --- a/react-icon-base/tsconfig.json +++ b/react-icon-base/tsconfig.json @@ -1,10 +1,12 @@ { "compilerOptions": { "module": "commonjs", - "target": "es6", - "jsx": "react", + "lib": [ + "es6", + "dom" + ], "noImplicitAny": true, - "noImplicitThis": true, + "noImplicitThis": false, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ @@ -12,7 +14,8 @@ ], "types": [], "noEmit": true, - "forceConsistentCasingInFileNames": true + "forceConsistentCasingInFileNames": true, + "jsx": "preserve" }, "files": [ "index.d.ts", diff --git a/react-icons/tsconfig.json b/react-icons/tsconfig.json index aca9aaa5aa..94d6cfa190 100644 --- a/react-icons/tsconfig.json +++ b/react-icons/tsconfig.json @@ -1,18 +1,21 @@ { "compilerOptions": { - "module": "commonjs", - "target": "es6", - "jsx": "react", - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "baseUrl": "../", - "typeRoots": [ - "../" - ], - "types": [], - "noEmit": true, - "forceConsistentCasingInFileNames": true + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": false, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true, + "jsx": "preserve" }, "files": [ "index.d.ts", From f779d76ed73db107c45271ff1ee12f6a62a636bf Mon Sep 17 00:00:00 2001 From: Karol Janyst Date: Fri, 27 Jan 2017 11:37:10 +0900 Subject: [PATCH 033/231] Set target compiler to 2.1 --- react-json-pretty/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/react-json-pretty/index.d.ts b/react-json-pretty/index.d.ts index 5ca8bbf13b..bf165faaf5 100644 --- a/react-json-pretty/index.d.ts +++ b/react-json-pretty/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/chenckang/react-json-pretty // Definitions by: Karol Janyst // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 import { ComponentClass, HTMLProps } from "react"; From fb08851a25f29a204d33e6ac45642c64acc341c0 Mon Sep 17 00:00:00 2001 From: Vilmos Ioo Date: Fri, 27 Jan 2017 11:02:08 +0000 Subject: [PATCH 034/231] Allowing any arguments to be passed for callsFake --- sinon/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sinon/index.d.ts b/sinon/index.d.ts index b80c13a696..be0d3820bb 100644 --- a/sinon/index.d.ts +++ b/sinon/index.d.ts @@ -109,7 +109,7 @@ declare namespace Sinon { callsArgOnAsync(index: number, context: any): SinonStub; callsArgWithAsync(index: number, ...args: any[]): SinonStub; callsArgOnWithAsync(index: number, context: any, ...args: any[]): SinonStub; - callsFake(func: any): SinonStub; + callsFake(...args: any[]): SinonStub; onCall(n: number): SinonStub; onFirstCall(): SinonStub; onSecondCall(): SinonStub; From c3722d57d50e9787c8e39b5dc2081dd340768f57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1mal=20Rasmussen?= Date: Fri, 27 Jan 2017 14:54:02 +0100 Subject: [PATCH 035/231] Export lodash-es types as named exports in index.d.ts --- lodash-es/index.d.ts | 284 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 284 insertions(+) diff --git a/lodash-es/index.d.ts b/lodash-es/index.d.ts index 71f98587ff..1c5cdc044c 100644 --- a/lodash-es/index.d.ts +++ b/lodash-es/index.d.ts @@ -2,3 +2,287 @@ // Project: http://lodash.com/ // Definitions by: Stephen Lautier // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +export { default as add } from './add'; +export { default as after } from './after'; +export { default as ary } from './ary'; +export { default as assign } from './assign'; +export { default as assignIn } from './assignIn'; +export { default as assignInWith } from './assignInWith'; +export { default as assignWith } from './assignWith'; +export { default as at } from './at'; +export { default as attempt } from './attempt'; +export { default as before } from './before'; +export { default as bind } from './bind'; +export { default as bindAll } from './bindAll'; +export { default as bindKey } from './bindKey'; +export { default as camelCase } from './camelCase'; +export { default as capitalize } from './capitalize'; +export { default as castArray } from './castArray'; +export { default as ceil } from './ceil'; +export { default as chain } from './chain'; +export { default as chunk } from './chunk'; +export { default as clamp } from './clamp'; +export { default as clone } from './clone'; +export { default as cloneDeep } from './cloneDeep'; +export { default as cloneDeepWith } from './cloneDeepWith'; +export { default as cloneWith } from './cloneWith'; +export { default as compact } from './compact'; +export { default as concat } from './concat'; +export { default as constant } from './constant'; +export { default as countBy } from './countBy'; +export { default as create } from './create'; +export { default as curry } from './curry'; +export { default as curryRight } from './curryRight'; +export { default as debounce } from './debounce'; +export { default as deburr } from './deburr'; +export { default as defaults } from './defaults'; +export { default as defaultsDeep } from './defaultsDeep'; +export { default as defer } from './defer'; +export { default as delay } from './delay'; +export { default as difference } from './difference'; +export { default as differenceBy } from './differenceBy'; +export { default as differenceWith } from './differenceWith'; +export { default as drop } from './drop'; +export { default as dropRight } from './dropRight'; +export { default as dropRightWhile } from './dropRightWhile'; +export { default as dropWhile } from './dropWhile'; +export { default as each } from './each'; +export { default as eachRight } from './eachRight'; +export { default as endsWith } from './endsWith'; +export { default as eq } from './eq'; +export { default as escape } from './escape'; +export { default as escapeRegExp } from './escapeRegExp'; +export { default as every } from './every'; +export { default as extend } from './extend'; +export { default as extendWith } from './extendWith'; +export { default as fill } from './fill'; +export { default as filter } from './filter'; +export { default as find } from './find'; +export { default as findIndex } from './findIndex'; +export { default as findKey } from './findKey'; +export { default as findLast } from './findLast'; +export { default as findLastIndex } from './findLastIndex'; +export { default as findLastKey } from './findLastKey'; +export { default as first } from './first'; +export { default as flatMap } from './flatMap'; +export { default as flatten } from './flatten'; +export { default as flattenDeep } from './flattenDeep'; +export { default as flattenDepth } from './flattenDepth'; +export { default as flip } from './flip'; +export { default as floor } from './floor'; +export { default as flow } from './flow'; +export { default as flowRight } from './flowRight'; +export { default as forEach } from './forEach'; +export { default as forEachRight } from './forEachRight'; +export { default as forIn } from './forIn'; +export { default as forInRight } from './forInRight'; +export { default as forOwn } from './forOwn'; +export { default as forOwnRight } from './forOwnRight'; +export { default as fromPairs } from './fromPairs'; +export { default as functions } from './functions'; +export { default as functionsIn } from './functionsIn'; +export { default as get } from './get'; +export { default as groupBy } from './groupBy'; +export { default as gt } from './gt'; +export { default as gte } from './gte'; +export { default as has } from './has'; +export { default as hasIn } from './hasIn'; +export { default as head } from './head'; +export { default as identity } from './identity'; +export { default as inRange } from './inRange'; +export { default as includes } from './includes'; +export { default as indexOf } from './indexOf'; +export { default as initial } from './initial'; +export { default as intersection } from './intersection'; +export { default as intersectionBy } from './intersectionBy'; +export { default as intersectionWith } from './intersectionWith'; +export { default as invert } from './invert'; +export { default as invertBy } from './invertBy'; +export { default as invoke } from './invoke'; +export { default as invokeMap } from './invokeMap'; +export { default as isArguments } from './isArguments'; +export { default as isArray } from './isArray'; +export { default as isArrayBuffer } from './isArrayBuffer'; +export { default as isArrayLike } from './isArrayLike'; +export { default as isArrayLikeObject } from './isArrayLikeObject'; +export { default as isBoolean } from './isBoolean'; +export { default as isBuffer } from './isBuffer'; +export { default as isDate } from './isDate'; +export { default as isElement } from './isElement'; +export { default as isEmpty } from './isEmpty'; +export { default as isEqual } from './isEqual'; +export { default as isEqualWith } from './isEqualWith'; +export { default as isError } from './isError'; +export { default as isFinite } from './isFinite'; +export { default as isFunction } from './isFunction'; +export { default as isInteger } from './isInteger'; +export { default as isLength } from './isLength'; +export { default as isMap } from './isMap'; +export { default as isMatch } from './isMatch'; +export { default as isMatchWith } from './isMatchWith'; +export { default as isNaN } from './isNaN'; +export { default as isNative } from './isNative'; +export { default as isNil } from './isNil'; +export { default as isNull } from './isNull'; +export { default as isNumber } from './isNumber'; +export { default as isObject } from './isObject'; +export { default as isObjectLike } from './isObjectLike'; +export { default as isPlainObject } from './isPlainObject'; +export { default as isRegExp } from './isRegExp'; +export { default as isSafeInteger } from './isSafeInteger'; +export { default as isSet } from './isSet'; +export { default as isString } from './isString'; +export { default as isSymbol } from './isSymbol'; +export { default as isTypedArray } from './isTypedArray'; +export { default as isUndefined } from './isUndefined'; +export { default as isWeakMap } from './isWeakMap'; +export { default as isWeakSet } from './isWeakSet'; +export { default as iteratee } from './iteratee'; +export { default as join } from './join'; +export { default as kebabCase } from './kebabCase'; +export { default as keyBy } from './keyBy'; +export { default as keys } from './keys'; +export { default as keysIn } from './keysIn'; +export { default as last } from './last'; +export { default as lastIndexOf } from './lastIndexOf'; +export { default as lowerCase } from './lowerCase'; +export { default as lowerFirst } from './lowerFirst'; +export { default as lt } from './lt'; +export { default as lte } from './lte'; +export { default as map } from './map'; +export { default as mapKeys } from './mapKeys'; +export { default as mapValues } from './mapValues'; +export { default as matches } from './matches'; +export { default as matchesProperty } from './matchesProperty'; +export { default as max } from './max'; +export { default as maxBy } from './maxBy'; +export { default as mean } from './mean'; +export { default as meanBy } from './meanBy'; +export { default as memoize } from './memoize'; +export { default as merge } from './merge'; +export { default as mergeWith } from './mergeWith'; +export { default as method } from './method'; +export { default as methodOf } from './methodOf'; +export { default as min } from './min'; +export { default as minBy } from './minBy'; +export { default as mixin } from './mixin'; +export { default as negate } from './negate'; +export { default as noop } from './noop'; +export { default as now } from './now'; +export { default as nthArg } from './nthArg'; +export { default as omit } from './omit'; +export { default as omitBy } from './omitBy'; +export { default as once } from './once'; +export { default as orderBy } from './orderBy'; +export { default as over } from './over'; +export { default as overArgs } from './overArgs'; +export { default as overEvery } from './overEvery'; +export { default as overSome } from './overSome'; +export { default as pad } from './pad'; +export { default as padEnd } from './padEnd'; +export { default as padStart } from './padStart'; +export { default as parseInt } from './parseInt'; +export { default as partial } from './partial'; +export { default as partialRight } from './partialRight'; +export { default as partition } from './partition'; +export { default as pick } from './pick'; +export { default as pickBy } from './pickBy'; +export { default as property } from './property'; +export { default as propertyOf } from './propertyOf'; +export { default as pull } from './pull'; +export { default as pullAll } from './pullAll'; +export { default as pullAllBy } from './pullAllBy'; +export { default as pullAt } from './pullAt'; +export { default as random } from './random'; +export { default as range } from './range'; +export { default as rangeRight } from './rangeRight'; +export { default as rearg } from './rearg'; +export { default as reduce } from './reduce'; +export { default as reduceRight } from './reduceRight'; +export { default as reject } from './reject'; +export { default as remove } from './remove'; +export { default as repeat } from './repeat'; +export { default as replace } from './replace'; +export { default as rest } from './rest'; +export { default as result } from './result'; +export { default as reverse } from './reverse'; +export { default as round } from './round'; +export { default as sample } from './sample'; +export { default as sampleSize } from './sampleSize'; +export { default as set } from './set'; +export { default as setWith } from './setWith'; +export { default as shuffle } from './shuffle'; +export { default as size } from './size'; +export { default as slice } from './slice'; +export { default as snakeCase } from './snakeCase'; +export { default as some } from './some'; +export { default as sortBy } from './sortBy'; +export { default as sortedIndex } from './sortedIndex'; +export { default as sortedIndexBy } from './sortedIndexBy'; +export { default as sortedIndexOf } from './sortedIndexOf'; +export { default as sortedLastIndex } from './sortedLastIndex'; +export { default as sortedLastIndexBy } from './sortedLastIndexBy'; +export { default as sortedLastIndexOf } from './sortedLastIndexOf'; +export { default as sortedUniq } from './sortedUniq'; +export { default as sortedUniqBy } from './sortedUniqBy'; +export { default as split } from './split'; +export { default as spread } from './spread'; +export { default as startCase } from './startCase'; +export { default as startsWith } from './startsWith'; +export { default as subtract } from './subtract'; +export { default as sum } from './sum'; +export { default as sumBy } from './sumBy'; +export { default as tail } from './tail'; +export { default as take } from './take'; +export { default as takeRight } from './takeRight'; +export { default as takeRightWhile } from './takeRightWhile'; +export { default as takeWhile } from './takeWhile'; +export { default as tap } from './tap'; +export { default as template } from './template'; +export { default as throttle } from './throttle'; +export { default as thru } from './thru'; +export { default as times } from './times'; +export { default as toArray } from './toArray'; +export { default as toInteger } from './toInteger'; +export { default as toLength } from './toLength'; +export { default as toLower } from './toLower'; +export { default as toNumber } from './toNumber'; +export { default as toPairs } from './toPairs'; +export { default as toPairsIn } from './toPairsIn'; +export { default as toPath } from './toPath'; +export { default as toPlainObject } from './toPlainObject'; +export { default as toSafeInteger } from './toSafeInteger'; +export { default as toString } from './toString'; +export { default as toUpper } from './toUpper'; +export { default as transform } from './transform'; +export { default as trim } from './trim'; +export { default as trimEnd } from './trimEnd'; +export { default as trimStart } from './trimStart'; +export { default as truncate } from './truncate'; +export { default as unary } from './unary'; +export { default as unescape } from './unescape'; +export { default as union } from './union'; +export { default as unionBy } from './unionBy'; +export { default as unionWith } from './unionWith'; +export { default as uniq } from './uniq'; +export { default as uniqBy } from './uniqBy'; +export { default as uniqWith } from './uniqWith'; +export { default as uniqueId } from './uniqueId'; +export { default as unset } from './unset'; +export { default as unzip } from './unzip'; +export { default as unzipWith } from './unzipWith'; +export { default as update } from './update'; +export { default as upperCase } from './upperCase'; +export { default as upperFirst } from './upperFirst'; +export { default as values } from './values'; +export { default as valuesIn } from './valuesIn'; +export { default as without } from './without'; +export { default as words } from './words'; +export { default as wrap } from './wrap'; +export { default as xor } from './xor'; +export { default as xorBy } from './xorBy'; +export { default as xorWith } from './xorWith'; +export { default as zip } from './zip'; +export { default as zipObject } from './zipObject'; +export { default as zipWith } from './zipWith'; From 16e5b26b3da67b6f1f693af4666db65c10596dbe Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Fri, 27 Jan 2017 17:22:50 +0100 Subject: [PATCH 036/231] Refactor td for leaflet and geojson --- geojson/geojson-tests.ts | 127 +- geojson/index.d.ts | 90 +- geojson/tslint.json | 1 + leaflet/index.d.ts | 2701 +++++++++++++++++++------------------- leaflet/leaflet-tests.ts | 30 + leaflet/tslint.json | 1 + 6 files changed, 1547 insertions(+), 1403 deletions(-) create mode 100644 geojson/tslint.json create mode 100644 leaflet/tslint.json diff --git a/geojson/geojson-tests.ts b/geojson/geojson-tests.ts index dc3432f48c..50b5f7b396 100644 --- a/geojson/geojson-tests.ts +++ b/geojson/geojson-tests.ts @@ -1,26 +1,27 @@ -var featureCollection: GeoJSON.FeatureCollection = { +import GeometryObject = GeoJSON.GeometryObject; +let featureCollection: GeoJSON.FeatureCollection = { type: "FeatureCollection", - features: [ - { + features: [ + { type: "Feature", geometry: { - type: "Point", + type: "Point", coordinates: [102.0, 0.5] }, properties: { prop0: "value0" } }, - { + { type: "Feature", geometry: { type: "LineString", coordinates: [ - [102.0, 0.0], - [103.0, 1.0], - [104.0, 0.0], + [102.0, 0.0], + [103.0, 1.0], + [104.0, 0.0], [105.0, 1.0] ] }, @@ -29,7 +30,7 @@ var featureCollection: GeoJSON.FeatureCollection = { prop1: 0.0 } }, - { + { type: "Feature", geometry: { type: "Polygon", @@ -52,9 +53,9 @@ var featureCollection: GeoJSON.FeatureCollection = { type: "proj4" } } -} +}; -var feature: GeoJSON.Feature = { +let featureWithPolygon: GeoJSON.Feature = { type: "Feature", bbox: [-180.0, -90.0, 180.0, 90.0], geometry: { @@ -67,29 +68,29 @@ var feature: GeoJSON.Feature = { }; -var point: GeoJSON.Point = { +let point: GeoJSON.Point = { type: "Point", coordinates: [100.0, 0.0] }; // This type is commonly used in the turf package -var pointCoordinates: number[] = point.coordinates +let pointCoordinates: number[] = point.coordinates; -var lineString: GeoJSON.LineString = { +let lineString: GeoJSON.LineString = { type: "LineString", coordinates: [ [100.0, 0.0], [101.0, 1.0] ] }; -var polygon: GeoJSON.Polygon = { +let polygon: GeoJSON.Polygon = { type: "Polygon", coordinates: [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ] ] }; -var polygonWithHole: GeoJSON.Polygon = { +let polygonWithHole: GeoJSON.Polygon = { type: "Polygon", coordinates: [ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ], @@ -97,12 +98,12 @@ var polygonWithHole: GeoJSON.Polygon = { ] }; -var multiPoint: GeoJSON.MultiPoint = { +let multiPoint: GeoJSON.MultiPoint = { type: "MultiPoint", coordinates: [ [100.0, 0.0], [101.0, 1.0] ] }; -var multiLineString: GeoJSON.MultiLineString = { +let multiLineString: GeoJSON.MultiLineString = { type: "MultiLineString", coordinates: [ [ [100.0, 0.0], [101.0, 1.0] ], @@ -110,25 +111,103 @@ var multiLineString: GeoJSON.MultiLineString = { ] }; -var multiPolygon: GeoJSON.MultiPolygon = { +let multiPolygon: GeoJSON.MultiPolygon = { type: "MultiPolygon", coordinates: [ [[[102.0, 2.0], [103.0, 2.0], [103.0, 3.0], [102.0, 3.0], [102.0, 2.0]]], [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]], [[100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2]]] ] -} +}; -var geometryCollection: GeoJSON.GeometryCollection = { +let geometryCollection: GeoJSON.GeometryCollection = { type: "GeometryCollection", "geometries": [ - { + { type: "Point", coordinates: [100.0, 0.0] }, - { + { type: "LineString", coordinates: [ [101.0, 0.0], [102.0, 1.0] ] } ] -} \ No newline at end of file +}; + +let feature: GeoJSON.Feature = { + type: "Feature", + geometry: lineString, + properties: null +}; +feature = { + type: "Feature", + geometry: polygon, + properties: null +}; +feature = { + type: "Feature", + geometry: polygonWithHole, + properties: null +}; +feature = { + type: "Feature", + geometry: multiPoint, + properties: null +}; +feature = { + type: "Feature", + geometry: multiLineString, + properties: null +}; +feature = { + type: "Feature", + geometry: multiPolygon, + properties: null +}; +feature = { + type: "Feature", + geometry: geometryCollection, + properties: null +}; + +featureCollection = { + type: "FeatureCollection", + features: [ + { + type: "Feature", + geometry: lineString, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: polygon, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: polygonWithHole, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: multiPoint, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: multiLineString, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: multiPolygon, + properties: {test: 'OK'} + }, { + type: "Feature", + geometry: geometryCollection, + properties: {test: 'OK'} + } + ], + crs: { + type: "link", + properties: { + href: "http://example.com/crs/42", + type: "proj4" + } + } +}; diff --git a/geojson/index.d.ts b/geojson/index.d.ts index f6261d81fe..b38106aae7 100644 --- a/geojson/index.d.ts +++ b/geojson/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for GeoJSON Format Specification +// Type definitions for GeoJSON Format Specification Revision 1.0 // Project: http://geojson.org/ // Definitions by: Jacob Bruun // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -8,8 +8,7 @@ declare namespace GeoJSON { /*** * http://geojson.org/geojson-spec.html#geojson-objects */ - export interface GeoJsonObject - { + export interface GeoJsonObject { type: string; bbox?: number[]; crs?: CoordinateReferenceSystem; @@ -18,116 +17,107 @@ declare namespace GeoJSON { /*** * http://geojson.org/geojson-spec.html#positions */ - export type Position = number[] + export type Position = number[]; /*** * http://geojson.org/geojson-spec.html#geometry-objects */ - export interface GeometryObject extends GeoJsonObject - { - coordinates: any + export interface DirectGeometryObject extends GeoJsonObject { + coordinates: Position[][][] | Position[][] | Position[] | Position; } + /** + * GeometryObject supports geometry collection as well + */ + export type GeometryObject = DirectGeometryObject | GeometryCollection; /*** * http://geojson.org/geojson-spec.html#point */ - export interface Point extends GeometryObject - { - type: 'Point' - coordinates: Position + export interface Point extends DirectGeometryObject { + type: 'Point'; + coordinates: Position; } /*** * http://geojson.org/geojson-spec.html#multipoint */ - export interface MultiPoint extends GeometryObject - { - type: 'MultiPoint' - coordinates: Position[] + export interface MultiPoint extends DirectGeometryObject { + type: 'MultiPoint'; + coordinates: Position[]; } /*** * http://geojson.org/geojson-spec.html#linestring */ - export interface LineString extends GeometryObject - { - type: 'LineString' - coordinates: Position[] + export interface LineString extends DirectGeometryObject { + type: 'LineString'; + coordinates: Position[]; } /*** * http://geojson.org/geojson-spec.html#multilinestring */ - export interface MultiLineString extends GeometryObject - { - type: 'MultiLineString' - coordinates: Position[][] + export interface MultiLineString extends DirectGeometryObject { + type: 'MultiLineString'; + coordinates: Position[][]; } /*** * http://geojson.org/geojson-spec.html#polygon */ - export interface Polygon extends GeometryObject - { - type: 'Polygon' - coordinates: Position[][] + export interface Polygon extends DirectGeometryObject { + type: 'Polygon'; + coordinates: Position[][]; } /*** * http://geojson.org/geojson-spec.html#multipolygon */ - export interface MultiPolygon extends GeometryObject - { - type: 'MultiPolygon' - coordinates: Position[][][] + export interface MultiPolygon extends DirectGeometryObject { + type: 'MultiPolygon'; + coordinates: Position[][][]; } /*** * http://geojson.org/geojson-spec.html#geometry-collection */ - export interface GeometryCollection extends GeoJsonObject - { - type: 'GeometryCollection' + export interface GeometryCollection extends GeoJsonObject { + type: 'GeometryCollection'; geometries: GeometryObject[]; } /*** * http://geojson.org/geojson-spec.html#feature-objects */ - export interface Feature extends GeoJsonObject - { - type: 'Feature' + export interface Feature extends GeoJsonObject { + type: 'Feature'; geometry: T; - properties: any; + properties: {} | null; id?: string; } /*** * http://geojson.org/geojson-spec.html#feature-collection-objects */ - export interface FeatureCollection extends GeoJsonObject - { - type: 'FeatureCollection' - features: Feature[]; + export interface FeatureCollection extends GeoJsonObject { + type: 'FeatureCollection'; + features: Array>; } /*** * http://geojson.org/geojson-spec.html#coordinate-reference-system-objects */ - export interface CoordinateReferenceSystem - { + export interface CoordinateReferenceSystem { type: string; properties: any; } - export interface NamedCoordinateReferenceSystem extends CoordinateReferenceSystem - { - properties: { name: string } + export interface NamedCoordinateReferenceSystem extends CoordinateReferenceSystem { + properties: { name: string }; } - export interface LinkedCoordinateReferenceSystem extends CoordinateReferenceSystem - { - properties: { href: string; type: string } + export interface LinkedCoordinateReferenceSystem extends CoordinateReferenceSystem { + properties: { href: string; type: string }; } } diff --git a/geojson/tslint.json b/geojson/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/geojson/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 4112082f54..b62695dd10 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -1,1459 +1,1502 @@ -// Type definitions for Leaflet.js 1.0.2 +// Type definitions for Leaflet.js 1.0 // Project: https://github.com/Leaflet/Leaflet // Definitions by: Alejandro Sánchez // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -/// - type NativeMouseEvent = MouseEvent; type NativeKeyboardEvent = KeyboardEvent; -declare namespace L { - export class Class { - static extend(props: any): any/* how to return constructor of self extended type ? */; - static include(props: any): any /* how to return self extended type ? */; - static mergeOptions(props: any): any /* how to return self extended type ? */; - static addInitHook(initHookFn: () => void): any/* how to return self extended type ? */; - } +import * as GeoJSONDefinition from 'geojson'; - export class Transformation { - constructor(a: number, b: number, c: number, d: number); +export class Class { + static extend(props: any): any/* how to return constructor of self extended type ? */; + static include(props: any): any /* how to return self extended type ? */; + static mergeOptions(props: any): any /* how to return self extended type ? */; + static addInitHook(initHookFn: () => void): any/* how to return self extended type ? */; +} - transform(point: Point, scale?: number): Point; +export class Transformation { + constructor(a: number, b: number, c: number, d: number); - untransform(point: Point, scale?: number): Point; - } + transform(point: Point, scale?: number): Point; - export namespace LineUtil { - export function simplify(points: Array, tolerance: number): Array; + untransform(point: Point, scale?: number): Point; +} - export function simplify(points: Array, tolerance: number): Array; +export namespace LineUtil { + export function simplify(points: PointExpression[], tolerance: number): Point[]; - export function pointToSegmentDistance(p: Point, p1: Point, p2: Point): number; + export function pointToSegmentDistance(p: PointExpression, p1: PointExpression, p2: PointExpression): number; - export function pointToSegmentDistance(p: PointTuple, p1: PointTuple, p2: PointTuple): number; + export function closestPointOnSegment(p: PointExpression, p1: PointExpression, p2: PointExpression): Point; +} - export function closestPointOnSegment(p: Point, p1: Point, p2: Point): Point; +export namespace PolyUtil { + export function clipPolygon(points: PointExpression[], bounds: BoundsExpression, round?: boolean): Point[]; +} - export function closestPointOnSegment(p: PointTuple, p1: PointTuple, p2: PointTuple): Point; - } +export class DomUtil { + /** + * Get Element by its ID or with the given HTML-Element + */ + static get(element: string | HTMLElement): HTMLElement; + static getStyle(el: HTMLElement, styleAttrib: string): string; + static create(tagName: string, className?: string, container?: HTMLElement): HTMLElement; + static remove(el: HTMLElement): void; + static empty(el: HTMLElement): void; + static toFront(el: HTMLElement): void; + static toBack(el: HTMLElement): void; + static hasClass(el: HTMLElement, name: string): boolean; + static addClass(el: HTMLElement, name: string): void; + static removeClass(el: HTMLElement, name: string): void; + static setClass(el: HTMLElement, name: string): void; + static getClass(el: HTMLElement): string; + static setOpacity(el: HTMLElement, opacity: number): void; + static testProp(props: string[]): string | boolean/*=false*/; + static setTransform(el: HTMLElement, offset: Point, scale?: number): void; + static setPosition(el: HTMLElement, position: Point): void; + static getPosition(el: HTMLElement): Point; + static disableTextSelection(): void; + static enableTextSelection(): void; + static disableImageDrag(): void; + static enableImageDrag(): void; + static preventOutline(el: HTMLElement): void; + static restoreOutline(): void; +} - export namespace PolyUtil { - export function clipPolygon(points: Array, bounds: Bounds, round?: boolean): Array; +export abstract class CRS { + latLngToPoint(latlng: LatLngExpression, zoom: number): Point; + pointToLatLng(point: PointExpression, zoom: number): LatLng; + project(latlng: LatLngExpression): Point; + unproject(point: PointExpression): LatLng; + scale(zoom: number): number; + zoom(scale: number): number; + getProjectedBounds(zoom: number): Bounds; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + wrapLatLng(latlng: LatLngExpression): LatLng; - export function clipPolygon(points: Array, bounds: BoundsLiteral, round?: boolean): Array; - } + code: string; + wrapLng: [number, number]; + wrapLat: [number, number]; + infinite: boolean; +} - export class DomUtil { - static get(id: string): HTMLElement; - static get(id: HTMLElement): HTMLElement; - static getStyle(el: HTMLElement, styleAttrib: string): string; - static create(tagName: String, className?: String, container?: HTMLElement): HTMLElement; - static remove(el: HTMLElement):void; - static empty(el: HTMLElement):void; - static toFront(el: HTMLElement):void; - static toBack(el: HTMLElement):void; - static hasClass(el: HTMLElement, name: String): Boolean; - static addClass(el: HTMLElement, name: String):void; - static removeClass(el: HTMLElement, name: String):void; - static setClass(el: HTMLElement, name: String):void; - static getClass(el: HTMLElement): String; - static setOpacity(el: HTMLElement, opacity: Number):void; - static testProp(props: String[]): String|boolean/*=false*/; - static setTransform(el: HTMLElement, offset: Point, scale?: Number):void; - static setPosition(el: HTMLElement, position: Point):void; - static getPosition(el: HTMLElement): Point; - static disableTextSelection(): void; - static enableTextSelection(): void; - static disableImageDrag(): void; - static enableImageDrag(): void; - static preventOutline(el: HTMLElement): void; - static restoreOutline(): void; - } +export namespace CRS { + export const EPSG3395: CRS; + export const EPSG3857: CRS; + export const EPSG4326: CRS; + export const Earth: CRS; + export const Simple: CRS; +} - export interface CRS { - latLngToPoint(latlng: LatLngExpression, zoom: number): Point; - pointToLatLng(point: PointExpression, zoom: number): LatLng; - project(latlng: LatLngExpression): Point; - unproject(point: PointExpression): LatLng; - scale(zoom: number): number; - zoom(scale: number): number; - getProjectedBounds(zoom: number): Bounds; - distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; - wrapLatLng(latlng: LatLngExpression): LatLng; +export interface Projection { + project(latlng: LatLngExpression): Point; + unproject(point: PointExpression): LatLng; - code: string; - wrapLng: [number, number]; - wrapLat: [number, number]; - infinite: boolean; - } + bounds: LatLngBounds; +} - export namespace CRS { - export const EPSG3395: CRS; - export const EPSG3857: CRS; - export const EPSG4326: CRS; - export const Earth: CRS; - export const Simple: CRS; - } +export namespace Projection { + export const LonLat: Projection; + export const Mercator: Projection; + export const SphericalMercator: Projection; +} - export interface Projection { - project(latlng: LatLngExpression): Point; - unproject(point: PointExpression): LatLng; +export class LatLng { + constructor(latitude: number, longitude: number, altitude?: number); + constructor(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}); + equals(otherLatLng: LatLngExpression, maxMargin?: number): boolean; + toString(): string; + distanceTo(otherLatLng: LatLngExpression): number; + wrap(): LatLng; + toBounds(sizeInMeters: number): LatLngBounds; - bounds: LatLngBounds; - } + lat: number; + lng: number; + alt: number; +} - export namespace Projection { - export const LonLat: Projection; - export const Mercator: Projection; - export const SphericalMercator: Projection; - } +export interface LatLngLiteral { + lat: number; + lng: number; +} - export interface LatLng { - equals(otherLatLng: LatLngExpression, maxMargin?: number): boolean; - toString(): string; - distanceTo(otherLatLng: LatLngExpression): number; - wrap(): LatLng; - toBounds(sizeInMeters: number): LatLngBounds; +export type LatLngTuple = [number, number]; - lat: number; - lng: number; - alt: number; - } +type LatLngExpression = LatLng | LatLngLiteral | LatLngTuple; - export interface LatLngLiteral { - lat: number; - lng: number; - } +export function latLng(latitude: number, longitude: number, altitude?: number): LatLng; - export type LatLngTuple = [number, number]; +export function latLng(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}): LatLng; - type LatLngExpression = LatLng | LatLngLiteral | LatLngTuple; +export class LatLngBounds { + constructor(southWest: LatLngExpression, northEast: LatLngExpression); + constructor(latlngs: LatLngBoundsLiteral); + extend(latlngOrBounds: LatLngExpression | LatLngBoundsExpression): this; + pad(bufferRatio: number): LatLngBounds; // does this modify the current instance or does it return a new one? + getCenter(): LatLng; + getSouthWest(): LatLng; + getNorthEast(): LatLng; + getNorthWest(): LatLng; + getSouthEast(): LatLng; + getWest(): number; + getSouth(): number; + getEast(): number; + getNorth(): number; + contains(otherBoundsOrLatLng: LatLngBoundsExpression | LatLngExpression): boolean; + intersects(otherBounds: LatLngBoundsExpression): boolean; + overlaps(otherBounds: BoundsExpression): boolean; // investigate if this is really bounds and not latlngbounds + toBBoxString(): string; + equals(otherBounds: LatLngBoundsExpression): boolean; + isValid(): boolean; +} - export function latLng(latitude: number, longitude: number, altitude?: number): LatLng; +export type LatLngBoundsLiteral = LatLngTuple[]; - export function latLng(coords: LatLngTuple): LatLng; +type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; - export function latLng(coords: [number, number, number]): LatLng; +export function latLngBounds(southWest: LatLngExpression, northEast: LatLngExpression): LatLngBounds; - export function latLng(coords: LatLngLiteral): LatLng; +export function latLngBounds(latlngs: LatLngBoundsLiteral): LatLngBounds; - export function latLng(coords: {lat: number, lng: number, alt: number}): LatLng; +export type PointTuple = [number, number]; - export interface LatLngBounds { - extend(latlng: LatLngExpression): this; - extend(otherBounds: LatLngBoundsExpression): this; - pad(bufferRatio: number): LatLngBounds; // does this modify the current instance or does it return a new one? - getCenter(): LatLng; - getSouthWest(): LatLng; - getNorthEast(): LatLng; - getNorthWest(): LatLng; - getSouthEast(): LatLng; - getWest(): number; - getSouth(): number; - getEast(): number; - getNorth(): number; - contains(otherBounds: LatLngBoundsExpression): boolean; - contains(latlng: LatLngExpression): boolean; - intersects(otherBounds: LatLngBoundsExpression): boolean; - overlaps(otherBounds: BoundsExpression): boolean; // investigate if this is really bounds and not latlngbounds - toBBoxString(): string; - equals(otherBounds: LatLngBoundsExpression): boolean; - isValid(): boolean; - } +export class Point { + constructor(x: number, y: number, round?: boolean); + constructor(coords: PointTuple | {x: number, y: number}); + clone(): Point; + add(otherPoint: PointExpression): Point; // investigate if this mutates or returns a new instance + subtract(otherPoint: PointExpression): Point; + divideBy(num: number): Point; + multiplyBy(num: number): Point; + scaleBy(scale: PointExpression): Point; + unscaleBy(scale: PointExpression): Point; + round(): Point; + floor(): Point; + ceil(): Point; + distanceTo(otherPoint: PointExpression): number; + equals(otherPoint: PointExpression): boolean; + contains(otherPoint: PointExpression): boolean; + toString(): string; + x: number; + y: number; +} - export type LatLngBoundsLiteral = Array; +type PointExpression = Point | PointTuple; - type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; +export function point(x: number, y: number, round?: boolean): Point; - export function latLngBounds(southWest: LatLngExpression, northEast: LatLngExpression): LatLngBounds; +export function point(coords: PointTuple | {x: number, y: number}): Point; - export function latLngBounds(latlngs: LatLngBoundsLiteral): LatLngBounds; +export type BoundsLiteral = PointTuple[]; - export type PointTuple = [number, number]; +export class Bounds { + constructor(topLeft: PointExpression, bottomRight: PointExpression); + constructor(points: Point[] | BoundsLiteral); + extend(point: PointExpression): this; + getCenter(round?: boolean): Point; + getBottomLeft(): Point; + getTopRight(): Point; + getSize(): Point; + contains(pointOrBounds: BoundsExpression | PointExpression): boolean; + intersects(otherBounds: BoundsExpression): boolean; + overlaps(otherBounds: BoundsExpression): boolean; - export interface Point { - clone(): Point; - add(otherPoint: PointExpression): Point; // investigate if this mutates or returns a new instance - subtract(otherPoint: PointExpression): Point; - divideBy(num: number): Point; - multiplyBy(num: number): Point; - scaleBy(scale: PointExpression): Point; - unscaleBy(scale: PointExpression): Point; - round(): Point; - floor(): Point; - ceil(): Point; - distanceTo(otherPoint: PointExpression): number; - equals(otherPoint: PointExpression): boolean; - contains(otherPoint: PointExpression): boolean; - toString(): string; - x: number; - y: number; - } + min: Point; + max: Point; +} - type PointExpression = Point | PointTuple; +type BoundsExpression = Bounds | BoundsLiteral; - export function point(x: number, y: number, round?: boolean): Point; +export function bounds(topLeft: PointExpression, bottomRight: PointExpression): Bounds; - export function point(coords: PointTuple): Point; +export function bounds(points: Point[] | BoundsLiteral): Bounds; - export function point(coords: {x: number, y: number}): Point; +export type EventHandlerFn = (event: Event) => void; - export type BoundsLiteral = Array; +export interface EventHandlerFnMap { + [type: string]: EventHandlerFn; +} - export interface Bounds { - extend(point: PointExpression): this; - getCenter(round?: boolean): Point; - getBottomLeft(): Point; - getTopRight(): Point; - getSize(): Point; - contains(otherBounds: BoundsExpression): boolean; - contains(point: PointExpression): boolean; - intersects(otherBounds: BoundsExpression): boolean; - overlaps(otherBounds: BoundsExpression): boolean; - - min: Point; - max: Point; - } - - type BoundsExpression = Bounds | BoundsLiteral; - - export function bounds(topLeft: PointExpression, bottomRight: PointExpression): Bounds; - - export function bounds(points: Array): Bounds; - - export function bounds(points: BoundsLiteral): Bounds; - - export type EventHandlerFn = (event: Event) => void; - - export type EventHandlerFnMap = {[type: string]: EventHandlerFn}; +/** + * A set of methods shared between event-powered classes (like Map and Marker). + * Generally, events allow you to execute some function when something happens + * with an object (e.g. the user clicks on the map, causing the map to fire + * 'click' event). + */ +export abstract class Evented extends Class { + /** + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + on(type: string, fn: EventHandlerFn, context?: any): this; /** - * A set of methods shared between event-powered classes (like Map and Marker). - * Generally, events allow you to execute some function when something happens - * with an object (e.g. the user clicks on the map, causing the map to fire - * 'click' event). + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} */ - export abstract class Evented extends Class { - /** - * Adds a listener function (fn) to a particular event type of the object. - * You can optionally specify the context of the listener (object the this - * keyword will point to). You can also pass several space-separated types - * (e.g. 'click dblclick'). - */ - on(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} - */ - on(eventMap: EventHandlerFnMap): this; - - /** - * Removes a previously added listener function. If no function is specified, - * it will remove all the listeners of that particular event from the object. - * Note that if you passed a custom context to on, you must pass the same context - * to off in order to remove the listener. - */ - off(type: string, fn?: EventHandlerFn, context?: any): this; - - /** - * Removes a set of type/listener pairs. - */ - off(eventMap: EventHandlerFnMap): this; - - /** - * Removes all listeners to all events on the object. - */ - off(): this; - - /** - * Fires an event of the specified type. You can optionally provide a data - * object — the first argument of the listener function will contain its properties. - * The event might can optionally be propagated to event parents. - */ - fire(type: string, data?: any, propagate?: boolean): this; - - /** - * Returns true if a particular event type has any listeners attached to it. - */ - listens(type: string): boolean; - - /** - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - once(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - once(eventMap: EventHandlerFnMap): this; - - /** - * Adds an event parent - an Evented that will receive propagated events - */ - addEventParent(obj: Evented): this; - - /** - * Removes an event parent, so it will stop receiving propagated events - */ - removeEventParent(obj: Evented): this; - - /** - * Alias for on(...) - * - * Adds a listener function (fn) to a particular event type of the object. - * You can optionally specify the context of the listener (object the this - * keyword will point to). You can also pass several space-separated types - * (e.g. 'click dblclick'). - */ - addEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for on(...) - * - * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} - */ - addEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for off(...) - * - * Removes a previously added listener function. If no function is specified, - * it will remove all the listeners of that particular event from the object. - * Note that if you passed a custom context to on, you must pass the same context - * to off in order to remove the listener. - */ - removeEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for off(...) - * - * Removes a set of type/listener pairs. - */ - removeEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for off() - * - * Removes all listeners to all events on the object. - */ - clearAllEventListeners(): this; - - /** - * Alias for once(...) - * - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - addOneTimeEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for once(...) - * - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - addOneTimeEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for fire(...) - * - * Fires an event of the specified type. You can optionally provide a data - * object — the first argument of the listener function will contain its properties. - * The event might can optionally be propagated to event parents. - */ - fireEvent(type: string, data?: any, propagate?: boolean): this; - - /** - * Alias for listens(...) - * - * Returns true if a particular event type has any listeners attached to it. - */ - hasEventListeners(type: string): boolean; - } + on(eventMap: EventHandlerFnMap): this; /** - * A class for making DOM elements draggable (including touch support). - * Used internally for map and marker dragging. Only works for elements - * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. */ - export class Draggable extends Evented { - constructor(element: HTMLElement, dragStartTarget?: HTMLElement, preventOutline?: boolean); - - enable(): void; - - disable(): void; - - finishDrag(): void; - } - - interface LayerOptions { - pane?: string; - } - - interface InteractiveLayerOptions extends LayerOptions { - interactive?: boolean; - } - - export class Layer extends Evented { - constructor(options?: LayerOptions); - addTo(map: Map): this; - remove(): this; - removeFrom(map: Map): this; - getPane(name?: string): HTMLElement; - - // Popup methods - bindPopup(content: string, options?: PopupOptions): this; - bindPopup(content: HTMLElement, options?: PopupOptions): this; - bindPopup(content: (layer: Layer) => Content, options?: PopupOptions): this; - bindPopup(content: Popup): this; - unbindPopup(): this; - openPopup(): this; - openPopup(latlng: LatLngExpression): this; - closePopup(): this; - togglePopup(): this; - isPopupOpen(): boolean; - setPopupContent(content: string): this; - setPopupContent(content: HTMLElement): this; - setPopupContent(content: Popup): this; - getPopup(): Popup; - - // Tooltip methods - bindTooltip(content: string, options?: TooltipOptions): this; - bindTooltip(content: HTMLElement, options?: TooltipOptions): this; - bindTooltip(content: (layer: Layer) => Content, options?: TooltipOptions): this; - bindTooltip(content: Tooltip, options?: TooltipOptions): this; - unbindTooltip(): this; - openTooltip(): this; - openTooltip(latlng: LatLngExpression): this; - closeTooltip(): this; - toggleTooltip(): this; - isTooltipOpen(): boolean; - setTooltipContent(content: string): this; - setTooltipContent(content: HTMLElement): this; - setTooltipContent(content: Tooltip): this; - getTooltip(): Tooltip; - - // Extension methods - onAdd(map: Map): this; - onRemove(map: Map): this; - getEvents(): {[name: string]: (event: Event) => void}; - getAttribution(): string; - beforeAdd(map: Map): this; - } - - export interface GridLayerOptions { - tileSize?: number | Point; - opacity?: number; - updateWhenIdle?: boolean; - updateWhenZooming?: boolean; - updateInterval?: number; - attribution?: string; - zIndex?: number; - bounds?: LatLngBoundsExpression; - minZoom?: number; - maxZoom?: number; - noWrap?: boolean; - pane?: string; - className?: string; - keepBuffer?: number; - } - - export interface GridLayer extends Layer { - bringToFront(): this; - bringToBack(): this; - getAttribution(): string; - getContainer(): HTMLElement; - setOpacity(opacity: number): this; - setZIndex(zIndex: number): this; - isLoading(): boolean; - redraw(): this; - getTileSize(): Point; - } - - export function gridLayer(options?: GridLayerOptions): GridLayer; - - export interface TileLayerOptions extends GridLayerOptions { - minZoom?: number; - maxZoom?: number; - maxNativeZoom?: number; - subdomains?: string | Array; - errorTileUrl?: string; - zoomOffset?: number; - tms?: boolean; - zoomReverse?: boolean; - detectRetina?: boolean; - crossOrigin?: boolean; - [name: string]: any; - } - - export interface TileLayer extends GridLayer { - setUrl(url: string, noRedraw?: boolean): this; - } - - export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; - - export interface WMSOptions extends TileLayerOptions { - layers: string; - styles?: string; - format?: string; - transparent?: boolean; - version?: string; - crs?: CRS; - uppercase?: boolean; - } - - export interface WMS extends TileLayer { - setParams(params: any, noRedraw?: boolean): this; - } - - export namespace tileLayer { - export function wms(baseUrl: string, options?: WMSOptions): WMS; - } - - export interface ImageOverlayOptions extends LayerOptions { - opacity?: number; - alt?: string; - interactive?: boolean; - attribution?: string; - crossOrigin?: boolean; - } - - export interface ImageOverlay extends Layer { - setOpacity(opacity: number): this; - bringToFront(): this; - bringToBack(): this; - setUrl(url: string): this; - - /** Update the bounds that this ImageOverlay covers */ - setBounds(bounds: LatLngBounds): this; - - /** Get the bounds that this ImageOverlay covers */ - getBounds(): LatLngBounds; - - /** Get the img element that represents the ImageOverlay on the map */ - getElement(): HTMLImageElement; - } - - export function imageOverlay(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions): ImageOverlay; - - export type LineCapShape = 'butt' | 'round' | 'square' | 'inherit'; - - export type LineJoinShape = 'miter' | 'round' | 'bevel' | 'inherit'; - - export type FillRule = 'nonzero' | 'evenodd' | 'inherit'; - - export interface PathOptions extends InteractiveLayerOptions { - stroke?: boolean; - color?: string; - weight?: number; - opacity?: number; - lineCap?: LineCapShape; - lineJoin?: LineJoinShape; - dashArray?: string; - dashOffset?: string; - fill?: boolean; - fillColor?: string; - fillOpacity?: number; - fillRule?: FillRule; - renderer?: Renderer; - className?: string; - } - - export interface Path extends Layer { - redraw(): this; - setStyle(style: PathOptions): this; - bringToFront(): this; - bringToBack(): this; - } - - export interface PolylineOptions extends PathOptions { - smoothFactor?: number; - noClip?: boolean; - } - - interface InternalPolyline extends Path { - getLatLngs(): Array; - setLatLngs(latlngs: Array): this; - isEmpty(): boolean; - getCenter(): LatLng; - getBounds(): LatLngBounds; - addLatLng(latlng: LatLngExpression): this; - addLatLng(latlng: Array): this; // these three overloads aren't explicitly noted in the docs - } - - export interface Polyline extends InternalPolyline { - toGeoJSON(): GeoJSON.LineString | GeoJSON.MultiLineString; - } - - export function polyline(latlngs: Array, options?: PolylineOptions): Polyline; - export function polyline(latlngs: Array>, options?: PolylineOptions): Polyline; - - export interface Polygon extends InternalPolyline { - toGeoJSON(): GeoJSON.Polygon | GeoJSON.MultiPolygon; - } - - export function polygon(latlngs: Array, options?: PolylineOptions): Polygon; - - export function polygon(latlngs: Array>, options?: PolylineOptions): Polygon; - - export interface Rectangle extends Polygon { - setBounds(latLngBounds: LatLngBoundsExpression): this; - } - - export function rectangle(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions): Rectangle; - - export interface CircleMarkerOptions extends PathOptions { - radius?: number; - } - - export interface CircleMarker extends Path { - toGeoJSON(): GeoJSON.Point; - setLatLng(latLng: LatLngExpression): this; - getLatLng(): LatLng; - setRadius(radius: number): this; - getRadius(): number; - } - - export function circleMarker(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker; - - export interface CircleOptions extends PathOptions { - radius?: number; - } - - export interface Circle extends CircleMarker { - setRadius(radius: number): this; - getRadius(): number; - getBounds(): LatLngBounds; - } - - export function circle(latlng: LatLngExpression, options?: CircleOptions): Circle; - export function circle(latlng: LatLngExpression, radius: number, options?: CircleOptions): Circle; - - export interface RendererOptions extends LayerOptions { - padding?: number; - } - - export interface Renderer extends Layer {} - - export interface SVG extends Renderer {} - - export namespace SVG { - export function create(name: string): SVGElement; - - export function pointsToPath(rings: Array, close: boolean): string; - - export function pointsToPath(rings: Array, close: boolean): string; - } - - export function svg(options?: RendererOptions): SVG; - - export interface Canvas extends Renderer {} - - export function canvas(options?: RendererOptions): Canvas; + off(type: string, fn?: EventHandlerFn, context?: any): this; /** - * Used to group several layers and handle them as one. - * If you add it to the map, any layers added or removed from the group will be - * added/removed on the map as well. Extends Layer. + * Removes a set of type/listener pairs. */ - export interface LayerGroup extends Layer { - /** - * Returns a GeoJSON representation of the layer group (as a GeoJSON GeometryCollection). - */ - toGeoJSON(): GeoJSON.GeometryCollection; + off(eventMap: EventHandlerFnMap): this; - /** - * Adds the given layer to the group. - */ - addLayer(layer: Layer): this; + /** + * Removes all listeners to all events on the object. + */ + off(): this; - /** - * Removes the given layer from the group. - */ - removeLayer(layer: Layer): this; + /** + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fire(type: string, data?: any, propagate?: boolean): this; - /** - * Removes the layer with the given internal ID from the group. - */ - removeLayer(id: number): this; + /** + * Returns true if a particular event type has any listeners attached to it. + */ + listens(type: string): boolean; - /** - * Returns true if the given layer is currently added to the group. - */ - hasLayer(layer: Layer): boolean; + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(type: string, fn: EventHandlerFn, context?: any): this; - /** - * Removes all the layers from the group. - */ - clearLayers(): this; + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(eventMap: EventHandlerFnMap): this; - /** - * Calls methodName on every layer contained in this group, passing any additional parameters. - * Has no effect if the layers contained do not implement methodName. - */ - invoke(methodName: string, ...params: Array): this; + /** + * Adds an event parent - an Evented that will receive propagated events + */ + addEventParent(obj: Evented): this; - /** - * Iterates over the layers of the group, - * optionally specifying context of the iterator function. - */ - eachLayer(fn: (layer: Layer) => void, context?: any): this; + /** + * Removes an event parent, so it will stop receiving propagated events + */ + removeEventParent(obj: Evented): this; - /** - * Returns the layer with the given internal ID. - */ - getLayer(id: number): Layer; + /** + * Alias for on(...) + * + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + addEventListener(type: string, fn: EventHandlerFn, context?: any): this; - /** - * Returns an array of all the layers added to the group. - */ - getLayers(): Array; + /** + * Alias for on(...) + * + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + addEventListener(eventMap: EventHandlerFnMap): this; - /** - * Calls setZIndex on every layer contained in this group, passing the z-index. - */ - setZIndex(zIndex: number): this; + /** + * Alias for off(...) + * + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + removeEventListener(type: string, fn: EventHandlerFn, context?: any): this; - /** - * Returns the internal ID for a layer - */ - getLayerId(layer: Layer): number; + /** + * Alias for off(...) + * + * Removes a set of type/listener pairs. + */ + removeEventListener(eventMap: EventHandlerFnMap): this; + + /** + * Alias for off() + * + * Removes all listeners to all events on the object. + */ + clearAllEventListeners(): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(eventMap: EventHandlerFnMap): this; + + /** + * Alias for fire(...) + * + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fireEvent(type: string, data?: any, propagate?: boolean): this; + + /** + * Alias for listens(...) + * + * Returns true if a particular event type has any listeners attached to it. + */ + hasEventListeners(type: string): boolean; +} + +/** + * A class for making DOM elements draggable (including touch support). + * Used internally for map and marker dragging. Only works for elements + * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). + */ +export class Draggable extends Evented { + constructor(element: HTMLElement, dragStartTarget?: HTMLElement, preventOutline?: boolean); + + enable(): void; + + disable(): void; + + finishDrag(): void; +} + +interface LayerOptions { + pane?: string; +} + +interface InteractiveLayerOptions extends LayerOptions { + interactive?: boolean; +} + +export class Layer extends Evented { + constructor(options?: LayerOptions); + addTo(map: Map): this; + remove(): this; + removeFrom(map: Map): this; + getPane(name?: string): HTMLElement; + + // Popup methods + bindPopup(content: (layer: Layer) => Content | Content | Popup, options?: PopupOptions): this; + unbindPopup(): this; + openPopup(latlng?: LatLngExpression): this; + closePopup(): this; + togglePopup(): this; + isPopupOpen(): boolean; + setPopupContent(content: Content | Popup): this; + getPopup(): Popup; + + // Tooltip methods + bindTooltip(content: (layer: Layer) => Content | Tooltip | Content, options?: TooltipOptions): this; + unbindTooltip(): this; + openTooltip(latlng?: LatLngExpression): this; + closeTooltip(): this; + toggleTooltip(): this; + isTooltipOpen(): boolean; + setTooltipContent(content: Content | Tooltip): this; + getTooltip(): Tooltip; + + // Extension methods + onAdd(map: Map): this; + onRemove(map: Map): this; + getEvents(): {[name: string]: (event: Event) => void}; + getAttribution(): string; + beforeAdd(map: Map): this; +} + +export interface GridLayerOptions { + tileSize?: number | Point; + opacity?: number; + updateWhenIdle?: boolean; + updateWhenZooming?: boolean; + updateInterval?: number; + attribution?: string; + zIndex?: number; + bounds?: LatLngBoundsExpression; + minZoom?: number; + maxZoom?: number; + noWrap?: boolean; + pane?: string; + className?: string; + keepBuffer?: number; +} + +export class GridLayer extends Layer { + constructor(options?: GridLayerOptions); + bringToFront(): this; + bringToBack(): this; + getAttribution(): string; + getContainer(): HTMLElement; + setOpacity(opacity: number): this; + setZIndex(zIndex: number): this; + isLoading(): boolean; + redraw(): this; + getTileSize(): Point; +} + +export function gridLayer(options?: GridLayerOptions): GridLayer; + +export interface TileLayerOptions extends GridLayerOptions { + minZoom?: number; + maxZoom?: number; + maxNativeZoom?: number; + subdomains?: string | string[]; + errorTileUrl?: string; + zoomOffset?: number; + tms?: boolean; + zoomReverse?: boolean; + detectRetina?: boolean; + crossOrigin?: boolean; + [name: string]: any; +} + +export class TileLayer extends GridLayer { + constructor(urlTemplate: string, options?: TileLayerOptions); + setUrl(url: string, noRedraw?: boolean): this; + + options: TileLayerOptions; +} + +export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; + + +export namespace TileLayer { + export class WMS extends TileLayer { + constructor(baseUrl: string, options: WMSOptions); + setParams(params: WMSParams, noRedraw?: boolean): this; + + wmsParams: WMSParams; + options: WMSOptions; } +} + +export interface WMSOptions extends TileLayerOptions { + layers: string; + styles?: string; + format?: string; + transparent?: boolean; + version?: string; + crs?: CRS; + uppercase?: boolean; +} + +export interface WMSParams { + format?: string; + layers: string; + request?: string; + service?: string; + styles?: string; + version?: string; + transparent?: boolean; + width?: number; + height?: number; +} + +export namespace tileLayer { + export function wms(baseUrl: string, options?: WMSOptions): TileLayer.WMS; +} + +export interface ImageOverlayOptions extends LayerOptions { + opacity?: number; + alt?: string; + interactive?: boolean; + attribution?: string; + crossOrigin?: boolean; +} + +export class ImageOverlay extends Layer { + constructor(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions); + setOpacity(opacity: number): this; + bringToFront(): this; + bringToBack(): this; + setUrl(url: string): this; + + /** Update the bounds that this ImageOverlay covers */ + setBounds(bounds: LatLngBounds): this; + + /** Get the bounds that this ImageOverlay covers */ + getBounds(): LatLngBounds; + + /** Get the img element that represents the ImageOverlay on the map */ + getElement(): HTMLImageElement; + + options: ImageOverlayOptions; +} + +export function imageOverlay(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions): ImageOverlay; + +export type LineCapShape = 'butt' | 'round' | 'square' | 'inherit'; + +export type LineJoinShape = 'miter' | 'round' | 'bevel' | 'inherit'; + +export type FillRule = 'nonzero' | 'evenodd' | 'inherit'; + +export interface PathOptions extends InteractiveLayerOptions { + stroke?: boolean; + color?: string; + weight?: number; + opacity?: number; + lineCap?: LineCapShape; + lineJoin?: LineJoinShape; + dashArray?: string; + dashOffset?: string; + fill?: boolean; + fillColor?: string; + fillOpacity?: number; + fillRule?: FillRule; + renderer?: Renderer; + className?: string; +} + +export abstract class Path extends Layer { + redraw(): this; + setStyle(style: PathOptions): this; + bringToFront(): this; + bringToBack(): this; + + options: PathOptions; +} + +export interface PolylineOptions extends PathOptions { + smoothFactor?: number; + noClip?: boolean; +} + +declare class InternalPolyline extends Path { + getLatLngs(): LatLng[]; + setLatLngs(latlngs: LatLngExpression[]): this; + isEmpty(): boolean; + getCenter(): LatLng; + getBounds(): LatLngBounds; + addLatLng(latlng: LatLngExpression | LatLngExpression[]): this; + + options: PolylineOptions; +} + +export class Polyline extends InternalPolyline { + constructor(latlngs: LatLngExpression[], options?: PolylineOptions); + toGeoJSON(): GeoJSONDefinition.Feature; + + feature: GeoJSONDefinition.Feature; +} + +export function polyline(latlngs: LatLngExpression[], options?: PolylineOptions): Polyline; + +export class Polygon extends InternalPolyline { + constructor(latlngs: LatLngExpression[], options?: PolylineOptions); + toGeoJSON(): GeoJSONDefinition.Feature; + + feature: GeoJSONDefinition.Feature; +} + +export function polygon(latlngs: LatLngExpression[], options?: PolylineOptions): Polygon; + +export class Rectangle extends Polygon { + constructor(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions); + setBounds(latLngBounds: LatLngBoundsExpression): this; +} + +export function rectangle(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions): Rectangle; + +export interface CircleMarkerOptions extends PathOptions { + radius?: number; +} + +export class CircleMarker extends Path { + constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); + toGeoJSON(): GeoJSONDefinition.Feature; + setLatLng(latLng: LatLngExpression): this; + getLatLng(): LatLng; + setRadius(radius: number): this; + getRadius(): number; + + options: CircleMarkerOptions; + feature: GeoJSONDefinition.Feature; +} + +export function circleMarker(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker; + + +export class Circle extends CircleMarker { + constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); + constructor(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions); // deprecated! + getBounds(): LatLngBounds; +} + +export function circle(latlng: LatLngExpression, options?: CircleMarkerOptions): Circle; +export function circle(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions): Circle; // deprecated! + +export interface RendererOptions extends LayerOptions { + padding?: number; +} + +export class Renderer extends Layer { + constructor(options?: RendererOptions); + + options: RendererOptions; +} + +export class SVG extends Renderer {} + +export namespace SVG { + export function create(name: string): SVGElement; + + export function pointsToPath(rings: PointExpression[], close: boolean): string; +} + +export function svg(options?: RendererOptions): SVG; + +export class Canvas extends Renderer {} + +export function canvas(options?: RendererOptions): Canvas; + +/** + * Used to group several layers and handle them as one. + * If you add it to the map, any layers added or removed from the group will be + * added/removed on the map as well. Extends Layer. + */ +export class LayerGroup extends Layer { + constructor(layers: Layer[]); + /** + * Returns a GeoJSON representation of the layer group (as a GeoJSON GeometryCollection, GeoJSONDefinition.FeatureCollection or Multipoint). + */ + toGeoJSON(): GeoJSONDefinition.FeatureCollection | GeoJSONDefinition.Feature; /** - * Create a layer group, optionally given an initial set of layers. + * Adds the given layer to the group. */ - export function layerGroup(layers: Array): LayerGroup; + addLayer(layer: Layer): this; /** - * Extended LayerGroup that also has mouse events (propagated from - * members of the group) and a shared bindPopup method. + * Removes the layer with the given internal ID or the given layer from the group. */ - export interface FeatureGroup extends LayerGroup { - /** - * Sets the given path options to each layer of the group that has a setStyle method. - */ - setStyle(style: PathOptions): this; - - /** - * Brings the layer group to the top of all other layers - */ - bringToFront(): this; - - /** - * Brings the layer group to the top [sic] of all other layers - */ - bringToBack(): this; - - /** - * Returns the LatLngBounds of the Feature Group (created from - * bounds and coordinates of its children). - */ - getBounds(): LatLngBounds; - } + removeLayer(layer: number | Layer): this; /** - * Create a feature group, optionally given an initial set of layers. + * Returns true if the given layer is currently added to the group. */ - export function featureGroup(layers?: Array): FeatureGroup; + hasLayer(layer: Layer): boolean; - type StyleFunction = (feature: GeoJSON.Feature) => PathOptions; + /** + * Removes all the layers from the group. + */ + clearLayers(): this; - export interface GeoJSONOptions extends LayerOptions { - /** - * A Function defining how GeoJSON points spawn Leaflet layers. - * It is internally called when data is added, passing the GeoJSON point - * feature and its LatLng. - * - * The default is to spawn a default Marker: - * - * ``` - * function(geoJsonPoint, latlng) { + /** + * Calls methodName on every layer contained in this group, passing any additional parameters. + * Has no effect if the layers contained do not implement methodName. + */ + invoke(methodName: string, ...params: any[]): this; + + /** + * Iterates over the layers of the group, + * optionally specifying context of the iterator function. + */ + eachLayer(fn: (layer: Layer) => void, context?: any): this; + + /** + * Returns the layer with the given internal ID. + */ + getLayer(id: number): Layer; + + /** + * Returns an array of all the layers added to the group. + */ + getLayers(): Layer[]; + + /** + * Calls setZIndex on every layer contained in this group, passing the z-index. + */ + setZIndex(zIndex: number): this; + + /** + * Returns the internal ID for a layer + */ + getLayerId(layer: Layer): number; + + feature: GeoJSONDefinition.FeatureCollection | GeoJSONDefinition.Feature; +} + +/** + * Create a layer group, optionally given an initial set of layers. + */ +export function layerGroup(layers: Layer[]): LayerGroup; + +/** + * Extended LayerGroup that also has mouse events (propagated from + * members of the group) and a shared bindPopup method. + */ +export class FeatureGroup extends LayerGroup { + /** + * Sets the given path options to each layer of the group that has a setStyle method. + */ + setStyle(style: PathOptions): this; + + /** + * Brings the layer group to the top of all other layers + */ + bringToFront(): this; + + /** + * Brings the layer group to the top [sic] of all other layers + */ + bringToBack(): this; + + /** + * Returns the LatLngBounds of the Feature Group (created from + * bounds and coordinates of its children). + */ + getBounds(): LatLngBounds; +} + +/** + * Create a feature group, optionally given an initial set of layers. + */ +export function featureGroup(layers?: Layer[]): FeatureGroup; + +type StyleFunction = (feature: GeoJSONDefinition.Feature) => PathOptions; + +export interface GeoJSONOptions extends LayerOptions { + /** + * A Function defining how GeoJSON points spawn Leaflet layers. + * It is internally called when data is added, passing the GeoJSON point + * feature and its LatLng. + * + * The default is to spawn a default Marker: + * + * ``` + * function(geoJsonPoint, latlng) { * return L.marker(latlng); * } - * ``` - */ - pointToLayer?: (geoJsonPoint: GeoJSON.Feature, latlng: LatLng) => Layer; // should import GeoJSON typings + * ``` + */ + pointToLayer?: (geoJsonPoint: GeoJSONDefinition.Feature, latlng: LatLng) => Layer; // should import GeoJSON typings - /** - * A Function defining the Path options for styling GeoJSON lines and polygons, - * called internally when data is added. - * - * The default value is to not override any defaults: - * - * ``` - * function (geoJsonFeature) { + /** + * A Function defining the Path options for styling GeoJSON lines and polygons, + * called internally when data is added. + * + * The default value is to not override any defaults: + * + * ``` + * function (geoJsonFeature) { * return {} * } - * ``` - */ - style?: StyleFunction; + * ``` + */ + style?: StyleFunction; - /** - * A Function that will be called once for each created Feature, after it - * has been created and styled. Useful for attaching events and popups to features. - * - * The default is to do nothing with the newly created layers: - * - * ``` - * function (feature, layer) {} - * ``` - */ - onEachFeature?: (feature: GeoJSON.Feature, layer: Layer) => void; + /** + * A Function that will be called once for each created Feature, after it + * has been created and styled. Useful for attaching events and popups to features. + * + * The default is to do nothing with the newly created layers: + * + * ``` + * function (feature, layer) {} + * ``` + */ + onEachFeature?: (feature: GeoJSONDefinition.Feature, layer: Layer) => void; - /** - * A Function that will be used to decide whether to show a feature or not. - * - * The default is to show all features: - * - * ``` - * function (geoJsonFeature) { + /** + * A Function that will be used to decide whether to show a feature or not. + * + * The default is to show all features: + * + * ``` + * function (geoJsonFeature) { * return true; * } - * ``` - */ - filter?: (geoJsonFeature: GeoJSON.Feature) => boolean; - - /** - * A Function that will be used for converting GeoJSON coordinates to LatLngs. - * The default is the coordsToLatLng static method. - */ - coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng; // check if LatLng has an altitude property - } - - export class GeoJSON { - /** - * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer - * and/or coordsToLatLng functions if provided as options. - */ - static geometryToLayer(featureData: GeoJSON.Feature, options?: GeoJSONOptions): Layer; - - /** - * Creates a LatLng object from an array of 2 numbers (longitude, latitude) or - * 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. - */ - static coordsToLatLng(coords: [number, number] | [number, number, number]): LatLng; - - /** - * Creates a multidimensional array of LatLngs from a GeoJSON coordinates array. - * levelsDeep specifies the nesting level (0 is for an array of points, 1 for an array of - * arrays of points, etc., 0 by default). - * Can use a custom coordsToLatLng function. - */ - static coordsToLatLngs( - coords: any[], - levelsDeep?: number, - coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng): any[]; // Using any[] to avoid artificially limiting valid calls - - /** - * Reverse of coordsToLatLng - */ - static latLngToCoords(latlng: LatLng): [number, number, number]; // A three tuple can be assigned to a two or three tuple - - - /** - * Reverse of coordsToLatLngs closed determines whether the first point should be - * appended to the end of the array to close the feature, only used when levelsDeep is 0. - * False by default. - */ - static latLngsToCoords(latlngs: any[], levelsDeep?: number, closed?: boolean): any[]; // Using any[] to avoid artificially limiting valid calls - - /** - * Normalize GeoJSON geometries/features into GeoJSON features. - */ - static asFeature(geojson: GeoJSON.GeometryObject): GeoJSON.Feature; - - static asFeature(geojson: GeoJSON.Feature): GeoJSON.Feature; - - } + * ``` + */ + filter?: (geoJsonFeature: GeoJSONDefinition.Feature) => boolean; /** - * Represents a GeoJSON object or an array of GeoJSON objects. - * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. + * A Function that will be used for converting GeoJSON coordinates to LatLngs. + * The default is the coordsToLatLng static method. */ - export interface GeoJSON extends FeatureGroup { - /** - * Adds a GeoJSON object to the layer. - */ - addData(data: GeoJSON.GeoJsonObject): Layer; + coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng; // check if LatLng has an altitude property +} - /** - * Resets the given vector layer's style to the original GeoJSON style, - * useful for resetting style after hover events. - */ - resetStyle(layer: Layer): Layer; - - /** - * Changes styles of GeoJSON vector layers with the given style function. - */ - setStyle(style: StyleFunction): this; - - } +/** + * Represents a GeoJSON object or an array of GeoJSON objects. + * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. + */ +export class GeoJSON { + /** + * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer + * and/or coordsToLatLng functions if provided as options. + */ + static geometryToLayer(featureData: GeoJSONDefinition.Feature, options?: GeoJSONOptions): Layer; /** - * Creates a GeoJSON layer. - * - * Optionally accepts an object in GeoJSON format to display on the - * map (you can alternatively add it later with addData method) and - * an options object. + * Creates a LatLng object from an array of 2 numbers (longitude, latitude) or + * 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. */ - export function geoJSON(geojson?: GeoJSON.GeoJsonObject, options?: GeoJSONOptions): GeoJSON; + static coordsToLatLng(coords: [number, number] | [number, number, number]): LatLng; - type Zoom = boolean | 'center'; + /** + * Creates a multidimensional array of LatLngs from a GeoJSON coordinates array. + * levelsDeep specifies the nesting level (0 is for an array of points, 1 for an array of + * arrays of points, etc., 0 by default). + * Can use a custom coordsToLatLng function. + */ + static coordsToLatLngs( + coords: any[], + levelsDeep?: number, + coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng): any[]; // Using any[] to avoid artificially limiting valid calls - export interface MapOptions { - preferCanvas?: boolean; + /** + * Reverse of coordsToLatLng + */ + static latLngToCoords(latlng: LatLng): [number, number, number]; // A three tuple can be assigned to a two or three tuple - // Control options - attributionControl?: boolean; - zoomControl?: boolean; - // Interaction options - closePopupOnClick?: boolean; - zoomSnap?: number; - zoomDelta?: number; - trackResize?: boolean; - boxZoom?: boolean; - doubleClickZoom?: Zoom; - dragging?: boolean; + /** + * Reverse of coordsToLatLngs closed determines whether the first point should be + * appended to the end of the array to close the feature, only used when levelsDeep is 0. + * False by default. + */ + static latLngsToCoords(latlngs: any[], levelsDeep?: number, closed?: boolean): any[]; // Using any[] to avoid artificially limiting valid calls - // Map state options - crs?: CRS; - center?: LatLngExpression; - zoom?: number; - minZoom?: number; - maxZoom?: number; - layers?: Array; - maxBounds?: LatLngBoundsExpression; - renderer?: Renderer; + /** + * Normalize GeoJSON geometries/features into GeoJSON features. + */ + static asFeature(geojson: GeoJSONDefinition.Feature | GeoJSONDefinition.GeometryObject): GeoJSONDefinition.Feature; - // Animation options - fadeAnimation?: boolean; - markerZoomAnimation?: boolean; - transform3DLimit?: number; - zoomAnimation?: boolean; - zoomAnimationThreshold?: number; + constructor(geojson?: GeoJSONDefinition.GeoJsonObject, options?: GeoJSONOptions) + /** + * Adds a GeoJSON object to the layer. + */ + addData(data: GeoJSONDefinition.GeoJsonObject): Layer; - // Panning inertia options - inertia?: boolean; - inertiaDeceleration?: number; - inertiaMaxSpeed?: number; - easeLinearity?: number; - worldCopyJump?: boolean; - maxBoundsViscosity?: number; + /** + * Resets the given vector layer's style to the original GeoJSON style, + * useful for resetting style after hover events. + */ + resetStyle(layer: Layer): Layer; - // Keyboard navigation options - keyboard?: boolean; - keyboardPanDelta?: number; + /** + * Changes styles of GeoJSON vector layers with the given style function. + */ + setStyle(style: StyleFunction): this; - // Mousewheel options - scrollWheelZoom?: Zoom; - wheelDebounceTime?: number; - wheelPxPerZoomLevel?: number; + options: GeoJSONOptions; - // Touch interaction options - tap?: boolean; - tapTolerance?: number; - touchZoom?: Zoom; - bounceAtZoomLimits?: boolean; +} + +/** + * Creates a GeoJSON layer. + * + * Optionally accepts an object in GeoJSON format to display on the + * map (you can alternatively add it later with addData method) and + * an options object. + */ +export function geoJSON(geojson?: GeoJSONDefinition.GeoJsonObject, options?: GeoJSONOptions): GeoJSON; + +type Zoom = boolean | 'center'; + +export interface MapOptions { + preferCanvas?: boolean; + + // Control options + attributionControl?: boolean; + zoomControl?: boolean; + + // Interaction options + closePopupOnClick?: boolean; + zoomSnap?: number; + zoomDelta?: number; + trackResize?: boolean; + boxZoom?: boolean; + doubleClickZoom?: Zoom; + dragging?: boolean; + + // Map state options + crs?: CRS; + center?: LatLngExpression; + zoom?: number; + minZoom?: number; + maxZoom?: number; + layers?: Layer[]; + maxBounds?: LatLngBoundsExpression; + renderer?: Renderer; + + // Animation options + fadeAnimation?: boolean; + markerZoomAnimation?: boolean; + transform3DLimit?: number; + zoomAnimation?: boolean; + zoomAnimationThreshold?: number; + + // Panning inertia options + inertia?: boolean; + inertiaDeceleration?: number; + inertiaMaxSpeed?: number; + easeLinearity?: number; + worldCopyJump?: boolean; + maxBoundsViscosity?: number; + + // Keyboard navigation options + keyboard?: boolean; + keyboardPanDelta?: number; + + // Mousewheel options + scrollWheelZoom?: Zoom; + wheelDebounceTime?: number; + wheelPxPerZoomLevel?: number; + + // Touch interaction options + tap?: boolean; + tapTolerance?: number; + touchZoom?: Zoom; + bounceAtZoomLimits?: boolean; +} + +export type ControlPosition = 'topleft' | 'topright' | 'bottomleft' | 'bottomright'; + +export interface ControlOptions { + position?: ControlPosition; +} + +export class Control extends Class { + constructor(options?: ControlOptions); + getPosition(): ControlPosition; + setPosition(position: ControlPosition): this; + getContainer(): HTMLElement; + addTo(map: Map): this; + remove(): this; + + // Extension methods + onAdd(map: Map): HTMLElement; + onRemove(map: Map): void; + + options: ControlOptions; +} + +export namespace Control { + export interface ZoomOptions extends ControlOptions { + zoomInText?: string; + zoomInTitle?: string; + zoomOutText?: string; + zoomOutTitle?: string; } - export type ControlPosition = 'topleft' | 'topright' | 'bottomleft' | 'bottomright'; - - export interface ControlOptions { - position?: ControlPosition; + export class Zoom extends Control { + constructor(options?: ZoomOptions); + options: ZoomOptions; } - export class Control extends Class { - constructor (options?: ControlOptions); - getPosition(): ControlPosition; - setPosition(position: ControlPosition): this; - getContainer(): HTMLElement; - addTo(map: Map): this; - remove(): this; - - // Extension methods - onAdd(map: Map): HTMLElement; - onRemove(map: Map): void; + export interface AttributionOptions extends ControlOptions { + prefix?: string | boolean; } - export namespace Control { - export interface ZoomOptions extends ControlOptions { - zoomInText?: string; - zoomInTitle?: string; - zoomOutText?: string; - zoomOutTitle?: string; - } - - export interface Zoom extends Control {} - - export interface AttributionOptions extends ControlOptions { - prefix?: string | boolean; - } - - export interface Attribution extends Control { - setPrefix(prefix: string): this; - addAttribution(text: string): this; - removeAttribution(text: string): this; - } - - export interface LayersOptions extends ControlOptions { - collapsed?: boolean; - autoZIndex?: boolean; - hideSingleBase?: boolean; - } - - export interface Layers extends Control { - addBaseLayer(layer: Layer, name: string): this; - addOverlay(layer: Layer, name: string): this; - removeLayer(layer: Layer): this; - expand(): this; - collapse(): this; - } - - export interface ScaleOptions extends ControlOptions { - maxWidth?: number; - metric?: boolean; - imperial?: boolean; - updateWhenIdle?: boolean; - } - - export interface Scale extends Control {} + export class Attribution extends Control { + constructor(options?: AttributionOptions); + setPrefix(prefix: string): this; + addAttribution(text: string): this; + removeAttribution(text: string): this; + options: AttributionOptions; } - export namespace control { - export function zoom(options: Control.ZoomOptions): Control.Zoom; - - export function attribution(options: Control.AttributionOptions): Control.Attribution; - - type LayersObject = {[name: string]: Layer}; - - export function layers(baseLayers?: LayersObject, overlays?: LayersObject, options?: Control.LayersOptions): Control.Layers; - - export function scale(options?: Control.ScaleOptions): Control.Scale; + export interface LayersOptions extends ControlOptions { + collapsed?: boolean; + autoZIndex?: boolean; + hideSingleBase?: boolean; } - interface DivOverlayOptions { - offset?: PointExpression; - zoomAnimation?: boolean; - className?: string; - pane?: string; + interface LayersObject { + [name: string]: Layer; } - export interface PopupOptions extends DivOverlayOptions { - maxWidth?: number; - minWidth?: number; - maxHeight?: number; - autoPan?: boolean; - autoPanPaddingTopLeft?: PointExpression; - autoPanPaddingBottomRight?: PointExpression; - autoPanPadding?: PointExpression; - keepInView?: boolean; - closeButton?: boolean; - autoClose?: boolean; - closeOnClick?: boolean; - } - - type Content = string | HTMLElement; - - export interface Popup extends Layer { - getLatLng(): LatLng; - setLatLng(latlng: LatLngExpression): this; - getContent(): Content; - setContent(htmlContent: string): this; - setContent(htmlContent: HTMLElement): this; - setContent(htmlContent: (source: Layer) => Content): this; - getElement(): Content; - update(): void; - isOpen(): boolean; - bringToFront(): this; - bringToBack(): this; - openOn(map: Map): this; - } - - export function popup(options?: PopupOptions, source?: Layer): Popup; - - export type Direction = 'right' | 'left' | 'top' | 'bottom' | 'center' | 'auto'; - - export interface TooltipOptions extends DivOverlayOptions { - pane?: string; - offset?: PointExpression; - direction?: Direction; - permanent?: boolean; - sticky?: boolean; - interactive?: boolean; - opacity?: number; - } - - export interface Tooltip extends Layer {} - - export function tooltip(options?: TooltipOptions, source?: Layer): Tooltip; - - export interface ZoomOptions { - animate?: boolean; - } - - export interface PanOptions { - animate?: boolean; - duration?: number; - easeLinearity?: number; - noMoveStart?: boolean; - } - - export interface ZoomPanOptions extends ZoomOptions, PanOptions {} - - export interface FitBoundsOptions extends ZoomOptions, PanOptions { - paddingTopLeft?: PointExpression; - paddingBottomRight?: PointExpression; - padding?: PointExpression; - maxZoom?: number; - } - - export interface LocateOptions { - watch?: boolean; - setView?: boolean; - maxZoom?: number; - timeout?: number; - maximumAge?: number; - enableHighAccuracy?: boolean; - } - - export interface Handler { - enable(): this; - disable(): this; - enabled(): boolean; - - // Extension methods - addHooks(): void; - removeHooks(): void; - } - - export interface Event { - type: string; - target: any; - } - - export interface MouseEvent extends Event { - latlng: LatLng; - layerPoint: Point; - containerPoint: Point; - originalEvent: NativeMouseEvent; - } - - export interface KeyboardEvent extends Event { - originalEvent: NativeKeyboardEvent; - } - - export interface LocationEvent extends Event { - latlng: LatLng; - bounds: LatLngBounds; - accuracy: number; - altitude: number; - altitudeAccuracy: number; - heading: number; - speed: number; - timestamp: number; - } - - export interface ErrorEvent extends Event { - message: string; - code: number; - } - - export interface LayerEvent extends Event { - layer: Layer; - } - - export interface LayersControlEvent extends LayerEvent { - name: string; - } - - export interface TileEvent extends Event { - tile: HTMLImageElement; - coords: Point; // apparently not a normal point, since docs say it has z (zoom) - } - - export interface TileErrorEvent extends TileEvent { - error: Error; - } - - export interface ResizeEvent extends Event { - oldSize: Point; - newSize: Point; - } - - export interface GeoJSONEvent extends Event { - layer: Layer; - properties: any; - geometryType: string; - id: string; - } - - export interface PopupEvent extends Event { - popup: Popup; - } - - export interface TooltipEvent extends Event { - tooltip: Tooltip; - } - - export interface DragEndEvent extends Event { - distance: number; - } - - export interface ZoomAnimEvent extends Event { - center: LatLng; - zoom: number; - noUpdate: boolean; - } - - export namespace DomEvent { - export function on(el: HTMLElement, types: string, fn: (ev: Event) => any, context?: any): typeof DomEvent; - - export function on(el: HTMLElement, eventMap: {[eventName: string]: Function}, context?: any): typeof DomEvent; - - export function off(el: HTMLElement, types: string, fn: (ev: Event) => any, context?: any): typeof DomEvent; - - export function off(el: HTMLElement, eventMap: {[eventName: string]: Function}, context?: any): typeof DomEvent; - - export function stopPropagation(ev: Event): typeof DomEvent; - - export function disableScrollPropagation(el: HTMLElement): typeof DomEvent; - - export function disableClickPropagation(el: HTMLElement): typeof DomEvent; - - export function preventDefault(ev: Event): typeof DomEvent; - - export function stop(ev: Event): typeof DomEvent; - - export function getMousePosition(ev: Event, container?: HTMLElement): Point; - - export function getWheelDelta(ev: Event): number; - - export function addListener(el: HTMLElement, types: string, fn: (ev: Event) => any, context?: any): typeof DomEvent; - - export function addListener(el: HTMLElement, eventMap: {[eventName: string]: Function}, context?: any): typeof DomEvent; - - export function removeListener(el: HTMLElement, types: string, fn: (ev: Event) => any, context?: any): typeof DomEvent; - - export function removeListener(el: HTMLElement, eventMap: {[eventName: string]: Function}, context?: any): typeof DomEvent; - } - - interface DefaultMapPanes { - mapPane: HTMLElement; - tilePane: HTMLElement; - overlayPane: HTMLElement; - shadowPane: HTMLElement; - markerPane: HTMLElement; - tooltipPane: HTMLElement; - popupPane: HTMLElement; - } - - export interface Map extends Evented { - getRenderer(layer: Path): Renderer; - - // Methods for layers and controls - addControl(control: Control): this; - removeControl(control: Control): this; - addLayer(layer: Layer): this; + export class Layers extends Control { + constructor(baseLayers?: LayersObject, overlays?: LayersObject, options?: Control.LayersOptions); + addBaseLayer(layer: Layer, name: string): this; + addOverlay(layer: Layer, name: string): this; removeLayer(layer: Layer): this; - hasLayer(layer: Layer): boolean; - eachLayer(fn: (layer: Layer) => void, context?: any): this; - openPopup(popup: Popup): this; - openPopup(content: string, latlng: LatLngExpression, options?: PopupOptions): this; - openPopup(content: HTMLElement, latlng: LatLngExpression, options?: PopupOptions): this; - closePopup(popup?: Popup): this; - openTooltip(tooltip: Tooltip): this; - openTooltip(content: string, latlng: LatLngExpression, options?: TooltipOptions): this; - openTooltip(content: HTMLElement, latlng: LatLngExpression, options?: TooltipOptions): this; - closeTooltip(tooltip?: Tooltip): this; - - // Methods for modifying map state - setView(center: LatLngExpression, zoom: number, options?: ZoomPanOptions): this; - setZoom(zoom: number, options?: ZoomPanOptions): this; - zoomIn(delta?: number, options?: ZoomOptions): this; - zoomOut(delta?: number, options?: ZoomOptions): this; - setZoomAround(latlng: LatLngExpression, zoom: number, options?: ZoomOptions): this; - setZoomAround(offset: Point, zoom: number, options?: ZoomOptions): this; - fitBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; - fitWorld(options?: FitBoundsOptions): this; - panTo(latlng: LatLngExpression, options?: PanOptions): this; - panBy(offset: PointExpression): this; - setMaxBounds(bounds: LatLngBoundsExpression): this; - setMinZoom(zoom: number): this; - setMaxZoom(zoom: number): this; - panInsideBounds(bounds: LatLngBoundsExpression, options?: PanOptions): this; - invalidateSize(options: ZoomPanOptions): this; - invalidateSize(animate: boolean): this; - stop(): this; - flyTo(latlng: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; - flyToBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; - - // Other methods - addHandler(name: string, HandlerClass: () => Handler): this; // HandlerClass is actually a constructor function, is this the right way? - remove(): this; - createPane(name: string, container?: HTMLElement): HTMLElement; - getPane(pane: string): HTMLElement; - getPane(pane: HTMLElement): HTMLElement; - getPanes(): {[name: string]: HTMLElement} & DefaultMapPanes; - getContainer(): HTMLElement; - whenReady(fn: () => void, context?: any): this; - - // Methods for getting map state - getCenter(): LatLng; - getZoom(): number; - getBounds(): LatLngBounds; - getMinZoom(): number; - getMaxZoom(): number; - getBoundsZoom(bounds: LatLngBoundsExpression, inside?: boolean): number; - getSize(): Point; - getPixelBounds(): Bounds; - getPixelOrigin(): Point; - getPixelWorldBounds(zoom?: number): Bounds; - - // Conversion methods - getZoomScale(toZoom: number, fromZoom: number): number; - getScaleZoom(scale: number, fromZoom: number): number; - project(latlng: LatLngExpression, zoom: number): Point; - unproject(point: PointExpression, zoom: number): LatLng; - layerPointToLatLng(point: PointExpression): LatLng; - latLngToLayerPoint(latlng: LatLngExpression): Point; - wrapLatLng(latlng: LatLngExpression): LatLng; - distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; - containerPointToLayerPoint(point: PointExpression): Point; - layerPointToContainerPoint(point: PointExpression): Point; - layerPointToContainerPoint(point: PointTuple): Point; - latLngToContainerPoint(latlng: LatLngExpression): Point; - mouseEventToContainerPoint(ev: MouseEvent): Point; - mouseEventToLayerPoint(ev: MouseEvent): Point; - mouseEventToLatLng(ev: MouseEvent): LatLng; - - // Geolocation methods - locate(options?: LocateOptions): this; - stopLocate(): this; - - // Properties - boxZoom: Handler; - doubleClickZoom: Handler; - dragging: Handler; - keyboard: Handler; - scrollWheelZoom: Handler; - tap: Handler; - touchZoom: Handler; + expand(): this; + collapse(): this; + options: LayersOptions; } - export function map(id: string, options?: MapOptions): Map; - - export function map(el: HTMLElement, options?: MapOptions): Map; - - export interface IconOptions extends LayerOptions { - iconUrl: string; - iconRetinaUrl?: string; - iconSize?: PointExpression; - iconAnchor?: PointExpression; - popupAnchor?: PointExpression; - shadowUrl?: string; - shadowRetinaUrl?: string; - shadowSize?: PointExpression; - shadowAnchor?: PointExpression; - className?: string; + export interface ScaleOptions extends ControlOptions { + maxWidth?: number; + metric?: boolean; + imperial?: boolean; + updateWhenIdle?: boolean; } - export interface Icon extends Layer { - createIcon(oldIcon?: HTMLElement): HTMLElement; - createShadow(oldIcon?: HTMLElement): HTMLElement; + export class Scale extends Control { + constructor(options?: Control.ScaleOptions); + options: ScaleOptions; } +} - export interface IconDefault extends Icon { +export namespace control { + export function zoom(options?: Control.ZoomOptions): Control.Zoom; + + export function attribution(options?: Control.AttributionOptions): Control.Attribution; + + export function layers(baseLayers?: Control.LayersObject, overlays?: Control.LayersObject, options?: Control.LayersOptions): Control.Layers; + + export function scale(options?: Control.ScaleOptions): Control.Scale; +} + +interface DivOverlayOptions { + offset?: PointExpression; + zoomAnimation?: boolean; + className?: string; + pane?: string; +} + +export interface PopupOptions extends DivOverlayOptions { + maxWidth?: number; + minWidth?: number; + maxHeight?: number; + autoPan?: boolean; + autoPanPaddingTopLeft?: PointExpression; + autoPanPaddingBottomRight?: PointExpression; + autoPanPadding?: PointExpression; + keepInView?: boolean; + closeButton?: boolean; + autoClose?: boolean; + closeOnClick?: boolean; +} + +type Content = string | HTMLElement; + +export class Popup extends Layer { + constructor(options?: PopupOptions, source?: Layer); + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + getContent(): Content; + setContent(htmlContent: (source: Layer) => Content | Content): this; + getElement(): HTMLElement; + update(): void; + isOpen(): boolean; + bringToFront(): this; + bringToBack(): this; + openOn(map: Map): this; + + options: PopupOptions; +} + +export function popup(options?: PopupOptions, source?: Layer): Popup; + +export type Direction = 'right' | 'left' | 'top' | 'bottom' | 'center' | 'auto'; + +export interface TooltipOptions extends DivOverlayOptions { + pane?: string; + offset?: PointExpression; + direction?: Direction; + permanent?: boolean; + sticky?: boolean; + interactive?: boolean; + opacity?: number; +} + +export class Tooltip extends Layer { + constructor(options?: TooltipOptions, source?: Layer); + setOpacity(val: number): void; + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + getContent(): Content; + setContent(htmlContent: (source: Layer) => Content | Content): this; + getElement(): HTMLElement; + update(): void; + isOpen(): boolean; + bringToFront(): this; + bringToBack(): this; + + options: TooltipOptions; +} + +export function tooltip(options?: TooltipOptions, source?: Layer): Tooltip; + +export interface ZoomOptions { + animate?: boolean; +} + +export interface PanOptions { + animate?: boolean; + duration?: number; + easeLinearity?: number; + noMoveStart?: boolean; +} + +export interface ZoomPanOptions extends ZoomOptions, PanOptions {} + +export interface FitBoundsOptions extends ZoomOptions, PanOptions { + paddingTopLeft?: PointExpression; + paddingBottomRight?: PointExpression; + padding?: PointExpression; + maxZoom?: number; +} + +export interface LocateOptions { + watch?: boolean; + setView?: boolean; + maxZoom?: number; + timeout?: number; + maximumAge?: number; + enableHighAccuracy?: boolean; +} + +export class Handler extends Class { + constructor(map: Map); + enable(): this; + disable(): this; + enabled(): boolean; + + // Extension methods + addHooks(): void; + removeHooks(): void; +} + +export interface Event { + type: string; + target: any; +} + +export interface MouseEvent extends Event { + latlng: LatLng; + layerPoint: Point; + containerPoint: Point; + originalEvent: NativeMouseEvent; +} + +export interface KeyboardEvent extends Event { + originalEvent: NativeKeyboardEvent; +} + +export interface LocationEvent extends Event { + latlng: LatLng; + bounds: LatLngBounds; + accuracy: number; + altitude: number; + altitudeAccuracy: number; + heading: number; + speed: number; + timestamp: number; +} + +export interface ErrorEvent extends Event { + message: string; + code: number; +} + +export interface LayerEvent extends Event { + layer: Layer; +} + +export interface LayersControlEvent extends LayerEvent { + name: string; +} + +export interface TileEvent extends Event { + tile: HTMLImageElement; + coords: Point; // apparently not a normal point, since docs say it has z (zoom) +} + +export interface TileErrorEvent extends TileEvent { + error: Error; +} + +export interface ResizeEvent extends Event { + oldSize: Point; + newSize: Point; +} + +export interface GeoJSONEvent extends Event { + layer: Layer; + properties: any; + geometryType: string; + id: string; +} + +export interface PopupEvent extends Event { + popup: Popup; +} + +export interface TooltipEvent extends Event { + tooltip: Tooltip; +} + +export interface DragEndEvent extends Event { + distance: number; +} + +export interface ZoomAnimEvent extends Event { + center: LatLng; + zoom: number; + noUpdate: boolean; +} + +export namespace DomEvent { + export function on(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + export function on(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + + export function off(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + export function off(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + + export function stopPropagation(ev: Event): typeof DomEvent; + + export function disableScrollPropagation(el: HTMLElement): typeof DomEvent; + + export function disableClickPropagation(el: HTMLElement): typeof DomEvent; + + export function preventDefault(ev: Event): typeof DomEvent; + + export function stop(ev: Event): typeof DomEvent; + + export function getMousePosition(ev: Event, container?: HTMLElement): Point; + + export function getWheelDelta(ev: Event): number; + + export function addListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + export function addListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + + export function removeListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + + export function removeListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; +} + +interface DefaultMapPanes { + mapPane: HTMLElement; + tilePane: HTMLElement; + overlayPane: HTMLElement; + shadowPane: HTMLElement; + markerPane: HTMLElement; + tooltipPane: HTMLElement; + popupPane: HTMLElement; +} + +export class Map extends Evented { + constructor(element: string | HTMLElement, options?: MapOptions); + getRenderer(layer: Path): Renderer; + + // Methods for layers and controls + addControl(control: Control): this; + removeControl(control: Control): this; + addLayer(layer: Layer): this; + removeLayer(layer: Layer): this; + hasLayer(layer: Layer): boolean; + eachLayer(fn: (layer: Layer) => void, context?: any): this; + openPopup(popup: Popup): this; + openPopup(content: Content, latlng: LatLngExpression, options?: PopupOptions): this; + closePopup(popup?: Popup): this; + openTooltip(tooltip: Tooltip): this; + openTooltip(content: string | HTMLElement, latlng: LatLngExpression, options?: TooltipOptions): this; + closeTooltip(tooltip?: Tooltip): this; + + // Methods for modifying map state + setView(center: LatLngExpression, zoom: number, options?: ZoomPanOptions): this; + setZoom(zoom: number, options?: ZoomPanOptions): this; + zoomIn(delta?: number, options?: ZoomOptions): this; + zoomOut(delta?: number, options?: ZoomOptions): this; + setZoomAround(position: Point | LatLngExpression, zoom: number, options?: ZoomOptions): this; + fitBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + fitWorld(options?: FitBoundsOptions): this; + panTo(latlng: LatLngExpression, options?: PanOptions): this; + panBy(offset: PointExpression): this; + setMaxBounds(bounds: LatLngBoundsExpression): this; + setMinZoom(zoom: number): this; + setMaxZoom(zoom: number): this; + panInsideBounds(bounds: LatLngBoundsExpression, options?: PanOptions): this; + /** + * Boolean for animate or advanced ZoomPanOptions + */ + invalidateSize(options?: boolean | ZoomPanOptions): this; + stop(): this; + flyTo(latlng: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; + flyToBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + + // Other methods + addHandler(name: string, HandlerClass: () => Handler): this; // HandlerClass is actually a constructor function, is this the right way? + remove(): this; + createPane(name: string, container?: HTMLElement): HTMLElement; + /** + * Name of the pane or the pane as HTML-Element + */ + getPane(pane: string | HTMLElement): HTMLElement; + getPanes(): {[name: string]: HTMLElement} & DefaultMapPanes; + getContainer(): HTMLElement; + whenReady(fn: () => void, context?: any): this; + + // Methods for getting map state + getCenter(): LatLng; + getZoom(): number; + getBounds(): LatLngBounds; + getMinZoom(): number; + getMaxZoom(): number; + getBoundsZoom(bounds: LatLngBoundsExpression, inside?: boolean): number; + getSize(): Point; + getPixelBounds(): Bounds; + getPixelOrigin(): Point; + getPixelWorldBounds(zoom?: number): Bounds; + + // Conversion methods + getZoomScale(toZoom: number, fromZoom: number): number; + getScaleZoom(scale: number, fromZoom: number): number; + project(latlng: LatLngExpression, zoom: number): Point; + unproject(point: PointExpression, zoom: number): LatLng; + layerPointToLatLng(point: PointExpression): LatLng; + latLngToLayerPoint(latlng: LatLngExpression): Point; + wrapLatLng(latlng: LatLngExpression): LatLng; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + containerPointToLayerPoint(point: PointExpression): Point; + layerPointToContainerPoint(point: PointExpression): Point; + latLngToContainerPoint(latlng: LatLngExpression): Point; + mouseEventToContainerPoint(ev: MouseEvent): Point; + mouseEventToLayerPoint(ev: MouseEvent): Point; + mouseEventToLatLng(ev: MouseEvent): LatLng; + + // Geolocation methods + locate(options?: LocateOptions): this; + stopLocate(): this; + + // Properties + boxZoom: Handler; + doubleClickZoom: Handler; + dragging: Handler; + keyboard: Handler; + scrollWheelZoom: Handler; + tap: Handler; + touchZoom: Handler; + + options: MapOptions; +} + +/** + * ID of a HTML-Element as string or the HTML-ELement itself + */ +export function map(element: string | HTMLElement, options?: MapOptions): Map; + +export interface IconOptions extends LayerOptions { + iconUrl: string; + iconRetinaUrl?: string; + iconSize?: PointExpression; + iconAnchor?: PointExpression; + popupAnchor?: PointExpression; + shadowUrl?: string; + shadowRetinaUrl?: string; + shadowSize?: PointExpression; + shadowAnchor?: PointExpression; + className?: string; +} + +declare class InternalIcon extends Layer { + constructor(options: IconOptions); + createIcon(oldIcon?: HTMLElement): HTMLElement; +} + +export class Icon extends InternalIcon { + createShadow(oldIcon?: HTMLElement): HTMLElement; + options: IconOptions; +} + +export interface IconDefault extends InternalIcon { + imagePath: string; +} + +export namespace Icon { + export class Default extends InternalIcon { imagePath: string; } - - export class Icon { - constructor(options: IconOptions); - } - - export namespace Icon { - export class Default extends Icon { - constructor(options?: IconOptions); - imagePath: string; - } - } - - export function icon(options: IconOptions): Icon; - - export interface DivIconOptions extends LayerOptions { - html?: string; - bgPos?: PointExpression; - iconSize?: PointExpression; - iconAnchor?: PointExpression; - popupAnchor?: PointExpression; - className?: string; - } - - export class DivIcon extends Icon { - constructor(options?: DivIconOptions); - } - - export function divIcon(options?: DivIconOptions): DivIcon; - - export interface MarkerOptions extends InteractiveLayerOptions { - icon?: Icon; - clickable?: boolean; - draggable?: boolean; - keyboard?: boolean; - title?: string; - alt?: string; - zIndexOffset?: number; - opacity?: number; - riseOnHover?: boolean; - riseOffset?: number; - } - - export class Marker extends Layer { - constructor(latlng: LatLngExpression, options?: MarkerOptions); - getLatLng(): LatLng; - setLatLng(latlng: LatLngExpression): this; - setZIndexOffset(offset: number): this; - setIcon(icon: Icon): this; - setOpacity(opacity: number): this; - getElement(): Element; - - // Properties - dragging: Handler; - } - - export function marker(latlng: LatLngExpression, options?: MarkerOptions): Marker; - - export namespace Browser { - export const ie: boolean; - export const ielt9: boolean; - export const edge: boolean; - export const webkit: boolean; - export const gecko: boolean; - export const android: boolean; - export const android23: boolean; - export const chrome: boolean; - export const safari: boolean; - export const win: boolean; - export const ie3d: boolean; - export const webkit3d: boolean; - export const gecko3d: boolean; - export const opera12: boolean; - export const any3d: boolean; - export const mobile: boolean; - export const mobileWebkit: boolean; - export const mobiWebkit3d: boolean; - export const mobileOpera: boolean; - export const mobileGecko: boolean; - export const touch: boolean; - export const msPointer: boolean; - export const pointer: boolean; - export const retina: boolean; - export const canvas: boolean; - export const vml: boolean; - export const svg: boolean; - } } -declare module 'leaflet' { - export = L; +export function icon(options: IconOptions): Icon; + +export interface DivIconOptions extends LayerOptions { + html?: string; + bgPos?: PointExpression; + iconSize?: PointExpression; + iconAnchor?: PointExpression; + popupAnchor?: PointExpression; + className?: string; +} + +export class DivIcon extends InternalIcon { + constructor(options?: DivIconOptions); + options: DivIconOptions; +} + +export function divIcon(options?: DivIconOptions): DivIcon; + +export interface MarkerOptions extends InteractiveLayerOptions { + icon?: Icon; + clickable?: boolean; + draggable?: boolean; + keyboard?: boolean; + title?: string; + alt?: string; + zIndexOffset?: number; + opacity?: number; + riseOnHover?: boolean; + riseOffset?: number; + + options: DivIconOptions; +} + +export class Marker extends Layer { + constructor(latlng: LatLngExpression, options?: MarkerOptions); + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + setZIndexOffset(offset: number): this; + setIcon(icon: Icon): this; + setOpacity(opacity: number): this; + getElement(): HTMLElement; + + // Properties + options: MarkerOptions; + dragging: Handler; +} + +export function marker(latlng: LatLngExpression, options?: MarkerOptions): Marker; + +export namespace Browser { + export const ie: boolean; + export const ielt9: boolean; + export const edge: boolean; + export const webkit: boolean; + export const gecko: boolean; + export const android: boolean; + export const android23: boolean; + export const chrome: boolean; + export const safari: boolean; + export const win: boolean; + export const ie3d: boolean; + export const webkit3d: boolean; + export const gecko3d: boolean; + export const opera12: boolean; + export const any3d: boolean; + export const mobile: boolean; + export const mobileWebkit: boolean; + export const mobiWebkit3d: boolean; + export const mobileOpera: boolean; + export const mobileGecko: boolean; + export const touch: boolean; + export const msPointer: boolean; + export const pointer: boolean; + export const retina: boolean; + export const canvas: boolean; + export const vml: boolean; + export const svg: boolean; } diff --git a/leaflet/leaflet-tests.ts b/leaflet/leaflet-tests.ts index c6dca97f5d..6f9fa242d8 100644 --- a/leaflet/leaflet-tests.ts +++ b/leaflet/leaflet-tests.ts @@ -11,6 +11,14 @@ latLng = L.latLng({lat: 12, lng: 13, alt: 0}); latLng = L.latLng(latLngTuple); latLng = L.latLng([12, 13, 0]); +latLng = new L.LatLng(12, 13); +latLng = new L.LatLng(12, 13, 0); +latLng = new L.LatLng(latLngLiteral); +latLng = new L.LatLng({lat: 12, lng: 13, alt: 0}); +latLng = new L.LatLng(latLngTuple); +latLng = new L.LatLng([12, 13, 0]); + + const latLngBoundsLiteral: L.LatLngBoundsLiteral = [[12, 13], latLngTuple]; let latLngBounds: L.LatLngBounds; @@ -18,6 +26,10 @@ latLngBounds = L.latLngBounds(latLng, latLng); latLngBounds = L.latLngBounds(latLngLiteral, latLngLiteral); latLngBounds = L.latLngBounds(latLngTuple, latLngTuple); +latLngBounds = new L.LatLngBounds(latLng, latLng); +latLngBounds = new L.LatLngBounds(latLngLiteral, latLngLiteral); +latLngBounds = new L.LatLngBounds(latLngTuple, latLngTuple); + const pointTuple: L.PointTuple = [0, 0]; let point: L.Point; @@ -26,6 +38,11 @@ point = L.point(12, 13, true); point = L.point(pointTuple); point = L.point({x: 12, y: 13}); +point = new L.Point(12, 13); +point = new L.Point(12, 13, true); +point = new L.Point(pointTuple); +point = new L.Point({x: 12, y: 13}); + let distance: number; point.distanceTo(point); point.distanceTo(pointTuple); @@ -44,6 +61,11 @@ bounds = L.bounds(pointTuple, pointTuple); bounds = L.bounds([point, point]); bounds = L.bounds(boundsLiteral); +bounds = new L.Bounds(point, point); +bounds = new L.Bounds(pointTuple, pointTuple); +bounds = new L.Bounds([point, point]); +bounds = new L.Bounds(boundsLiteral); + let points: Array; points = L.LineUtil.simplify([point, point], 1); points = L.LineUtil.simplify([pointTuple, pointTuple], 2); @@ -143,6 +165,10 @@ map = L.map('foo', mapOptions); map = L.map(htmlElement); map = L.map(htmlElement, mapOptions); +map = new L.Map('foo', mapOptions); +map = new L.Map(htmlElement); +map = new L.Map(htmlElement, mapOptions); + let doesItHaveLayer: boolean; doesItHaveLayer = map.hasLayer(L.tileLayer('')); @@ -230,6 +256,10 @@ tileLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png'); tileLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', tileLayerOptions); tileLayer = L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png?{foo}&{bar}&{abc}', {foo: 'bar', bar: (data: any) => 'foo', abc: () => ''}); +tileLayer = new L.TileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png'); +tileLayer = new L.TileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', tileLayerOptions); +tileLayer = new L.TileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png?{foo}&{bar}&{abc}', {foo: 'bar', bar: (data: any) => 'foo', abc: () => ''}); + let eventHandler = () => {}; let domEvent: Event = {} as Event; L.DomEvent diff --git a/leaflet/tslint.json b/leaflet/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/leaflet/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 42361f5fa86df2dc0aab1d5d792359346f94410a Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Fri, 27 Jan 2017 17:55:47 +0100 Subject: [PATCH 037/231] Re-add namespace and module declaration, because other modules have dependence on that --- leaflet/index.d.ts | 2702 ++++++++++++++++++++++---------------------- 1 file changed, 1361 insertions(+), 1341 deletions(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index b62695dd10..cc742ce504 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -3,1500 +3,1520 @@ // Definitions by: Alejandro Sánchez // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +/// + type NativeMouseEvent = MouseEvent; type NativeKeyboardEvent = KeyboardEvent; -import * as GeoJSONDefinition from 'geojson'; - -export class Class { - static extend(props: any): any/* how to return constructor of self extended type ? */; - static include(props: any): any /* how to return self extended type ? */; - static mergeOptions(props: any): any /* how to return self extended type ? */; - static addInitHook(initHookFn: () => void): any/* how to return self extended type ? */; -} - -export class Transformation { - constructor(a: number, b: number, c: number, d: number); - - transform(point: Point, scale?: number): Point; - - untransform(point: Point, scale?: number): Point; -} - -export namespace LineUtil { - export function simplify(points: PointExpression[], tolerance: number): Point[]; - - export function pointToSegmentDistance(p: PointExpression, p1: PointExpression, p2: PointExpression): number; - - export function closestPointOnSegment(p: PointExpression, p1: PointExpression, p2: PointExpression): Point; -} - -export namespace PolyUtil { - export function clipPolygon(points: PointExpression[], bounds: BoundsExpression, round?: boolean): Point[]; -} - -export class DomUtil { - /** - * Get Element by its ID or with the given HTML-Element - */ - static get(element: string | HTMLElement): HTMLElement; - static getStyle(el: HTMLElement, styleAttrib: string): string; - static create(tagName: string, className?: string, container?: HTMLElement): HTMLElement; - static remove(el: HTMLElement): void; - static empty(el: HTMLElement): void; - static toFront(el: HTMLElement): void; - static toBack(el: HTMLElement): void; - static hasClass(el: HTMLElement, name: string): boolean; - static addClass(el: HTMLElement, name: string): void; - static removeClass(el: HTMLElement, name: string): void; - static setClass(el: HTMLElement, name: string): void; - static getClass(el: HTMLElement): string; - static setOpacity(el: HTMLElement, opacity: number): void; - static testProp(props: string[]): string | boolean/*=false*/; - static setTransform(el: HTMLElement, offset: Point, scale?: number): void; - static setPosition(el: HTMLElement, position: Point): void; - static getPosition(el: HTMLElement): Point; - static disableTextSelection(): void; - static enableTextSelection(): void; - static disableImageDrag(): void; - static enableImageDrag(): void; - static preventOutline(el: HTMLElement): void; - static restoreOutline(): void; -} - -export abstract class CRS { - latLngToPoint(latlng: LatLngExpression, zoom: number): Point; - pointToLatLng(point: PointExpression, zoom: number): LatLng; - project(latlng: LatLngExpression): Point; - unproject(point: PointExpression): LatLng; - scale(zoom: number): number; - zoom(scale: number): number; - getProjectedBounds(zoom: number): Bounds; - distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; - wrapLatLng(latlng: LatLngExpression): LatLng; - - code: string; - wrapLng: [number, number]; - wrapLat: [number, number]; - infinite: boolean; -} - -export namespace CRS { - export const EPSG3395: CRS; - export const EPSG3857: CRS; - export const EPSG4326: CRS; - export const Earth: CRS; - export const Simple: CRS; -} - -export interface Projection { - project(latlng: LatLngExpression): Point; - unproject(point: PointExpression): LatLng; - - bounds: LatLngBounds; -} - -export namespace Projection { - export const LonLat: Projection; - export const Mercator: Projection; - export const SphericalMercator: Projection; -} - -export class LatLng { - constructor(latitude: number, longitude: number, altitude?: number); - constructor(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}); - equals(otherLatLng: LatLngExpression, maxMargin?: number): boolean; - toString(): string; - distanceTo(otherLatLng: LatLngExpression): number; - wrap(): LatLng; - toBounds(sizeInMeters: number): LatLngBounds; - - lat: number; - lng: number; - alt: number; -} - -export interface LatLngLiteral { - lat: number; - lng: number; -} - -export type LatLngTuple = [number, number]; - -type LatLngExpression = LatLng | LatLngLiteral | LatLngTuple; - -export function latLng(latitude: number, longitude: number, altitude?: number): LatLng; - -export function latLng(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}): LatLng; - -export class LatLngBounds { - constructor(southWest: LatLngExpression, northEast: LatLngExpression); - constructor(latlngs: LatLngBoundsLiteral); - extend(latlngOrBounds: LatLngExpression | LatLngBoundsExpression): this; - pad(bufferRatio: number): LatLngBounds; // does this modify the current instance or does it return a new one? - getCenter(): LatLng; - getSouthWest(): LatLng; - getNorthEast(): LatLng; - getNorthWest(): LatLng; - getSouthEast(): LatLng; - getWest(): number; - getSouth(): number; - getEast(): number; - getNorth(): number; - contains(otherBoundsOrLatLng: LatLngBoundsExpression | LatLngExpression): boolean; - intersects(otherBounds: LatLngBoundsExpression): boolean; - overlaps(otherBounds: BoundsExpression): boolean; // investigate if this is really bounds and not latlngbounds - toBBoxString(): string; - equals(otherBounds: LatLngBoundsExpression): boolean; - isValid(): boolean; -} - -export type LatLngBoundsLiteral = LatLngTuple[]; - -type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; - -export function latLngBounds(southWest: LatLngExpression, northEast: LatLngExpression): LatLngBounds; - -export function latLngBounds(latlngs: LatLngBoundsLiteral): LatLngBounds; - -export type PointTuple = [number, number]; - -export class Point { - constructor(x: number, y: number, round?: boolean); - constructor(coords: PointTuple | {x: number, y: number}); - clone(): Point; - add(otherPoint: PointExpression): Point; // investigate if this mutates or returns a new instance - subtract(otherPoint: PointExpression): Point; - divideBy(num: number): Point; - multiplyBy(num: number): Point; - scaleBy(scale: PointExpression): Point; - unscaleBy(scale: PointExpression): Point; - round(): Point; - floor(): Point; - ceil(): Point; - distanceTo(otherPoint: PointExpression): number; - equals(otherPoint: PointExpression): boolean; - contains(otherPoint: PointExpression): boolean; - toString(): string; - x: number; - y: number; -} - -type PointExpression = Point | PointTuple; - -export function point(x: number, y: number, round?: boolean): Point; - -export function point(coords: PointTuple | {x: number, y: number}): Point; - -export type BoundsLiteral = PointTuple[]; - -export class Bounds { - constructor(topLeft: PointExpression, bottomRight: PointExpression); - constructor(points: Point[] | BoundsLiteral); - extend(point: PointExpression): this; - getCenter(round?: boolean): Point; - getBottomLeft(): Point; - getTopRight(): Point; - getSize(): Point; - contains(pointOrBounds: BoundsExpression | PointExpression): boolean; - intersects(otherBounds: BoundsExpression): boolean; - overlaps(otherBounds: BoundsExpression): boolean; - - min: Point; - max: Point; -} - -type BoundsExpression = Bounds | BoundsLiteral; - -export function bounds(topLeft: PointExpression, bottomRight: PointExpression): Bounds; - -export function bounds(points: Point[] | BoundsLiteral): Bounds; - -export type EventHandlerFn = (event: Event) => void; - -export interface EventHandlerFnMap { - [type: string]: EventHandlerFn; -} - -/** - * A set of methods shared between event-powered classes (like Map and Marker). - * Generally, events allow you to execute some function when something happens - * with an object (e.g. the user clicks on the map, causing the map to fire - * 'click' event). - */ -export abstract class Evented extends Class { - /** - * Adds a listener function (fn) to a particular event type of the object. - * You can optionally specify the context of the listener (object the this - * keyword will point to). You can also pass several space-separated types - * (e.g. 'click dblclick'). - */ - on(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} - */ - on(eventMap: EventHandlerFnMap): this; - - /** - * Removes a previously added listener function. If no function is specified, - * it will remove all the listeners of that particular event from the object. - * Note that if you passed a custom context to on, you must pass the same context - * to off in order to remove the listener. - */ - off(type: string, fn?: EventHandlerFn, context?: any): this; - - /** - * Removes a set of type/listener pairs. - */ - off(eventMap: EventHandlerFnMap): this; - - /** - * Removes all listeners to all events on the object. - */ - off(): this; - - /** - * Fires an event of the specified type. You can optionally provide a data - * object — the first argument of the listener function will contain its properties. - * The event might can optionally be propagated to event parents. - */ - fire(type: string, data?: any, propagate?: boolean): this; - - /** - * Returns true if a particular event type has any listeners attached to it. - */ - listens(type: string): boolean; - - /** - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - once(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - once(eventMap: EventHandlerFnMap): this; - - /** - * Adds an event parent - an Evented that will receive propagated events - */ - addEventParent(obj: Evented): this; - - /** - * Removes an event parent, so it will stop receiving propagated events - */ - removeEventParent(obj: Evented): this; - - /** - * Alias for on(...) - * - * Adds a listener function (fn) to a particular event type of the object. - * You can optionally specify the context of the listener (object the this - * keyword will point to). You can also pass several space-separated types - * (e.g. 'click dblclick'). - */ - addEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for on(...) - * - * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} - */ - addEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for off(...) - * - * Removes a previously added listener function. If no function is specified, - * it will remove all the listeners of that particular event from the object. - * Note that if you passed a custom context to on, you must pass the same context - * to off in order to remove the listener. - */ - removeEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for off(...) - * - * Removes a set of type/listener pairs. - */ - removeEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for off() - * - * Removes all listeners to all events on the object. - */ - clearAllEventListeners(): this; - - /** - * Alias for once(...) - * - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - addOneTimeEventListener(type: string, fn: EventHandlerFn, context?: any): this; - - /** - * Alias for once(...) - * - * Behaves as on(...), except the listener will only get fired once and then removed. - */ - addOneTimeEventListener(eventMap: EventHandlerFnMap): this; - - /** - * Alias for fire(...) - * - * Fires an event of the specified type. You can optionally provide a data - * object — the first argument of the listener function will contain its properties. - * The event might can optionally be propagated to event parents. - */ - fireEvent(type: string, data?: any, propagate?: boolean): this; - - /** - * Alias for listens(...) - * - * Returns true if a particular event type has any listeners attached to it. - */ - hasEventListeners(type: string): boolean; -} - -/** - * A class for making DOM elements draggable (including touch support). - * Used internally for map and marker dragging. Only works for elements - * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). - */ -export class Draggable extends Evented { - constructor(element: HTMLElement, dragStartTarget?: HTMLElement, preventOutline?: boolean); - - enable(): void; - - disable(): void; - - finishDrag(): void; -} - -interface LayerOptions { - pane?: string; -} - -interface InteractiveLayerOptions extends LayerOptions { - interactive?: boolean; -} - -export class Layer extends Evented { - constructor(options?: LayerOptions); - addTo(map: Map): this; - remove(): this; - removeFrom(map: Map): this; - getPane(name?: string): HTMLElement; - - // Popup methods - bindPopup(content: (layer: Layer) => Content | Content | Popup, options?: PopupOptions): this; - unbindPopup(): this; - openPopup(latlng?: LatLngExpression): this; - closePopup(): this; - togglePopup(): this; - isPopupOpen(): boolean; - setPopupContent(content: Content | Popup): this; - getPopup(): Popup; - - // Tooltip methods - bindTooltip(content: (layer: Layer) => Content | Tooltip | Content, options?: TooltipOptions): this; - unbindTooltip(): this; - openTooltip(latlng?: LatLngExpression): this; - closeTooltip(): this; - toggleTooltip(): this; - isTooltipOpen(): boolean; - setTooltipContent(content: Content | Tooltip): this; - getTooltip(): Tooltip; - - // Extension methods - onAdd(map: Map): this; - onRemove(map: Map): this; - getEvents(): {[name: string]: (event: Event) => void}; - getAttribution(): string; - beforeAdd(map: Map): this; -} - -export interface GridLayerOptions { - tileSize?: number | Point; - opacity?: number; - updateWhenIdle?: boolean; - updateWhenZooming?: boolean; - updateInterval?: number; - attribution?: string; - zIndex?: number; - bounds?: LatLngBoundsExpression; - minZoom?: number; - maxZoom?: number; - noWrap?: boolean; - pane?: string; - className?: string; - keepBuffer?: number; -} - -export class GridLayer extends Layer { - constructor(options?: GridLayerOptions); - bringToFront(): this; - bringToBack(): this; - getAttribution(): string; - getContainer(): HTMLElement; - setOpacity(opacity: number): this; - setZIndex(zIndex: number): this; - isLoading(): boolean; - redraw(): this; - getTileSize(): Point; -} - -export function gridLayer(options?: GridLayerOptions): GridLayer; - -export interface TileLayerOptions extends GridLayerOptions { - minZoom?: number; - maxZoom?: number; - maxNativeZoom?: number; - subdomains?: string | string[]; - errorTileUrl?: string; - zoomOffset?: number; - tms?: boolean; - zoomReverse?: boolean; - detectRetina?: boolean; - crossOrigin?: boolean; - [name: string]: any; -} - -export class TileLayer extends GridLayer { - constructor(urlTemplate: string, options?: TileLayerOptions); - setUrl(url: string, noRedraw?: boolean): this; - - options: TileLayerOptions; -} - -export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; - - -export namespace TileLayer { - export class WMS extends TileLayer { - constructor(baseUrl: string, options: WMSOptions); - setParams(params: WMSParams, noRedraw?: boolean): this; - - wmsParams: WMSParams; - options: WMSOptions; +// Import to avoid conflicts with the GeoJSON class of leaflet +import GeoJSONFeature = GeoJSON.Feature; +import GeoJSONLineString = GeoJSON.LineString; +import GeoJSONMultiLineString = GeoJSON.MultiLineString; +import GeoJSONPolygon = GeoJSON.Polygon; +import GeoJSONMultiPolygon = GeoJSON.MultiPolygon; +import GeoJSONFeatureCollection = GeoJSON.FeatureCollection; +import GeoJSONGeometryObject = GeoJSON.GeometryObject; +import GeoJSONGeometryCollection = GeoJSON.GeometryCollection; +import GeoJSONPoint = GeoJSON.Point; +import GeoJSONMultiPoint = GeoJSON.MultiPoint; +import GeoJSONGeoJsonObject = GeoJSON.GeoJsonObject; + +declare namespace L { + export class Class { + static extend(props: any): any/* how to return constructor of self extended type ? */; + static include(props: any): any /* how to return self extended type ? */; + static mergeOptions(props: any): any /* how to return self extended type ? */; + static addInitHook(initHookFn: () => void): any/* how to return self extended type ? */; } -} -export interface WMSOptions extends TileLayerOptions { - layers: string; - styles?: string; - format?: string; - transparent?: boolean; - version?: string; - crs?: CRS; - uppercase?: boolean; -} + export class Transformation { + constructor(a: number, b: number, c: number, d: number); -export interface WMSParams { - format?: string; - layers: string; - request?: string; - service?: string; - styles?: string; - version?: string; - transparent?: boolean; - width?: number; - height?: number; -} + transform(point: Point, scale?: number): Point; -export namespace tileLayer { - export function wms(baseUrl: string, options?: WMSOptions): TileLayer.WMS; -} + untransform(point: Point, scale?: number): Point; + } -export interface ImageOverlayOptions extends LayerOptions { - opacity?: number; - alt?: string; - interactive?: boolean; - attribution?: string; - crossOrigin?: boolean; -} + export namespace LineUtil { + export function simplify(points: PointExpression[], tolerance: number): Point[]; -export class ImageOverlay extends Layer { - constructor(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions); - setOpacity(opacity: number): this; - bringToFront(): this; - bringToBack(): this; - setUrl(url: string): this; + export function pointToSegmentDistance(p: PointExpression, p1: PointExpression, p2: PointExpression): number; - /** Update the bounds that this ImageOverlay covers */ - setBounds(bounds: LatLngBounds): this; + export function closestPointOnSegment(p: PointExpression, p1: PointExpression, p2: PointExpression): Point; + } - /** Get the bounds that this ImageOverlay covers */ - getBounds(): LatLngBounds; + export namespace PolyUtil { + export function clipPolygon(points: PointExpression[], bounds: BoundsExpression, round?: boolean): Point[]; + } - /** Get the img element that represents the ImageOverlay on the map */ - getElement(): HTMLImageElement; + export class DomUtil { + /** + * Get Element by its ID or with the given HTML-Element + */ + static get(element: string | HTMLElement): HTMLElement; + static getStyle(el: HTMLElement, styleAttrib: string): string; + static create(tagName: string, className?: string, container?: HTMLElement): HTMLElement; + static remove(el: HTMLElement): void; + static empty(el: HTMLElement): void; + static toFront(el: HTMLElement): void; + static toBack(el: HTMLElement): void; + static hasClass(el: HTMLElement, name: string): boolean; + static addClass(el: HTMLElement, name: string): void; + static removeClass(el: HTMLElement, name: string): void; + static setClass(el: HTMLElement, name: string): void; + static getClass(el: HTMLElement): string; + static setOpacity(el: HTMLElement, opacity: number): void; + static testProp(props: string[]): string | boolean/*=false*/; + static setTransform(el: HTMLElement, offset: Point, scale?: number): void; + static setPosition(el: HTMLElement, position: Point): void; + static getPosition(el: HTMLElement): Point; + static disableTextSelection(): void; + static enableTextSelection(): void; + static disableImageDrag(): void; + static enableImageDrag(): void; + static preventOutline(el: HTMLElement): void; + static restoreOutline(): void; + } - options: ImageOverlayOptions; -} + export abstract class CRS { + latLngToPoint(latlng: LatLngExpression, zoom: number): Point; + pointToLatLng(point: PointExpression, zoom: number): LatLng; + project(latlng: LatLngExpression): Point; + unproject(point: PointExpression): LatLng; + scale(zoom: number): number; + zoom(scale: number): number; + getProjectedBounds(zoom: number): Bounds; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + wrapLatLng(latlng: LatLngExpression): LatLng; -export function imageOverlay(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions): ImageOverlay; + code: string; + wrapLng: [number, number]; + wrapLat: [number, number]; + infinite: boolean; + } -export type LineCapShape = 'butt' | 'round' | 'square' | 'inherit'; + export namespace CRS { + export const EPSG3395: CRS; + export const EPSG3857: CRS; + export const EPSG4326: CRS; + export const Earth: CRS; + export const Simple: CRS; + } -export type LineJoinShape = 'miter' | 'round' | 'bevel' | 'inherit'; + export interface Projection { + project(latlng: LatLngExpression): Point; + unproject(point: PointExpression): LatLng; -export type FillRule = 'nonzero' | 'evenodd' | 'inherit'; + bounds: LatLngBounds; + } -export interface PathOptions extends InteractiveLayerOptions { - stroke?: boolean; - color?: string; - weight?: number; - opacity?: number; - lineCap?: LineCapShape; - lineJoin?: LineJoinShape; - dashArray?: string; - dashOffset?: string; - fill?: boolean; - fillColor?: string; - fillOpacity?: number; - fillRule?: FillRule; - renderer?: Renderer; - className?: string; -} + export namespace Projection { + export const LonLat: Projection; + export const Mercator: Projection; + export const SphericalMercator: Projection; + } -export abstract class Path extends Layer { - redraw(): this; - setStyle(style: PathOptions): this; - bringToFront(): this; - bringToBack(): this; + export class LatLng { + constructor(latitude: number, longitude: number, altitude?: number); + constructor(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}); + equals(otherLatLng: LatLngExpression, maxMargin?: number): boolean; + toString(): string; + distanceTo(otherLatLng: LatLngExpression): number; + wrap(): LatLng; + toBounds(sizeInMeters: number): LatLngBounds; - options: PathOptions; -} + lat: number; + lng: number; + alt: number; + } -export interface PolylineOptions extends PathOptions { - smoothFactor?: number; - noClip?: boolean; -} + export interface LatLngLiteral { + lat: number; + lng: number; + } -declare class InternalPolyline extends Path { - getLatLngs(): LatLng[]; - setLatLngs(latlngs: LatLngExpression[]): this; - isEmpty(): boolean; - getCenter(): LatLng; - getBounds(): LatLngBounds; - addLatLng(latlng: LatLngExpression | LatLngExpression[]): this; + export type LatLngTuple = [number, number]; - options: PolylineOptions; -} + type LatLngExpression = LatLng | LatLngLiteral | LatLngTuple; -export class Polyline extends InternalPolyline { - constructor(latlngs: LatLngExpression[], options?: PolylineOptions); - toGeoJSON(): GeoJSONDefinition.Feature; + export function latLng(latitude: number, longitude: number, altitude?: number): LatLng; - feature: GeoJSONDefinition.Feature; -} + export function latLng(coords: LatLngTuple | [number, number, number] | LatLngLiteral | {lat: number, lng: number, alt?: number}): LatLng; -export function polyline(latlngs: LatLngExpression[], options?: PolylineOptions): Polyline; + export class LatLngBounds { + constructor(southWest: LatLngExpression, northEast: LatLngExpression); + constructor(latlngs: LatLngBoundsLiteral); + extend(latlngOrBounds: LatLngExpression | LatLngBoundsExpression): this; + pad(bufferRatio: number): LatLngBounds; // does this modify the current instance or does it return a new one? + getCenter(): LatLng; + getSouthWest(): LatLng; + getNorthEast(): LatLng; + getNorthWest(): LatLng; + getSouthEast(): LatLng; + getWest(): number; + getSouth(): number; + getEast(): number; + getNorth(): number; + contains(otherBoundsOrLatLng: LatLngBoundsExpression | LatLngExpression): boolean; + intersects(otherBounds: LatLngBoundsExpression): boolean; + overlaps(otherBounds: BoundsExpression): boolean; // investigate if this is really bounds and not latlngbounds + toBBoxString(): string; + equals(otherBounds: LatLngBoundsExpression): boolean; + isValid(): boolean; + } -export class Polygon extends InternalPolyline { - constructor(latlngs: LatLngExpression[], options?: PolylineOptions); - toGeoJSON(): GeoJSONDefinition.Feature; + export type LatLngBoundsLiteral = LatLngTuple[]; - feature: GeoJSONDefinition.Feature; -} + type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; -export function polygon(latlngs: LatLngExpression[], options?: PolylineOptions): Polygon; + export function latLngBounds(southWest: LatLngExpression, northEast: LatLngExpression): LatLngBounds; -export class Rectangle extends Polygon { - constructor(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions); - setBounds(latLngBounds: LatLngBoundsExpression): this; -} + export function latLngBounds(latlngs: LatLngBoundsLiteral): LatLngBounds; -export function rectangle(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions): Rectangle; + export type PointTuple = [number, number]; -export interface CircleMarkerOptions extends PathOptions { - radius?: number; -} + export class Point { + constructor(x: number, y: number, round?: boolean); + constructor(coords: PointTuple | {x: number, y: number}); + clone(): Point; + add(otherPoint: PointExpression): Point; // investigate if this mutates or returns a new instance + subtract(otherPoint: PointExpression): Point; + divideBy(num: number): Point; + multiplyBy(num: number): Point; + scaleBy(scale: PointExpression): Point; + unscaleBy(scale: PointExpression): Point; + round(): Point; + floor(): Point; + ceil(): Point; + distanceTo(otherPoint: PointExpression): number; + equals(otherPoint: PointExpression): boolean; + contains(otherPoint: PointExpression): boolean; + toString(): string; + x: number; + y: number; + } -export class CircleMarker extends Path { - constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); - toGeoJSON(): GeoJSONDefinition.Feature; - setLatLng(latLng: LatLngExpression): this; - getLatLng(): LatLng; - setRadius(radius: number): this; - getRadius(): number; + type PointExpression = Point | PointTuple; - options: CircleMarkerOptions; - feature: GeoJSONDefinition.Feature; -} + export function point(x: number, y: number, round?: boolean): Point; -export function circleMarker(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker; + export function point(coords: PointTuple | {x: number, y: number}): Point; + export type BoundsLiteral = PointTuple[]; -export class Circle extends CircleMarker { - constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); - constructor(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions); // deprecated! - getBounds(): LatLngBounds; -} + export class Bounds { + constructor(topLeft: PointExpression, bottomRight: PointExpression); + constructor(points: Point[] | BoundsLiteral); + extend(point: PointExpression): this; + getCenter(round?: boolean): Point; + getBottomLeft(): Point; + getTopRight(): Point; + getSize(): Point; + contains(pointOrBounds: BoundsExpression | PointExpression): boolean; + intersects(otherBounds: BoundsExpression): boolean; + overlaps(otherBounds: BoundsExpression): boolean; -export function circle(latlng: LatLngExpression, options?: CircleMarkerOptions): Circle; -export function circle(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions): Circle; // deprecated! + min: Point; + max: Point; + } -export interface RendererOptions extends LayerOptions { - padding?: number; -} + type BoundsExpression = Bounds | BoundsLiteral; -export class Renderer extends Layer { - constructor(options?: RendererOptions); + export function bounds(topLeft: PointExpression, bottomRight: PointExpression): Bounds; - options: RendererOptions; -} + export function bounds(points: Point[] | BoundsLiteral): Bounds; -export class SVG extends Renderer {} + export type EventHandlerFn = (event: Event) => void; -export namespace SVG { - export function create(name: string): SVGElement; + export interface EventHandlerFnMap { + [type: string]: EventHandlerFn; + } - export function pointsToPath(rings: PointExpression[], close: boolean): string; -} - -export function svg(options?: RendererOptions): SVG; - -export class Canvas extends Renderer {} - -export function canvas(options?: RendererOptions): Canvas; - -/** - * Used to group several layers and handle them as one. - * If you add it to the map, any layers added or removed from the group will be - * added/removed on the map as well. Extends Layer. - */ -export class LayerGroup extends Layer { - constructor(layers: Layer[]); /** - * Returns a GeoJSON representation of the layer group (as a GeoJSON GeometryCollection, GeoJSONDefinition.FeatureCollection or Multipoint). + * A set of methods shared between event-powered classes (like Map and Marker). + * Generally, events allow you to execute some function when something happens + * with an object (e.g. the user clicks on the map, causing the map to fire + * 'click' event). */ - toGeoJSON(): GeoJSONDefinition.FeatureCollection | GeoJSONDefinition.Feature; + export abstract class Evented extends Class { + /** + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + on(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + on(eventMap: EventHandlerFnMap): this; + + /** + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + off(type: string, fn?: EventHandlerFn, context?: any): this; + + /** + * Removes a set of type/listener pairs. + */ + off(eventMap: EventHandlerFnMap): this; + + /** + * Removes all listeners to all events on the object. + */ + off(): this; + + /** + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fire(type: string, data?: any, propagate?: boolean): this; + + /** + * Returns true if a particular event type has any listeners attached to it. + */ + listens(type: string): boolean; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + once(eventMap: EventHandlerFnMap): this; + + /** + * Adds an event parent - an Evented that will receive propagated events + */ + addEventParent(obj: Evented): this; + + /** + * Removes an event parent, so it will stop receiving propagated events + */ + removeEventParent(obj: Evented): this; + + /** + * Alias for on(...) + * + * Adds a listener function (fn) to a particular event type of the object. + * You can optionally specify the context of the listener (object the this + * keyword will point to). You can also pass several space-separated types + * (e.g. 'click dblclick'). + */ + addEventListener(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Alias for on(...) + * + * Adds a set of type/listener pairs, e.g. {click: onClick, mousemove: onMouseMove} + */ + addEventListener(eventMap: EventHandlerFnMap): this; + + /** + * Alias for off(...) + * + * Removes a previously added listener function. If no function is specified, + * it will remove all the listeners of that particular event from the object. + * Note that if you passed a custom context to on, you must pass the same context + * to off in order to remove the listener. + */ + removeEventListener(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Alias for off(...) + * + * Removes a set of type/listener pairs. + */ + removeEventListener(eventMap: EventHandlerFnMap): this; + + /** + * Alias for off() + * + * Removes all listeners to all events on the object. + */ + clearAllEventListeners(): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(type: string, fn: EventHandlerFn, context?: any): this; + + /** + * Alias for once(...) + * + * Behaves as on(...), except the listener will only get fired once and then removed. + */ + addOneTimeEventListener(eventMap: EventHandlerFnMap): this; + + /** + * Alias for fire(...) + * + * Fires an event of the specified type. You can optionally provide a data + * object — the first argument of the listener function will contain its properties. + * The event might can optionally be propagated to event parents. + */ + fireEvent(type: string, data?: any, propagate?: boolean): this; + + /** + * Alias for listens(...) + * + * Returns true if a particular event type has any listeners attached to it. + */ + hasEventListeners(type: string): boolean; + } /** - * Adds the given layer to the group. + * A class for making DOM elements draggable (including touch support). + * Used internally for map and marker dragging. Only works for elements + * that were positioned with [`L.DomUtil.setPosition`](#domutil-setposition). */ - addLayer(layer: Layer): this; + export class Draggable extends Evented { + constructor(element: HTMLElement, dragStartTarget?: HTMLElement, preventOutline?: boolean); + + enable(): void; + + disable(): void; + + finishDrag(): void; + } + + interface LayerOptions { + pane?: string; + } + + interface InteractiveLayerOptions extends LayerOptions { + interactive?: boolean; + } + + export class Layer extends Evented { + constructor(options?: LayerOptions); + addTo(map: Map): this; + remove(): this; + removeFrom(map: Map): this; + getPane(name?: string): HTMLElement; + + // Popup methods + bindPopup(content: (layer: Layer) => Content | Content | Popup, options?: PopupOptions): this; + unbindPopup(): this; + openPopup(latlng?: LatLngExpression): this; + closePopup(): this; + togglePopup(): this; + isPopupOpen(): boolean; + setPopupContent(content: Content | Popup): this; + getPopup(): Popup; + + // Tooltip methods + bindTooltip(content: (layer: Layer) => Content | Tooltip | Content, options?: TooltipOptions): this; + unbindTooltip(): this; + openTooltip(latlng?: LatLngExpression): this; + closeTooltip(): this; + toggleTooltip(): this; + isTooltipOpen(): boolean; + setTooltipContent(content: Content | Tooltip): this; + getTooltip(): Tooltip; + + // Extension methods + onAdd(map: Map): this; + onRemove(map: Map): this; + getEvents(): {[name: string]: (event: Event) => void}; + getAttribution(): string; + beforeAdd(map: Map): this; + } + + export interface GridLayerOptions { + tileSize?: number | Point; + opacity?: number; + updateWhenIdle?: boolean; + updateWhenZooming?: boolean; + updateInterval?: number; + attribution?: string; + zIndex?: number; + bounds?: LatLngBoundsExpression; + minZoom?: number; + maxZoom?: number; + noWrap?: boolean; + pane?: string; + className?: string; + keepBuffer?: number; + } + + export class GridLayer extends Layer { + constructor(options?: GridLayerOptions); + bringToFront(): this; + bringToBack(): this; + getAttribution(): string; + getContainer(): HTMLElement; + setOpacity(opacity: number): this; + setZIndex(zIndex: number): this; + isLoading(): boolean; + redraw(): this; + getTileSize(): Point; + } + + export function gridLayer(options?: GridLayerOptions): GridLayer; + + export interface TileLayerOptions extends GridLayerOptions { + minZoom?: number; + maxZoom?: number; + maxNativeZoom?: number; + subdomains?: string | string[]; + errorTileUrl?: string; + zoomOffset?: number; + tms?: boolean; + zoomReverse?: boolean; + detectRetina?: boolean; + crossOrigin?: boolean; + [name: string]: any; + } + + export class TileLayer extends GridLayer { + constructor(urlTemplate: string, options?: TileLayerOptions); + setUrl(url: string, noRedraw?: boolean): this; + + options: TileLayerOptions; + } + + export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; + + + export namespace TileLayer { + export class WMS extends TileLayer { + constructor(baseUrl: string, options: WMSOptions); + setParams(params: WMSParams, noRedraw?: boolean): this; + + wmsParams: WMSParams; + options: WMSOptions; + } + } + + export interface WMSOptions extends TileLayerOptions { + layers: string; + styles?: string; + format?: string; + transparent?: boolean; + version?: string; + crs?: CRS; + uppercase?: boolean; + } + + export interface WMSParams { + format?: string; + layers: string; + request?: string; + service?: string; + styles?: string; + version?: string; + transparent?: boolean; + width?: number; + height?: number; + } + + export namespace tileLayer { + export function wms(baseUrl: string, options?: WMSOptions): TileLayer.WMS; + } + + export interface ImageOverlayOptions extends LayerOptions { + opacity?: number; + alt?: string; + interactive?: boolean; + attribution?: string; + crossOrigin?: boolean; + } + + export class ImageOverlay extends Layer { + constructor(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions); + setOpacity(opacity: number): this; + bringToFront(): this; + bringToBack(): this; + setUrl(url: string): this; + + /** Update the bounds that this ImageOverlay covers */ + setBounds(bounds: LatLngBounds): this; + + /** Get the bounds that this ImageOverlay covers */ + getBounds(): LatLngBounds; + + /** Get the img element that represents the ImageOverlay on the map */ + getElement(): HTMLImageElement; + + options: ImageOverlayOptions; + } + + export function imageOverlay(imageUrl: string, bounds: LatLngBoundsExpression, options?: ImageOverlayOptions): ImageOverlay; + + export type LineCapShape = 'butt' | 'round' | 'square' | 'inherit'; + + export type LineJoinShape = 'miter' | 'round' | 'bevel' | 'inherit'; + + export type FillRule = 'nonzero' | 'evenodd' | 'inherit'; + + export interface PathOptions extends InteractiveLayerOptions { + stroke?: boolean; + color?: string; + weight?: number; + opacity?: number; + lineCap?: LineCapShape; + lineJoin?: LineJoinShape; + dashArray?: string; + dashOffset?: string; + fill?: boolean; + fillColor?: string; + fillOpacity?: number; + fillRule?: FillRule; + renderer?: Renderer; + className?: string; + } + + export abstract class Path extends Layer { + redraw(): this; + setStyle(style: PathOptions): this; + bringToFront(): this; + bringToBack(): this; + + options: PathOptions; + } + + export interface PolylineOptions extends PathOptions { + smoothFactor?: number; + noClip?: boolean; + } + + class InternalPolyline extends Path { + getLatLngs(): LatLng[]; + setLatLngs(latlngs: LatLngExpression[]): this; + isEmpty(): boolean; + getCenter(): LatLng; + getBounds(): LatLngBounds; + addLatLng(latlng: LatLngExpression | LatLngExpression[]): this; + + options: PolylineOptions; + } + + export class Polyline extends InternalPolyline { + constructor(latlngs: LatLngExpression[], options?: PolylineOptions); + toGeoJSON(): GeoJSONFeature; + + feature: GeoJSONFeature; + } + + export function polyline(latlngs: LatLngExpression[], options?: PolylineOptions): Polyline; + + export class Polygon extends InternalPolyline { + constructor(latlngs: LatLngExpression[], options?: PolylineOptions); + toGeoJSON(): GeoJSONFeature; + + feature: GeoJSONFeature; + } + + export function polygon(latlngs: LatLngExpression[], options?: PolylineOptions): Polygon; + + export class Rectangle extends Polygon { + constructor(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions); + setBounds(latLngBounds: LatLngBoundsExpression): this; + } + + export function rectangle(latLngBounds: LatLngBoundsExpression, options?: PolylineOptions): Rectangle; + + export interface CircleMarkerOptions extends PathOptions { + radius?: number; + } + + export class CircleMarker extends Path { + constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); + toGeoJSON(): GeoJSONFeature; + setLatLng(latLng: LatLngExpression): this; + getLatLng(): LatLng; + setRadius(radius: number): this; + getRadius(): number; + + options: CircleMarkerOptions; + feature: GeoJSONFeature; + } + + export function circleMarker(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker; + + + export class Circle extends CircleMarker { + constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); + constructor(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions); // deprecated! + getBounds(): LatLngBounds; + } + + export function circle(latlng: LatLngExpression, options?: CircleMarkerOptions): Circle; + export function circle(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions): Circle; // deprecated! + + export interface RendererOptions extends LayerOptions { + padding?: number; + } + + export class Renderer extends Layer { + constructor(options?: RendererOptions); + + options: RendererOptions; + } + + export class SVG extends Renderer {} + + export namespace SVG { + export function create(name: string): SVGElement; + + export function pointsToPath(rings: PointExpression[], close: boolean): string; + } + + export function svg(options?: RendererOptions): SVG; + + export class Canvas extends Renderer {} + + export function canvas(options?: RendererOptions): Canvas; /** - * Removes the layer with the given internal ID or the given layer from the group. + * Used to group several layers and handle them as one. + * If you add it to the map, any layers added or removed from the group will be + * added/removed on the map as well. Extends Layer. */ - removeLayer(layer: number | Layer): this; + export class LayerGroup extends Layer { + constructor(layers: Layer[]); + /** + * Returns a GeoJSON representation of the layer group (as a GeoJSON GeometryCollection, GeoJSONFeatureCollection or Multipoint). + */ + toGeoJSON(): GeoJSONFeatureCollection | GeoJSONFeature; + + /** + * Adds the given layer to the group. + */ + addLayer(layer: Layer): this; + + /** + * Removes the layer with the given internal ID or the given layer from the group. + */ + removeLayer(layer: number | Layer): this; + + /** + * Returns true if the given layer is currently added to the group. + */ + hasLayer(layer: Layer): boolean; + + /** + * Removes all the layers from the group. + */ + clearLayers(): this; + + /** + * Calls methodName on every layer contained in this group, passing any additional parameters. + * Has no effect if the layers contained do not implement methodName. + */ + invoke(methodName: string, ...params: any[]): this; + + /** + * Iterates over the layers of the group, + * optionally specifying context of the iterator function. + */ + eachLayer(fn: (layer: Layer) => void, context?: any): this; + + /** + * Returns the layer with the given internal ID. + */ + getLayer(id: number): Layer; + + /** + * Returns an array of all the layers added to the group. + */ + getLayers(): Layer[]; + + /** + * Calls setZIndex on every layer contained in this group, passing the z-index. + */ + setZIndex(zIndex: number): this; + + /** + * Returns the internal ID for a layer + */ + getLayerId(layer: Layer): number; + + feature: GeoJSONFeatureCollection | GeoJSONFeature; + } /** - * Returns true if the given layer is currently added to the group. + * Create a layer group, optionally given an initial set of layers. */ - hasLayer(layer: Layer): boolean; + export function layerGroup(layers: Layer[]): LayerGroup; /** - * Removes all the layers from the group. + * Extended LayerGroup that also has mouse events (propagated from + * members of the group) and a shared bindPopup method. */ - clearLayers(): this; + export class FeatureGroup extends LayerGroup { + /** + * Sets the given path options to each layer of the group that has a setStyle method. + */ + setStyle(style: PathOptions): this; + + /** + * Brings the layer group to the top of all other layers + */ + bringToFront(): this; + + /** + * Brings the layer group to the top [sic] of all other layers + */ + bringToBack(): this; + + /** + * Returns the LatLngBounds of the Feature Group (created from + * bounds and coordinates of its children). + */ + getBounds(): LatLngBounds; + } /** - * Calls methodName on every layer contained in this group, passing any additional parameters. - * Has no effect if the layers contained do not implement methodName. + * Create a feature group, optionally given an initial set of layers. */ - invoke(methodName: string, ...params: any[]): this; + export function featureGroup(layers?: Layer[]): FeatureGroup; - /** - * Iterates over the layers of the group, - * optionally specifying context of the iterator function. - */ - eachLayer(fn: (layer: Layer) => void, context?: any): this; + type StyleFunction = (feature: GeoJSONFeature) => PathOptions; - /** - * Returns the layer with the given internal ID. - */ - getLayer(id: number): Layer; - - /** - * Returns an array of all the layers added to the group. - */ - getLayers(): Layer[]; - - /** - * Calls setZIndex on every layer contained in this group, passing the z-index. - */ - setZIndex(zIndex: number): this; - - /** - * Returns the internal ID for a layer - */ - getLayerId(layer: Layer): number; - - feature: GeoJSONDefinition.FeatureCollection | GeoJSONDefinition.Feature; -} - -/** - * Create a layer group, optionally given an initial set of layers. - */ -export function layerGroup(layers: Layer[]): LayerGroup; - -/** - * Extended LayerGroup that also has mouse events (propagated from - * members of the group) and a shared bindPopup method. - */ -export class FeatureGroup extends LayerGroup { - /** - * Sets the given path options to each layer of the group that has a setStyle method. - */ - setStyle(style: PathOptions): this; - - /** - * Brings the layer group to the top of all other layers - */ - bringToFront(): this; - - /** - * Brings the layer group to the top [sic] of all other layers - */ - bringToBack(): this; - - /** - * Returns the LatLngBounds of the Feature Group (created from - * bounds and coordinates of its children). - */ - getBounds(): LatLngBounds; -} - -/** - * Create a feature group, optionally given an initial set of layers. - */ -export function featureGroup(layers?: Layer[]): FeatureGroup; - -type StyleFunction = (feature: GeoJSONDefinition.Feature) => PathOptions; - -export interface GeoJSONOptions extends LayerOptions { - /** - * A Function defining how GeoJSON points spawn Leaflet layers. - * It is internally called when data is added, passing the GeoJSON point - * feature and its LatLng. - * - * The default is to spawn a default Marker: - * - * ``` - * function(geoJsonPoint, latlng) { + export interface GeoJSONOptions extends LayerOptions { + /** + * A Function defining how GeoJSON points spawn Leaflet layers. + * It is internally called when data is added, passing the GeoJSON point + * feature and its LatLng. + * + * The default is to spawn a default Marker: + * + * ``` + * function(geoJsonPoint, latlng) { * return L.marker(latlng); * } - * ``` - */ - pointToLayer?: (geoJsonPoint: GeoJSONDefinition.Feature, latlng: LatLng) => Layer; // should import GeoJSON typings + * ``` + */ + pointToLayer?: (geoJsonPoint: GeoJSONFeature, latlng: LatLng) => Layer; // should import GeoJSON typings - /** - * A Function defining the Path options for styling GeoJSON lines and polygons, - * called internally when data is added. - * - * The default value is to not override any defaults: - * - * ``` - * function (geoJsonFeature) { + /** + * A Function defining the Path options for styling GeoJSON lines and polygons, + * called internally when data is added. + * + * The default value is to not override any defaults: + * + * ``` + * function (geoJsonFeature) { * return {} * } - * ``` - */ - style?: StyleFunction; + * ``` + */ + style?: StyleFunction; - /** - * A Function that will be called once for each created Feature, after it - * has been created and styled. Useful for attaching events and popups to features. - * - * The default is to do nothing with the newly created layers: - * - * ``` - * function (feature, layer) {} - * ``` - */ - onEachFeature?: (feature: GeoJSONDefinition.Feature, layer: Layer) => void; + /** + * A Function that will be called once for each created Feature, after it + * has been created and styled. Useful for attaching events and popups to features. + * + * The default is to do nothing with the newly created layers: + * + * ``` + * function (feature, layer) {} + * ``` + */ + onEachFeature?: (feature: GeoJSONFeature, layer: Layer) => void; - /** - * A Function that will be used to decide whether to show a feature or not. - * - * The default is to show all features: - * - * ``` - * function (geoJsonFeature) { + /** + * A Function that will be used to decide whether to show a feature or not. + * + * The default is to show all features: + * + * ``` + * function (geoJsonFeature) { * return true; * } - * ``` - */ - filter?: (geoJsonFeature: GeoJSONDefinition.Feature) => boolean; + * ``` + */ + filter?: (geoJsonFeature: GeoJSONFeature) => boolean; - /** - * A Function that will be used for converting GeoJSON coordinates to LatLngs. - * The default is the coordsToLatLng static method. - */ - coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng; // check if LatLng has an altitude property -} - -/** - * Represents a GeoJSON object or an array of GeoJSON objects. - * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. - */ -export class GeoJSON { - /** - * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer - * and/or coordsToLatLng functions if provided as options. - */ - static geometryToLayer(featureData: GeoJSONDefinition.Feature, options?: GeoJSONOptions): Layer; - - /** - * Creates a LatLng object from an array of 2 numbers (longitude, latitude) or - * 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. - */ - static coordsToLatLng(coords: [number, number] | [number, number, number]): LatLng; - - /** - * Creates a multidimensional array of LatLngs from a GeoJSON coordinates array. - * levelsDeep specifies the nesting level (0 is for an array of points, 1 for an array of - * arrays of points, etc., 0 by default). - * Can use a custom coordsToLatLng function. - */ - static coordsToLatLngs( - coords: any[], - levelsDeep?: number, - coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng): any[]; // Using any[] to avoid artificially limiting valid calls - - /** - * Reverse of coordsToLatLng - */ - static latLngToCoords(latlng: LatLng): [number, number, number]; // A three tuple can be assigned to a two or three tuple - - - /** - * Reverse of coordsToLatLngs closed determines whether the first point should be - * appended to the end of the array to close the feature, only used when levelsDeep is 0. - * False by default. - */ - static latLngsToCoords(latlngs: any[], levelsDeep?: number, closed?: boolean): any[]; // Using any[] to avoid artificially limiting valid calls - - /** - * Normalize GeoJSON geometries/features into GeoJSON features. - */ - static asFeature(geojson: GeoJSONDefinition.Feature | GeoJSONDefinition.GeometryObject): GeoJSONDefinition.Feature; - - constructor(geojson?: GeoJSONDefinition.GeoJsonObject, options?: GeoJSONOptions) - /** - * Adds a GeoJSON object to the layer. - */ - addData(data: GeoJSONDefinition.GeoJsonObject): Layer; - - /** - * Resets the given vector layer's style to the original GeoJSON style, - * useful for resetting style after hover events. - */ - resetStyle(layer: Layer): Layer; - - /** - * Changes styles of GeoJSON vector layers with the given style function. - */ - setStyle(style: StyleFunction): this; - - options: GeoJSONOptions; - -} - -/** - * Creates a GeoJSON layer. - * - * Optionally accepts an object in GeoJSON format to display on the - * map (you can alternatively add it later with addData method) and - * an options object. - */ -export function geoJSON(geojson?: GeoJSONDefinition.GeoJsonObject, options?: GeoJSONOptions): GeoJSON; - -type Zoom = boolean | 'center'; - -export interface MapOptions { - preferCanvas?: boolean; - - // Control options - attributionControl?: boolean; - zoomControl?: boolean; - - // Interaction options - closePopupOnClick?: boolean; - zoomSnap?: number; - zoomDelta?: number; - trackResize?: boolean; - boxZoom?: boolean; - doubleClickZoom?: Zoom; - dragging?: boolean; - - // Map state options - crs?: CRS; - center?: LatLngExpression; - zoom?: number; - minZoom?: number; - maxZoom?: number; - layers?: Layer[]; - maxBounds?: LatLngBoundsExpression; - renderer?: Renderer; - - // Animation options - fadeAnimation?: boolean; - markerZoomAnimation?: boolean; - transform3DLimit?: number; - zoomAnimation?: boolean; - zoomAnimationThreshold?: number; - - // Panning inertia options - inertia?: boolean; - inertiaDeceleration?: number; - inertiaMaxSpeed?: number; - easeLinearity?: number; - worldCopyJump?: boolean; - maxBoundsViscosity?: number; - - // Keyboard navigation options - keyboard?: boolean; - keyboardPanDelta?: number; - - // Mousewheel options - scrollWheelZoom?: Zoom; - wheelDebounceTime?: number; - wheelPxPerZoomLevel?: number; - - // Touch interaction options - tap?: boolean; - tapTolerance?: number; - touchZoom?: Zoom; - bounceAtZoomLimits?: boolean; -} - -export type ControlPosition = 'topleft' | 'topright' | 'bottomleft' | 'bottomright'; - -export interface ControlOptions { - position?: ControlPosition; -} - -export class Control extends Class { - constructor(options?: ControlOptions); - getPosition(): ControlPosition; - setPosition(position: ControlPosition): this; - getContainer(): HTMLElement; - addTo(map: Map): this; - remove(): this; - - // Extension methods - onAdd(map: Map): HTMLElement; - onRemove(map: Map): void; - - options: ControlOptions; -} - -export namespace Control { - export interface ZoomOptions extends ControlOptions { - zoomInText?: string; - zoomInTitle?: string; - zoomOutText?: string; - zoomOutTitle?: string; + /** + * A Function that will be used for converting GeoJSON coordinates to LatLngs. + * The default is the coordsToLatLng static method. + */ + coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng; // check if LatLng has an altitude property } - export class Zoom extends Control { - constructor(options?: ZoomOptions); - options: ZoomOptions; + /** + * Represents a GeoJSON object or an array of GeoJSON objects. + * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. + */ + export class GeoJSON { + /** + * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer + * and/or coordsToLatLng functions if provided as options. + */ + static geometryToLayer(featureData: GeoJSONFeature, options?: GeoJSONOptions): Layer; + + /** + * Creates a LatLng object from an array of 2 numbers (longitude, latitude) or + * 3 numbers (longitude, latitude, altitude) used in GeoJSON for points. + */ + static coordsToLatLng(coords: [number, number] | [number, number, number]): LatLng; + + /** + * Creates a multidimensional array of LatLngs from a GeoJSON coordinates array. + * levelsDeep specifies the nesting level (0 is for an array of points, 1 for an array of + * arrays of points, etc., 0 by default). + * Can use a custom coordsToLatLng function. + */ + static coordsToLatLngs( + coords: any[], + levelsDeep?: number, + coordsToLatLng?: (coords: [number, number] | [number, number, number]) => LatLng): any[]; // Using any[] to avoid artificially limiting valid calls + + /** + * Reverse of coordsToLatLng + */ + static latLngToCoords(latlng: LatLng): [number, number, number]; // A three tuple can be assigned to a two or three tuple + + + /** + * Reverse of coordsToLatLngs closed determines whether the first point should be + * appended to the end of the array to close the feature, only used when levelsDeep is 0. + * False by default. + */ + static latLngsToCoords(latlngs: any[], levelsDeep?: number, closed?: boolean): any[]; // Using any[] to avoid artificially limiting valid calls + + /** + * Normalize GeoJSON geometries/features into GeoJSON features. + */ + static asFeature(geojson: GeoJSONFeature | GeoJSONGeometryObject): GeoJSONFeature; + + constructor(geojson?: GeoJSONGeoJsonObject, options?: GeoJSONOptions) + /** + * Adds a GeoJSON object to the layer. + */ + addData(data: GeoJSONGeoJsonObject): Layer; + + /** + * Resets the given vector layer's style to the original GeoJSON style, + * useful for resetting style after hover events. + */ + resetStyle(layer: Layer): Layer; + + /** + * Changes styles of GeoJSON vector layers with the given style function. + */ + setStyle(style: StyleFunction): this; + + options: GeoJSONOptions; + } - export interface AttributionOptions extends ControlOptions { - prefix?: string | boolean; + /** + * Creates a GeoJSON layer. + * + * Optionally accepts an object in GeoJSON format to display on the + * map (you can alternatively add it later with addData method) and + * an options object. + */ + export function geoJSON(geojson?: GeoJSONGeoJsonObject, options?: GeoJSONOptions): GeoJSON; + + type Zoom = boolean | 'center'; + + export interface MapOptions { + preferCanvas?: boolean; + + // Control options + attributionControl?: boolean; + zoomControl?: boolean; + + // Interaction options + closePopupOnClick?: boolean; + zoomSnap?: number; + zoomDelta?: number; + trackResize?: boolean; + boxZoom?: boolean; + doubleClickZoom?: Zoom; + dragging?: boolean; + + // Map state options + crs?: CRS; + center?: LatLngExpression; + zoom?: number; + minZoom?: number; + maxZoom?: number; + layers?: Layer[]; + maxBounds?: LatLngBoundsExpression; + renderer?: Renderer; + + // Animation options + fadeAnimation?: boolean; + markerZoomAnimation?: boolean; + transform3DLimit?: number; + zoomAnimation?: boolean; + zoomAnimationThreshold?: number; + + // Panning inertia options + inertia?: boolean; + inertiaDeceleration?: number; + inertiaMaxSpeed?: number; + easeLinearity?: number; + worldCopyJump?: boolean; + maxBoundsViscosity?: number; + + // Keyboard navigation options + keyboard?: boolean; + keyboardPanDelta?: number; + + // Mousewheel options + scrollWheelZoom?: Zoom; + wheelDebounceTime?: number; + wheelPxPerZoomLevel?: number; + + // Touch interaction options + tap?: boolean; + tapTolerance?: number; + touchZoom?: Zoom; + bounceAtZoomLimits?: boolean; } - export class Attribution extends Control { - constructor(options?: AttributionOptions); - setPrefix(prefix: string): this; - addAttribution(text: string): this; - removeAttribution(text: string): this; - options: AttributionOptions; + export type ControlPosition = 'topleft' | 'topright' | 'bottomleft' | 'bottomright'; + + export interface ControlOptions { + position?: ControlPosition; } - export interface LayersOptions extends ControlOptions { - collapsed?: boolean; - autoZIndex?: boolean; - hideSingleBase?: boolean; + export class Control extends Class { + constructor(options?: ControlOptions); + getPosition(): ControlPosition; + setPosition(position: ControlPosition): this; + getContainer(): HTMLElement; + addTo(map: Map): this; + remove(): this; + + // Extension methods + onAdd(map: Map): HTMLElement; + onRemove(map: Map): void; + + options: ControlOptions; } - interface LayersObject { - [name: string]: Layer; + export namespace Control { + export interface ZoomOptions extends ControlOptions { + zoomInText?: string; + zoomInTitle?: string; + zoomOutText?: string; + zoomOutTitle?: string; + } + + export class Zoom extends Control { + constructor(options?: ZoomOptions); + options: ZoomOptions; + } + + export interface AttributionOptions extends ControlOptions { + prefix?: string | boolean; + } + + export class Attribution extends Control { + constructor(options?: AttributionOptions); + setPrefix(prefix: string): this; + addAttribution(text: string): this; + removeAttribution(text: string): this; + options: AttributionOptions; + } + + export interface LayersOptions extends ControlOptions { + collapsed?: boolean; + autoZIndex?: boolean; + hideSingleBase?: boolean; + } + + interface LayersObject { + [name: string]: Layer; + } + + export class Layers extends Control { + constructor(baseLayers?: LayersObject, overlays?: LayersObject, options?: Control.LayersOptions); + addBaseLayer(layer: Layer, name: string): this; + addOverlay(layer: Layer, name: string): this; + removeLayer(layer: Layer): this; + expand(): this; + collapse(): this; + options: LayersOptions; + } + + export interface ScaleOptions extends ControlOptions { + maxWidth?: number; + metric?: boolean; + imperial?: boolean; + updateWhenIdle?: boolean; + } + + export class Scale extends Control { + constructor(options?: Control.ScaleOptions); + options: ScaleOptions; + } } - export class Layers extends Control { - constructor(baseLayers?: LayersObject, overlays?: LayersObject, options?: Control.LayersOptions); - addBaseLayer(layer: Layer, name: string): this; - addOverlay(layer: Layer, name: string): this; - removeLayer(layer: Layer): this; - expand(): this; - collapse(): this; - options: LayersOptions; + export namespace control { + export function zoom(options?: Control.ZoomOptions): Control.Zoom; + + export function attribution(options?: Control.AttributionOptions): Control.Attribution; + + export function layers(baseLayers?: Control.LayersObject, overlays?: Control.LayersObject, options?: Control.LayersOptions): Control.Layers; + + export function scale(options?: Control.ScaleOptions): Control.Scale; } - export interface ScaleOptions extends ControlOptions { + interface DivOverlayOptions { + offset?: PointExpression; + zoomAnimation?: boolean; + className?: string; + pane?: string; + } + + export interface PopupOptions extends DivOverlayOptions { maxWidth?: number; - metric?: boolean; - imperial?: boolean; - updateWhenIdle?: boolean; + minWidth?: number; + maxHeight?: number; + autoPan?: boolean; + autoPanPaddingTopLeft?: PointExpression; + autoPanPaddingBottomRight?: PointExpression; + autoPanPadding?: PointExpression; + keepInView?: boolean; + closeButton?: boolean; + autoClose?: boolean; + closeOnClick?: boolean; } - export class Scale extends Control { - constructor(options?: Control.ScaleOptions); - options: ScaleOptions; + type Content = string | HTMLElement; + + export class Popup extends Layer { + constructor(options?: PopupOptions, source?: Layer); + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + getContent(): Content; + setContent(htmlContent: (source: Layer) => Content | Content): this; + getElement(): HTMLElement; + update(): void; + isOpen(): boolean; + bringToFront(): this; + bringToBack(): this; + openOn(map: Map): this; + + options: PopupOptions; } -} -export namespace control { - export function zoom(options?: Control.ZoomOptions): Control.Zoom; + export function popup(options?: PopupOptions, source?: Layer): Popup; - export function attribution(options?: Control.AttributionOptions): Control.Attribution; + export type Direction = 'right' | 'left' | 'top' | 'bottom' | 'center' | 'auto'; - export function layers(baseLayers?: Control.LayersObject, overlays?: Control.LayersObject, options?: Control.LayersOptions): Control.Layers; + export interface TooltipOptions extends DivOverlayOptions { + pane?: string; + offset?: PointExpression; + direction?: Direction; + permanent?: boolean; + sticky?: boolean; + interactive?: boolean; + opacity?: number; + } - export function scale(options?: Control.ScaleOptions): Control.Scale; -} + export class Tooltip extends Layer { + constructor(options?: TooltipOptions, source?: Layer); + setOpacity(val: number): void; + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + getContent(): Content; + setContent(htmlContent: (source: Layer) => Content | Content): this; + getElement(): HTMLElement; + update(): void; + isOpen(): boolean; + bringToFront(): this; + bringToBack(): this; -interface DivOverlayOptions { - offset?: PointExpression; - zoomAnimation?: boolean; - className?: string; - pane?: string; -} + options: TooltipOptions; + } -export interface PopupOptions extends DivOverlayOptions { - maxWidth?: number; - minWidth?: number; - maxHeight?: number; - autoPan?: boolean; - autoPanPaddingTopLeft?: PointExpression; - autoPanPaddingBottomRight?: PointExpression; - autoPanPadding?: PointExpression; - keepInView?: boolean; - closeButton?: boolean; - autoClose?: boolean; - closeOnClick?: boolean; -} + export function tooltip(options?: TooltipOptions, source?: Layer): Tooltip; -type Content = string | HTMLElement; + export interface ZoomOptions { + animate?: boolean; + } -export class Popup extends Layer { - constructor(options?: PopupOptions, source?: Layer); - getLatLng(): LatLng; - setLatLng(latlng: LatLngExpression): this; - getContent(): Content; - setContent(htmlContent: (source: Layer) => Content | Content): this; - getElement(): HTMLElement; - update(): void; - isOpen(): boolean; - bringToFront(): this; - bringToBack(): this; - openOn(map: Map): this; + export interface PanOptions { + animate?: boolean; + duration?: number; + easeLinearity?: number; + noMoveStart?: boolean; + } - options: PopupOptions; -} + export interface ZoomPanOptions extends ZoomOptions, PanOptions {} -export function popup(options?: PopupOptions, source?: Layer): Popup; + export interface FitBoundsOptions extends ZoomOptions, PanOptions { + paddingTopLeft?: PointExpression; + paddingBottomRight?: PointExpression; + padding?: PointExpression; + maxZoom?: number; + } -export type Direction = 'right' | 'left' | 'top' | 'bottom' | 'center' | 'auto'; + export interface LocateOptions { + watch?: boolean; + setView?: boolean; + maxZoom?: number; + timeout?: number; + maximumAge?: number; + enableHighAccuracy?: boolean; + } -export interface TooltipOptions extends DivOverlayOptions { - pane?: string; - offset?: PointExpression; - direction?: Direction; - permanent?: boolean; - sticky?: boolean; - interactive?: boolean; - opacity?: number; -} + export class Handler extends Class { + constructor(map: Map); + enable(): this; + disable(): this; + enabled(): boolean; -export class Tooltip extends Layer { - constructor(options?: TooltipOptions, source?: Layer); - setOpacity(val: number): void; - getLatLng(): LatLng; - setLatLng(latlng: LatLngExpression): this; - getContent(): Content; - setContent(htmlContent: (source: Layer) => Content | Content): this; - getElement(): HTMLElement; - update(): void; - isOpen(): boolean; - bringToFront(): this; - bringToBack(): this; + // Extension methods + addHooks(): void; + removeHooks(): void; + } - options: TooltipOptions; -} + export interface Event { + type: string; + target: any; + } -export function tooltip(options?: TooltipOptions, source?: Layer): Tooltip; + export interface MouseEvent extends Event { + latlng: LatLng; + layerPoint: Point; + containerPoint: Point; + originalEvent: NativeMouseEvent; + } -export interface ZoomOptions { - animate?: boolean; -} + export interface KeyboardEvent extends Event { + originalEvent: NativeKeyboardEvent; + } -export interface PanOptions { - animate?: boolean; - duration?: number; - easeLinearity?: number; - noMoveStart?: boolean; -} + export interface LocationEvent extends Event { + latlng: LatLng; + bounds: LatLngBounds; + accuracy: number; + altitude: number; + altitudeAccuracy: number; + heading: number; + speed: number; + timestamp: number; + } -export interface ZoomPanOptions extends ZoomOptions, PanOptions {} + export interface ErrorEvent extends Event { + message: string; + code: number; + } -export interface FitBoundsOptions extends ZoomOptions, PanOptions { - paddingTopLeft?: PointExpression; - paddingBottomRight?: PointExpression; - padding?: PointExpression; - maxZoom?: number; -} + export interface LayerEvent extends Event { + layer: Layer; + } -export interface LocateOptions { - watch?: boolean; - setView?: boolean; - maxZoom?: number; - timeout?: number; - maximumAge?: number; - enableHighAccuracy?: boolean; -} + export interface LayersControlEvent extends LayerEvent { + name: string; + } -export class Handler extends Class { - constructor(map: Map); - enable(): this; - disable(): this; - enabled(): boolean; + export interface TileEvent extends Event { + tile: HTMLImageElement; + coords: Point; // apparently not a normal point, since docs say it has z (zoom) + } - // Extension methods - addHooks(): void; - removeHooks(): void; -} + export interface TileErrorEvent extends TileEvent { + error: Error; + } -export interface Event { - type: string; - target: any; -} + export interface ResizeEvent extends Event { + oldSize: Point; + newSize: Point; + } -export interface MouseEvent extends Event { - latlng: LatLng; - layerPoint: Point; - containerPoint: Point; - originalEvent: NativeMouseEvent; -} + export interface GeoJSONEvent extends Event { + layer: Layer; + properties: any; + geometryType: string; + id: string; + } -export interface KeyboardEvent extends Event { - originalEvent: NativeKeyboardEvent; -} + export interface PopupEvent extends Event { + popup: Popup; + } -export interface LocationEvent extends Event { - latlng: LatLng; - bounds: LatLngBounds; - accuracy: number; - altitude: number; - altitudeAccuracy: number; - heading: number; - speed: number; - timestamp: number; -} + export interface TooltipEvent extends Event { + tooltip: Tooltip; + } -export interface ErrorEvent extends Event { - message: string; - code: number; -} + export interface DragEndEvent extends Event { + distance: number; + } -export interface LayerEvent extends Event { - layer: Layer; -} + export interface ZoomAnimEvent extends Event { + center: LatLng; + zoom: number; + noUpdate: boolean; + } -export interface LayersControlEvent extends LayerEvent { - name: string; -} + export namespace DomEvent { + export function on(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; -export interface TileEvent extends Event { - tile: HTMLImageElement; - coords: Point; // apparently not a normal point, since docs say it has z (zoom) -} + export function on(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; -export interface TileErrorEvent extends TileEvent { - error: Error; -} + export function off(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; -export interface ResizeEvent extends Event { - oldSize: Point; - newSize: Point; -} + export function off(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; -export interface GeoJSONEvent extends Event { - layer: Layer; - properties: any; - geometryType: string; - id: string; -} + export function stopPropagation(ev: Event): typeof DomEvent; -export interface PopupEvent extends Event { - popup: Popup; -} + export function disableScrollPropagation(el: HTMLElement): typeof DomEvent; -export interface TooltipEvent extends Event { - tooltip: Tooltip; -} + export function disableClickPropagation(el: HTMLElement): typeof DomEvent; -export interface DragEndEvent extends Event { - distance: number; -} + export function preventDefault(ev: Event): typeof DomEvent; -export interface ZoomAnimEvent extends Event { - center: LatLng; - zoom: number; - noUpdate: boolean; -} + export function stop(ev: Event): typeof DomEvent; -export namespace DomEvent { - export function on(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + export function getMousePosition(ev: Event, container?: HTMLElement): Point; - export function on(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + export function getWheelDelta(ev: Event): number; - export function off(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + export function addListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; - export function off(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + export function addListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; - export function stopPropagation(ev: Event): typeof DomEvent; + export function removeListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; - export function disableScrollPropagation(el: HTMLElement): typeof DomEvent; + export function removeListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + } - export function disableClickPropagation(el: HTMLElement): typeof DomEvent; + interface DefaultMapPanes { + mapPane: HTMLElement; + tilePane: HTMLElement; + overlayPane: HTMLElement; + shadowPane: HTMLElement; + markerPane: HTMLElement; + tooltipPane: HTMLElement; + popupPane: HTMLElement; + } - export function preventDefault(ev: Event): typeof DomEvent; + export class Map extends Evented { + constructor(element: string | HTMLElement, options?: MapOptions); + getRenderer(layer: Path): Renderer; - export function stop(ev: Event): typeof DomEvent; + // Methods for layers and controls + addControl(control: Control): this; + removeControl(control: Control): this; + addLayer(layer: Layer): this; + removeLayer(layer: Layer): this; + hasLayer(layer: Layer): boolean; + eachLayer(fn: (layer: Layer) => void, context?: any): this; + openPopup(popup: Popup): this; + openPopup(content: Content, latlng: LatLngExpression, options?: PopupOptions): this; + closePopup(popup?: Popup): this; + openTooltip(tooltip: Tooltip): this; + openTooltip(content: string | HTMLElement, latlng: LatLngExpression, options?: TooltipOptions): this; + closeTooltip(tooltip?: Tooltip): this; - export function getMousePosition(ev: Event, container?: HTMLElement): Point; + // Methods for modifying map state + setView(center: LatLngExpression, zoom: number, options?: ZoomPanOptions): this; + setZoom(zoom: number, options?: ZoomPanOptions): this; + zoomIn(delta?: number, options?: ZoomOptions): this; + zoomOut(delta?: number, options?: ZoomOptions): this; + setZoomAround(position: Point | LatLngExpression, zoom: number, options?: ZoomOptions): this; + fitBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + fitWorld(options?: FitBoundsOptions): this; + panTo(latlng: LatLngExpression, options?: PanOptions): this; + panBy(offset: PointExpression): this; + setMaxBounds(bounds: LatLngBoundsExpression): this; + setMinZoom(zoom: number): this; + setMaxZoom(zoom: number): this; + panInsideBounds(bounds: LatLngBoundsExpression, options?: PanOptions): this; + /** + * Boolean for animate or advanced ZoomPanOptions + */ + invalidateSize(options?: boolean | ZoomPanOptions): this; + stop(): this; + flyTo(latlng: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; + flyToBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; - export function getWheelDelta(ev: Event): number; + // Other methods + addHandler(name: string, HandlerClass: () => Handler): this; // HandlerClass is actually a constructor function, is this the right way? + remove(): this; + createPane(name: string, container?: HTMLElement): HTMLElement; + /** + * Name of the pane or the pane as HTML-Element + */ + getPane(pane: string | HTMLElement): HTMLElement; + getPanes(): {[name: string]: HTMLElement} & DefaultMapPanes; + getContainer(): HTMLElement; + whenReady(fn: () => void, context?: any): this; - export function addListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + // Methods for getting map state + getCenter(): LatLng; + getZoom(): number; + getBounds(): LatLngBounds; + getMinZoom(): number; + getMaxZoom(): number; + getBoundsZoom(bounds: LatLngBoundsExpression, inside?: boolean): number; + getSize(): Point; + getPixelBounds(): Bounds; + getPixelOrigin(): Point; + getPixelWorldBounds(zoom?: number): Bounds; - export function addListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; + // Conversion methods + getZoomScale(toZoom: number, fromZoom: number): number; + getScaleZoom(scale: number, fromZoom: number): number; + project(latlng: LatLngExpression, zoom: number): Point; + unproject(point: PointExpression, zoom: number): LatLng; + layerPointToLatLng(point: PointExpression): LatLng; + latLngToLayerPoint(latlng: LatLngExpression): Point; + wrapLatLng(latlng: LatLngExpression): LatLng; + distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; + containerPointToLayerPoint(point: PointExpression): Point; + layerPointToContainerPoint(point: PointExpression): Point; + latLngToContainerPoint(latlng: LatLngExpression): Point; + mouseEventToContainerPoint(ev: MouseEvent): Point; + mouseEventToLayerPoint(ev: MouseEvent): Point; + mouseEventToLatLng(ev: MouseEvent): LatLng; - export function removeListener(el: HTMLElement, types: string, fn: EventHandlerFn, context?: any): typeof DomEvent; + // Geolocation methods + locate(options?: LocateOptions): this; + stopLocate(): this; - export function removeListener(el: HTMLElement, eventMap: {[eventName: string]: EventHandlerFn}, context?: any): typeof DomEvent; -} + // Properties + boxZoom: Handler; + doubleClickZoom: Handler; + dragging: Handler; + keyboard: Handler; + scrollWheelZoom: Handler; + tap: Handler; + touchZoom: Handler; -interface DefaultMapPanes { - mapPane: HTMLElement; - tilePane: HTMLElement; - overlayPane: HTMLElement; - shadowPane: HTMLElement; - markerPane: HTMLElement; - tooltipPane: HTMLElement; - popupPane: HTMLElement; -} + options: MapOptions; + } -export class Map extends Evented { - constructor(element: string | HTMLElement, options?: MapOptions); - getRenderer(layer: Path): Renderer; - - // Methods for layers and controls - addControl(control: Control): this; - removeControl(control: Control): this; - addLayer(layer: Layer): this; - removeLayer(layer: Layer): this; - hasLayer(layer: Layer): boolean; - eachLayer(fn: (layer: Layer) => void, context?: any): this; - openPopup(popup: Popup): this; - openPopup(content: Content, latlng: LatLngExpression, options?: PopupOptions): this; - closePopup(popup?: Popup): this; - openTooltip(tooltip: Tooltip): this; - openTooltip(content: string | HTMLElement, latlng: LatLngExpression, options?: TooltipOptions): this; - closeTooltip(tooltip?: Tooltip): this; - - // Methods for modifying map state - setView(center: LatLngExpression, zoom: number, options?: ZoomPanOptions): this; - setZoom(zoom: number, options?: ZoomPanOptions): this; - zoomIn(delta?: number, options?: ZoomOptions): this; - zoomOut(delta?: number, options?: ZoomOptions): this; - setZoomAround(position: Point | LatLngExpression, zoom: number, options?: ZoomOptions): this; - fitBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; - fitWorld(options?: FitBoundsOptions): this; - panTo(latlng: LatLngExpression, options?: PanOptions): this; - panBy(offset: PointExpression): this; - setMaxBounds(bounds: LatLngBoundsExpression): this; - setMinZoom(zoom: number): this; - setMaxZoom(zoom: number): this; - panInsideBounds(bounds: LatLngBoundsExpression, options?: PanOptions): this; /** - * Boolean for animate or advanced ZoomPanOptions + * ID of a HTML-Element as string or the HTML-ELement itself */ - invalidateSize(options?: boolean | ZoomPanOptions): this; - stop(): this; - flyTo(latlng: LatLngExpression, zoom?: number, options?: ZoomPanOptions): this; - flyToBounds(bounds: LatLngBoundsExpression, options?: FitBoundsOptions): this; + export function map(element: string | HTMLElement, options?: MapOptions): Map; - // Other methods - addHandler(name: string, HandlerClass: () => Handler): this; // HandlerClass is actually a constructor function, is this the right way? - remove(): this; - createPane(name: string, container?: HTMLElement): HTMLElement; - /** - * Name of the pane or the pane as HTML-Element - */ - getPane(pane: string | HTMLElement): HTMLElement; - getPanes(): {[name: string]: HTMLElement} & DefaultMapPanes; - getContainer(): HTMLElement; - whenReady(fn: () => void, context?: any): this; + export interface IconOptions extends LayerOptions { + iconUrl: string; + iconRetinaUrl?: string; + iconSize?: PointExpression; + iconAnchor?: PointExpression; + popupAnchor?: PointExpression; + shadowUrl?: string; + shadowRetinaUrl?: string; + shadowSize?: PointExpression; + shadowAnchor?: PointExpression; + className?: string; + } - // Methods for getting map state - getCenter(): LatLng; - getZoom(): number; - getBounds(): LatLngBounds; - getMinZoom(): number; - getMaxZoom(): number; - getBoundsZoom(bounds: LatLngBoundsExpression, inside?: boolean): number; - getSize(): Point; - getPixelBounds(): Bounds; - getPixelOrigin(): Point; - getPixelWorldBounds(zoom?: number): Bounds; + class InternalIcon extends Layer { + constructor(options: IconOptions); + createIcon(oldIcon?: HTMLElement): HTMLElement; + } - // Conversion methods - getZoomScale(toZoom: number, fromZoom: number): number; - getScaleZoom(scale: number, fromZoom: number): number; - project(latlng: LatLngExpression, zoom: number): Point; - unproject(point: PointExpression, zoom: number): LatLng; - layerPointToLatLng(point: PointExpression): LatLng; - latLngToLayerPoint(latlng: LatLngExpression): Point; - wrapLatLng(latlng: LatLngExpression): LatLng; - distance(latlng1: LatLngExpression, latlng2: LatLngExpression): number; - containerPointToLayerPoint(point: PointExpression): Point; - layerPointToContainerPoint(point: PointExpression): Point; - latLngToContainerPoint(latlng: LatLngExpression): Point; - mouseEventToContainerPoint(ev: MouseEvent): Point; - mouseEventToLayerPoint(ev: MouseEvent): Point; - mouseEventToLatLng(ev: MouseEvent): LatLng; + export class Icon extends InternalIcon { + createShadow(oldIcon?: HTMLElement): HTMLElement; + options: IconOptions; + } - // Geolocation methods - locate(options?: LocateOptions): this; - stopLocate(): this; - - // Properties - boxZoom: Handler; - doubleClickZoom: Handler; - dragging: Handler; - keyboard: Handler; - scrollWheelZoom: Handler; - tap: Handler; - touchZoom: Handler; - - options: MapOptions; -} - -/** - * ID of a HTML-Element as string or the HTML-ELement itself - */ -export function map(element: string | HTMLElement, options?: MapOptions): Map; - -export interface IconOptions extends LayerOptions { - iconUrl: string; - iconRetinaUrl?: string; - iconSize?: PointExpression; - iconAnchor?: PointExpression; - popupAnchor?: PointExpression; - shadowUrl?: string; - shadowRetinaUrl?: string; - shadowSize?: PointExpression; - shadowAnchor?: PointExpression; - className?: string; -} - -declare class InternalIcon extends Layer { - constructor(options: IconOptions); - createIcon(oldIcon?: HTMLElement): HTMLElement; -} - -export class Icon extends InternalIcon { - createShadow(oldIcon?: HTMLElement): HTMLElement; - options: IconOptions; -} - -export interface IconDefault extends InternalIcon { - imagePath: string; -} - -export namespace Icon { - export class Default extends InternalIcon { + export interface IconDefault extends InternalIcon { imagePath: string; } + + export namespace Icon { + export class Default extends InternalIcon { + imagePath: string; + } + } + + export function icon(options: IconOptions): Icon; + + export interface DivIconOptions extends LayerOptions { + html?: string; + bgPos?: PointExpression; + iconSize?: PointExpression; + iconAnchor?: PointExpression; + popupAnchor?: PointExpression; + className?: string; + } + + export class DivIcon extends InternalIcon { + constructor(options?: DivIconOptions); + options: DivIconOptions; + } + + export function divIcon(options?: DivIconOptions): DivIcon; + + export interface MarkerOptions extends InteractiveLayerOptions { + icon?: Icon; + clickable?: boolean; + draggable?: boolean; + keyboard?: boolean; + title?: string; + alt?: string; + zIndexOffset?: number; + opacity?: number; + riseOnHover?: boolean; + riseOffset?: number; + + options: DivIconOptions; + } + + export class Marker extends Layer { + constructor(latlng: LatLngExpression, options?: MarkerOptions); + getLatLng(): LatLng; + setLatLng(latlng: LatLngExpression): this; + setZIndexOffset(offset: number): this; + setIcon(icon: Icon): this; + setOpacity(opacity: number): this; + getElement(): HTMLElement; + + // Properties + options: MarkerOptions; + dragging: Handler; + } + + export function marker(latlng: LatLngExpression, options?: MarkerOptions): Marker; + + export namespace Browser { + export const ie: boolean; + export const ielt9: boolean; + export const edge: boolean; + export const webkit: boolean; + export const gecko: boolean; + export const android: boolean; + export const android23: boolean; + export const chrome: boolean; + export const safari: boolean; + export const win: boolean; + export const ie3d: boolean; + export const webkit3d: boolean; + export const gecko3d: boolean; + export const opera12: boolean; + export const any3d: boolean; + export const mobile: boolean; + export const mobileWebkit: boolean; + export const mobiWebkit3d: boolean; + export const mobileOpera: boolean; + export const mobileGecko: boolean; + export const touch: boolean; + export const msPointer: boolean; + export const pointer: boolean; + export const retina: boolean; + export const canvas: boolean; + export const vml: boolean; + export const svg: boolean; + } + } -export function icon(options: IconOptions): Icon; - -export interface DivIconOptions extends LayerOptions { - html?: string; - bgPos?: PointExpression; - iconSize?: PointExpression; - iconAnchor?: PointExpression; - popupAnchor?: PointExpression; - className?: string; -} - -export class DivIcon extends InternalIcon { - constructor(options?: DivIconOptions); - options: DivIconOptions; -} - -export function divIcon(options?: DivIconOptions): DivIcon; - -export interface MarkerOptions extends InteractiveLayerOptions { - icon?: Icon; - clickable?: boolean; - draggable?: boolean; - keyboard?: boolean; - title?: string; - alt?: string; - zIndexOffset?: number; - opacity?: number; - riseOnHover?: boolean; - riseOffset?: number; - - options: DivIconOptions; -} - -export class Marker extends Layer { - constructor(latlng: LatLngExpression, options?: MarkerOptions); - getLatLng(): LatLng; - setLatLng(latlng: LatLngExpression): this; - setZIndexOffset(offset: number): this; - setIcon(icon: Icon): this; - setOpacity(opacity: number): this; - getElement(): HTMLElement; - - // Properties - options: MarkerOptions; - dragging: Handler; -} - -export function marker(latlng: LatLngExpression, options?: MarkerOptions): Marker; - -export namespace Browser { - export const ie: boolean; - export const ielt9: boolean; - export const edge: boolean; - export const webkit: boolean; - export const gecko: boolean; - export const android: boolean; - export const android23: boolean; - export const chrome: boolean; - export const safari: boolean; - export const win: boolean; - export const ie3d: boolean; - export const webkit3d: boolean; - export const gecko3d: boolean; - export const opera12: boolean; - export const any3d: boolean; - export const mobile: boolean; - export const mobileWebkit: boolean; - export const mobiWebkit3d: boolean; - export const mobileOpera: boolean; - export const mobileGecko: boolean; - export const touch: boolean; - export const msPointer: boolean; - export const pointer: boolean; - export const retina: boolean; - export const canvas: boolean; - export const vml: boolean; - export const svg: boolean; +declare module 'leaflet' { + export = L; } From 8f325c6f72b7f7b6d7e1fa5c07d946b03aaab30d Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Fri, 27 Jan 2017 18:23:21 +0100 Subject: [PATCH 038/231] Remove the unneccesary import in test --- geojson/geojson-tests.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/geojson/geojson-tests.ts b/geojson/geojson-tests.ts index 50b5f7b396..fb9ce24a0b 100644 --- a/geojson/geojson-tests.ts +++ b/geojson/geojson-tests.ts @@ -1,6 +1,3 @@ - - -import GeometryObject = GeoJSON.GeometryObject; let featureCollection: GeoJSON.FeatureCollection = { type: "FeatureCollection", features: [ @@ -134,7 +131,7 @@ let geometryCollection: GeoJSON.GeometryCollection = { ] }; -let feature: GeoJSON.Feature = { +let feature: GeoJSON.Feature = { type: "Feature", geometry: lineString, properties: null From 4190c1de72c53cff39f4db1b13a7fd1d55438ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Helfensd=C3=B6rfer?= Date: Fri, 27 Jan 2017 20:03:15 +0100 Subject: [PATCH 039/231] Updated jquery.noty to current version --- jquery.noty/index.d.ts | 69 ++++++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 30 deletions(-) diff --git a/jquery.noty/index.d.ts b/jquery.noty/index.d.ts index 85fc2fca4c..c85db008fa 100644 --- a/jquery.noty/index.d.ts +++ b/jquery.noty/index.d.ts @@ -11,51 +11,60 @@ interface NotyOptions { theme?: string; type?: string; /** Text to show. Can be html or string. */ - text?: string; + text?: string; /** If you want to use queue feature set this true. */ - dismissQueue?: boolean; - /** The note`s optional template like '
' */ - template?: string; - animation?: NotyAnimationOptions; - /** Delay for closing event. Set false for sticky notifications */ - timeout?: any; - /** Adds notification to the beginning of queue when set to true */ - force?: boolean; - modal?: boolean; + dismissQueue?: boolean; + /** adds notification to the beginning of queue when set to true */ + force?: boolean; /** You can set max visible notification for dismissQueue true option */ maxVisible?: number; - /** To close all notifications before show */ - killer?: boolean; + /** The note`s optional template like '
' */ + template?: string; + /** Delay for closing event. Set false for sticky notifications */ + timeout?: any; + /** displays a progress bar */ + progressBar?: boolean; + + animation?: NotyAnimationOptions; + /** ['click', 'button', 'hover', 'backdrop'] // backdrop click will close all notifications */ closeWith?: any[]; + + /** if true adds an overlay */ + modal?: boolean; + /** if true closes all notifications and shows itself */ + killer?: boolean; + callback?: NotyCallbackOptions; - /** An array of buttons or false to hide them */ + + /** an array of buttons, for creating confirmation dialogs. */ buttons?: any; } interface NotyAnimationOptions { - open?: any; - close?: any; - easing?: string; - speed?: number; + open?: any; + close?: any; + easing?: string; + speed?: number; } interface NotyCallbackOptions { - onShow?: Function; - afterShow?: Function; - onClose?: Function; - afterClose?: Function; + onShow?: Function; + afterShow?: Function; + onClose?: Function; + afterClose?: Function; + onCloseClick?: Function; } interface NotyStatic { - (notyOptions: NotyOptions); - defaults: NotyOptions; + (notyOptions: NotyOptions); + defaults: NotyOptions; - get(id: any); - close(id: any); - clearQueue(); - closeAll(); - setText(id: any, text: string); - setType(id: any, type: string); + get(id: any); + close(id: any); + clearQueue(); + closeAll(); + setText(id: any, text: string); + setType(id: any, type: string); } interface Noty { @@ -72,7 +81,7 @@ interface Noty { } interface JQueryStatic { - noty: NotyStatic; + noty: NotyStatic; } interface JQuery { From 8fda71eadaf23d11c577ec4737c32dbac5a9e389 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Sat, 28 Jan 2017 11:09:19 +0100 Subject: [PATCH 040/231] set no-single-declare-module to false in tslint.json --- geojson/tslint.json | 7 ++++++- leaflet/tslint.json | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/geojson/tslint.json b/geojson/tslint.json index 377cc837d4..0b14fdec0d 100644 --- a/geojson/tslint.json +++ b/geojson/tslint.json @@ -1 +1,6 @@ -{ "extends": "../tslint.json" } +{ + "extends": "../tslint.json", + "rules": { + "no-single-declare-module": false + } +} diff --git a/leaflet/tslint.json b/leaflet/tslint.json index 377cc837d4..0b14fdec0d 100644 --- a/leaflet/tslint.json +++ b/leaflet/tslint.json @@ -1 +1,6 @@ -{ "extends": "../tslint.json" } +{ + "extends": "../tslint.json", + "rules": { + "no-single-declare-module": false + } +} From f59657e7a749dce43aead1dc64967c5f2eb2842d Mon Sep 17 00:00:00 2001 From: Vilmos Ioo Date: Sun, 29 Jan 2017 15:16:18 +0000 Subject: [PATCH 041/231] Updated argument type --- sinon/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sinon/index.d.ts b/sinon/index.d.ts index be0d3820bb..7c44ab9d7a 100644 --- a/sinon/index.d.ts +++ b/sinon/index.d.ts @@ -109,7 +109,7 @@ declare namespace Sinon { callsArgOnAsync(index: number, context: any): SinonStub; callsArgWithAsync(index: number, ...args: any[]): SinonStub; callsArgOnWithAsync(index: number, context: any, ...args: any[]): SinonStub; - callsFake(...args: any[]): SinonStub; + callsFake(func: (...args: any[]) => void): SinonStub; onCall(n: number): SinonStub; onFirstCall(): SinonStub; onSecondCall(): SinonStub; From ce34b37c05c3a1aaa6869bd8f11983f873801b95 Mon Sep 17 00:00:00 2001 From: Pine Mizune Date: Mon, 30 Jan 2017 17:55:03 +0900 Subject: [PATCH 042/231] Add type definitions for es6-weak-map --- es6-weak-map/es6-weak-map-tests.ts | 18 ++++++++++++++++++ es6-weak-map/index.d.ts | 21 +++++++++++++++++++++ es6-weak-map/tsconfig.json | 23 +++++++++++++++++++++++ es6-weak-map/tslint.json | 1 + 4 files changed, 63 insertions(+) create mode 100644 es6-weak-map/es6-weak-map-tests.ts create mode 100644 es6-weak-map/index.d.ts create mode 100644 es6-weak-map/tsconfig.json create mode 100644 es6-weak-map/tslint.json diff --git a/es6-weak-map/es6-weak-map-tests.ts b/es6-weak-map/es6-weak-map-tests.ts new file mode 100644 index 0000000000..aec03c03d1 --- /dev/null +++ b/es6-weak-map/es6-weak-map-tests.ts @@ -0,0 +1,18 @@ +import WeakMap = require('es6-weak-map'); + +new WeakMap<{}, string>(); + +var tuples: [number, string][] = [ [0, 'foo'], [1, 'bar'] ]; +new WeakMap(tuples); + +var map = new WeakMap<{}, string>(); +var obj = {}; + +map.set(obj, 'foo'); +map.get(obj); +map.has(obj); +map.delete(obj); +map.get(obj); +map.has(obj); +map.set(obj, 'bar'); +map.has(obj); diff --git a/es6-weak-map/index.d.ts b/es6-weak-map/index.d.ts new file mode 100644 index 0000000000..50035420c8 --- /dev/null +++ b/es6-weak-map/index.d.ts @@ -0,0 +1,21 @@ +// Type definitions for es6-weak-map 1.2 +// Project: https://github.com/medikoo/es6-weak-map +// Definitions by: Pine Mizune +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +export = WeakMap; +export as namespace WeakMap; + +interface Iterable { + [Symbol.iterator](): Iterator; +} + +declare class WeakMap { + constructor(); + constructor(iterable: Iterable<[K, V]>); + + delete(key: K): boolean; + get(key: K): V; + has(key: K): boolean; + set(key: K, value?: V): WeakMap; +} diff --git a/es6-weak-map/tsconfig.json b/es6-weak-map/tsconfig.json new file mode 100644 index 0000000000..4a80116224 --- /dev/null +++ b/es6-weak-map/tsconfig.json @@ -0,0 +1,23 @@ + +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "es6-weak-map-tests.ts" + ] +} diff --git a/es6-weak-map/tslint.json b/es6-weak-map/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/es6-weak-map/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From bcf5905e75c071a8a864621442af73864d6312a4 Mon Sep 17 00:00:00 2001 From: Tanguy Krotoff Date: Wed, 25 Jan 2017 13:34:15 +0100 Subject: [PATCH 043/231] Fix fontWeight CSS property --- react/index.d.ts | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/react/index.d.ts b/react/index.d.ts index bfc41b609a..e4f3f0a910 100644 --- a/react/index.d.ts +++ b/react/index.d.ts @@ -606,6 +606,11 @@ declare namespace React { onTransitionEndCapture?: TransitionEventHandler; } + // See CSS 3 CSS-wide keywords https://www.w3.org/TR/css3-values/#common-keywords + // See CSS 3 Explicit Defaulting https://www.w3.org/TR/css-cascade-3/#defaulting-keywords + // "all CSS properties can accept these values" + type CSSWideKeyword = "initial" | "inherit" | "unset"; + // This interface is not complete. Only properties accepting // unitless numbers are listed here (see CSSProperty.js in React) interface CSSProperties { @@ -1143,23 +1148,29 @@ declare namespace React { /** * Specifies the size of the font. Used to compute em and ex units. + * See CSS 3 font-size property https://www.w3.org/TR/css-fonts-3/#propdef-font-size */ fontSize?: number | string; /** * The font-size-adjust property adjusts the font-size of the fallback fonts defined with font-family, so that the x-height is the same no matter what font is used. This preserves the readability of the text when fallback happens. + * See CSS 3 font-size-adjust property https://www.w3.org/TR/css-fonts-3/#propdef-font-size-adjust */ - fontSizeAdjust?: any; + fontSizeAdjust?: CSSWideKeyword | "none" | number; /** * Allows you to expand or condense the widths for a normal, condensed, or expanded font face. + * See CSS 3 font-stretch property https://drafts.csswg.org/css-fonts-3/#propdef-font-stretch */ - fontStretch?: any; + fontStretch?: CSSWideKeyword | + "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | + "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded"; /** * The font-style property allows normal, italic, or oblique faces to be selected. Italic forms are generally cursive in nature while oblique faces are typically sloped versions of the regular face. Oblique faces can be simulated by artificially sloping the glyphs of the regular face. + * See CSS 3 font-style property https://www.w3.org/TR/css-fonts-3/#propdef-font-style */ - fontStyle?: any; + fontStyle?: CSSWideKeyword | "normal" | "italic" | "oblique"; /** * This value specifies whether the user agent is allowed to synthesize bold or oblique font faces when a font family lacks bold or italic faces. @@ -1178,8 +1189,9 @@ declare namespace React { /** * Specifies the weight or boldness of the font. + * See CSS 3 'font-weight' property https://www.w3.org/TR/css-fonts-3/#propdef-font-weight */ - fontWeight?: "normal" | "bold" | "lighter" | "bolder" | number; + fontWeight?: CSSWideKeyword | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; /** * Lays out one or more grid items bound by 4 grid lines. Shorthand for setting grid-column-start, grid-column-end, grid-row-start, and grid-row-end in a single declaration. From 84ca633186dcf373bbb2c39b3b88585f9bbe95fb Mon Sep 17 00:00:00 2001 From: Tanguy Krotoff Date: Wed, 25 Jan 2017 15:42:36 +0100 Subject: [PATCH 044/231] Remove not needed semicolons + small cleanups --- material-ui/material-ui-tests.tsx | 154 +++++++++++++++--------------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/material-ui/material-ui-tests.tsx b/material-ui/material-ui-tests.tsx index 04b8f0ec32..71991976f1 100644 --- a/material-ui/material-ui-tests.tsx +++ b/material-ui/material-ui-tests.tsx @@ -395,7 +395,7 @@ export class AutoCompleteExampleSimple extends React.Component<{}, {dataSource: value + value + value, ], }); - }; + } dataSourceConfig = { text: 'textKey', @@ -981,20 +981,20 @@ class CardExampleControlled extends React.Component<{}, {expanded: boolean}> { } handleExpandChange = (expanded) => { - this.setState({expanded: expanded}); - }; + this.setState({expanded}); + } handleToggle = (event, toggle) => { this.setState({expanded: toggle}); - }; + } handleExpand = () => { this.setState({expanded: true}); - }; + } handleReduce = () => { this.setState({expanded: false}); - }; + } render() { return ( @@ -1106,8 +1106,8 @@ class DatePickerExampleToggle extends React.Component<{}, DatePickerExampleToggl maxDate.setHours(0, 0, 0, 0); this.state = { - minDate: minDate, - maxDate: maxDate, + minDate, + maxDate, autoOk: false, disableYearSelection: false, }; @@ -1117,19 +1117,19 @@ class DatePickerExampleToggle extends React.Component<{}, DatePickerExampleToggl this.setState({ minDate: date, }); - }; + } handleChangeMaxDate = (event, date) => { this.setState({ maxDate: date, }); - }; + } handleToggle = (event, toggled) => { this.setState({ [event.target.name]: toggled, }); - }; + } render() { return ( @@ -1190,7 +1190,7 @@ class DatePickerExampleControlled extends React.Component<{}, {controlledDate?: this.setState({ controlledDate: date, }); - }; + } render() { return ( @@ -1252,11 +1252,11 @@ class DialogExampleSimple extends React.Component<{}, {open?: boolean}> { handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -1297,11 +1297,11 @@ class DialogExampleModal extends React.Component<{}, {open?: boolean}> { handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -1341,11 +1341,11 @@ class DialogExampleCustomWidth extends React.Component<{}, {open?: boolean}> { handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -1385,11 +1385,11 @@ class DialogExampleDialogDatePicker extends React.Component<{}, {open?: boolean} handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -1426,11 +1426,11 @@ class DialogExampleScrollable extends React.Component<{}, {open?: boolean}> { handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -1486,11 +1486,11 @@ class DialogExampleAlert extends React.Component<{}, {open?: boolean}> { handleOpen = () => { this.setState({open: true}); - }; + } handleClose = () => { this.setState({open: false}); - }; + } render() { const actions = [ @@ -2258,7 +2258,7 @@ function wrapState(ComposedComponent: React.ComponentClass<__MaterialUI.List.Sel this.setState({ selectedIndex: index, }); - }; + } render() { return ( @@ -2537,13 +2537,13 @@ class IconMenuExampleControlled extends React.Component<{}, IconMenuExampleContr this.setState({ valueSingle: value, }); - }; + } handleChangeMultiple = (event, value) => { this.setState({ valueMultiple: value, }); - }; + } handleOpenMenu = () => { this.setState({ @@ -2856,13 +2856,13 @@ class PopoverExampleSimple extends React.Component<{}, {open?: boolean, anchorEl open: true, anchorEl: event.currentTarget, }); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } render() { return ( @@ -2907,13 +2907,13 @@ class PopoverExampleAnimation extends React.Component<{}, {open?: boolean, ancho open: true, anchorEl: event.currentTarget, }); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } render() { return ( @@ -2974,31 +2974,31 @@ class PopoverExampleConfigurable extends React.Component<{}, PopoverExampleConfi open: true, anchorEl: event.currentTarget, }); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } setAnchor = (positionElement, position) => { const {anchorOrigin} = this.state; anchorOrigin[positionElement] = position; this.setState({ - anchorOrigin: anchorOrigin, + anchorOrigin }); - }; + } setTarget = (positionElement, position) => { const {targetOrigin} = this.state; targetOrigin[positionElement] = position; this.setState({ - targetOrigin: targetOrigin, + targetOrigin }); - }; + } render() { return ( @@ -3453,7 +3453,7 @@ class SliderExampleControlled extends React.Component<{}, {firstSlider?: number, state = { firstSlider: 0.5, secondSlider: 50, - } + }; handleFirstSlider(event, value) { this.setState({firstSlider: value}); @@ -3622,13 +3622,13 @@ class SnackbarExampleSimple extends React.Component<{}, {open?: boolean}> { this.setState({ open: true, }); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } render() { return ( @@ -3664,27 +3664,27 @@ class SnackbarExampleAction extends React.Component<{}, {open?: boolean, autoHid this.setState({ open: true, }); - }; + } handleActionTouchTap = () => { this.setState({ open: false, }); alert('Event removed from your calendar.'); - }; + } handleChangeDuration = (event) => { const value = event.target.value; this.setState({ - autoHideDuration: value.length > 0 ? parseInt(value) : 0, + autoHideDuration: value.length > 0 ? parseInt(value, 10) : 0, }); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } render() { return ( @@ -3739,13 +3739,13 @@ class SnackbarExampleTwice extends React.Component<{}, {open?: boolean, message? message: `Event ${Math.round(Math.random() * 100)} added to your calendar`, }); }, 1500); - }; + } handleRequestClose = () => { this.setState({ open: false, }); - }; + } render() { return ( @@ -3781,14 +3781,14 @@ class HorizontalLinearStepper extends React.Component<{}, {stepIndex?: number, f stepIndex: stepIndex + 1, finished: stepIndex >= 2, }); - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } getStepContent(stepIndex) { switch (stepIndex) { @@ -3870,14 +3870,14 @@ class VerticalLinearStepper extends React.Component<{}, {stepIndex?: number, fin stepIndex: stepIndex + 1, finished: stepIndex >= 2, }); - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } renderStepActions(step) { const {stepIndex} = this.state; @@ -3971,14 +3971,14 @@ class HorizontalNonLinearStepper extends React.Component<{}, {stepIndex?: number if (stepIndex < 2) { this.setState({stepIndex: stepIndex + 1}); } - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } getStepContent(stepIndex) { switch (stepIndex) { @@ -4049,14 +4049,14 @@ class VerticalNonLinear extends React.Component<{}, {stepIndex?: number}> { if (stepIndex < 2) { this.setState({stepIndex: stepIndex + 1}); } - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } renderStepActions(step) { return ( @@ -4176,14 +4176,14 @@ class GranularControlStepper extends React.Component<{}, {stepIndex?: number, vi if (stepIndex < 2) { this.setState({stepIndex: stepIndex + 1}); } - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } getStepContent(stepIndex) { switch (stepIndex) { @@ -4266,14 +4266,14 @@ class CustomIcon extends React.Component<{}, {stepIndex?: number}> { if (stepIndex < 2) { this.setState({stepIndex: stepIndex + 1}); } - }; + } handlePrev = () => { const {stepIndex} = this.state; if (stepIndex > 0) { this.setState({stepIndex: stepIndex - 1}); } - }; + } getStepContent(stepIndex) { switch (stepIndex) { @@ -4389,16 +4389,16 @@ const tableData: {name: string, status: string, selected?: boolean}[] = [ ]; interface TableExampleComplexState { - fixedHeader?: boolean, - fixedFooter?: boolean, - stripedRows?: boolean, - showRowHover?: boolean, - selectable?: boolean, - multiSelectable?: boolean, - enableSelectAll?: boolean, - deselectOnClickaway?: boolean, - showCheckboxes?: boolean, - height?: string, + fixedHeader?: boolean; + fixedFooter?: boolean; + stripedRows?: boolean; + showRowHover?: boolean; + selectable?: boolean; + multiSelectable?: boolean; + enableSelectAll?: boolean; + deselectOnClickaway?: boolean; + showCheckboxes?: boolean; + height?: string; } class TableExampleComplex extends React.Component<{}, TableExampleComplexState> { @@ -4424,11 +4424,11 @@ class TableExampleComplex extends React.Component<{}, TableExampleComplexState> this.setState({ [event.target.name]: toggled, }); - }; + } handleChange = (event) => { this.setState({height: event.target.value}); - }; + } render() { return ( @@ -4608,9 +4608,9 @@ class TabsExampleControlled extends React.Component<{}, {value?: string}> { handleChange = (value) => { this.setState({ - value: value, + value }); - }; + } render() { return ( @@ -4807,7 +4807,7 @@ class TextFieldExampleControlled extends React.Component<{}, {value?: string}> { this.setState({ value: event.target.value, }); - }; + } render() { return ( @@ -4849,11 +4849,11 @@ class TimePickerExampleComplex extends React.Component<{}, {value24?: Date, valu handleChangeTimePicker24 = (event, date) => { this.setState({value24: date}); - }; + } handleChangeTimePicker12 = (event, date) => { this.setState({value12: date}); - }; + } render() { return ( @@ -4948,7 +4948,7 @@ class BottomNavigationExample extends React.Component<{}, { return } onTouchTap={() => this.setState({index: 0})}/> } onTouchTap={() => this.setState({index: 1})}/> - + ; } } From 876977386de369e12b8fb27c5eaaa94fbb2174eb Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 19:25:53 +0100 Subject: [PATCH 045/231] do not export internal interface DirectGeometryObject --- geojson/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geojson/index.d.ts b/geojson/index.d.ts index b38106aae7..7c825d2541 100644 --- a/geojson/index.d.ts +++ b/geojson/index.d.ts @@ -22,7 +22,7 @@ declare namespace GeoJSON { /*** * http://geojson.org/geojson-spec.html#geometry-objects */ - export interface DirectGeometryObject extends GeoJsonObject { + interface DirectGeometryObject extends GeoJsonObject { coordinates: Position[][][] | Position[][] | Position[] | Position; } /** From d93b846ef26cf417d8760bc62b33ec42ba948401 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20Helfensd=C3=B6rfer?= Date: Mon, 30 Jan 2017 19:49:19 +0100 Subject: [PATCH 046/231] Update index.d.ts --- jquery.noty/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jquery.noty/index.d.ts b/jquery.noty/index.d.ts index c85db008fa..f4bfe4bcb9 100644 --- a/jquery.noty/index.d.ts +++ b/jquery.noty/index.d.ts @@ -1,6 +1,6 @@ -// Type definitions for jQuery.noty v2.0 +// Type definitions for jQuery.noty v2.4 // Project: http://needim.github.io/noty/ -// Definitions by: Aaron King +// Definitions by: Aaron King , Tim Helfensdörfer // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Project by: Nedim Carter @@ -26,8 +26,8 @@ interface NotyOptions { progressBar?: boolean; animation?: NotyAnimationOptions; - /** ['click', 'button', 'hover', 'backdrop'] // backdrop click will close all notifications */ - closeWith?: any[]; + /** backdrop click will close all notifications */ + closeWith?: ('click' | 'button' | 'hover' | 'backdrop')[]; /** if true adds an overlay */ modal?: boolean; From 198607775436e894f035e731f5b16c93268aaa46 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:04:00 +0100 Subject: [PATCH 047/231] Make typings for literals as array of two tuples --- leaflet/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index cc742ce504..342b674783 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -165,7 +165,7 @@ declare namespace L { isValid(): boolean; } - export type LatLngBoundsLiteral = LatLngTuple[]; + export type LatLngBoundsLiteral = LatLngTuple[]; // Must be [LatLngTuple, LatLngTuple], cant't change because Map.setMaxBounds type LatLngBoundsExpression = LatLngBounds | LatLngBoundsLiteral; @@ -202,7 +202,7 @@ declare namespace L { export function point(coords: PointTuple | {x: number, y: number}): Point; - export type BoundsLiteral = PointTuple[]; + export type BoundsLiteral = [PointTuple, PointTuple]; export class Bounds { constructor(topLeft: PointExpression, bottomRight: PointExpression); From 580dd62cca2be873b9d32df51408d8bd024d6810 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:16:57 +0100 Subject: [PATCH 048/231] Suppress lints by comment --- leaflet/index.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 342b674783..4097c728b4 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -252,6 +252,7 @@ declare namespace L { */ on(eventMap: EventHandlerFnMap): this; + /* tslint:disable:unified-signatures */ // With an eventMap there are no additional arguments allowed /** * Removes a previously added listener function. If no function is specified, * it will remove all the listeners of that particular event from the object. @@ -264,7 +265,7 @@ declare namespace L { * Removes a set of type/listener pairs. */ off(eventMap: EventHandlerFnMap): this; - + /* tslint:enable */ /** * Removes all listeners to all events on the object. */ @@ -1152,7 +1153,9 @@ declare namespace L { noMoveStart?: boolean; } + /* tslint:disable:no-empty-interface */ // This is not empty, it extends two interfaces into one... export interface ZoomPanOptions extends ZoomOptions, PanOptions {} + /* tslint:enable */ export interface FitBoundsOptions extends ZoomOptions, PanOptions { paddingTopLeft?: PointExpression; From f0e7d94f828b72b647e5d83d07f82d0e04901b10 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:18:53 +0100 Subject: [PATCH 049/231] Remove unused interface IconDefault --- leaflet/index.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 4097c728b4..2b5dda86c8 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -1429,10 +1429,6 @@ declare namespace L { options: IconOptions; } - export interface IconDefault extends InternalIcon { - imagePath: string; - } - export namespace Icon { export class Default extends InternalIcon { imagePath: string; From 1dcc3a708cfe890597f65515984cf3110bda5a43 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:20:31 +0100 Subject: [PATCH 050/231] Remove unneccesary line --- leaflet/leaflet-tests.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/leaflet/leaflet-tests.ts b/leaflet/leaflet-tests.ts index 6f9fa242d8..0c1122f6fc 100644 --- a/leaflet/leaflet-tests.ts +++ b/leaflet/leaflet-tests.ts @@ -18,7 +18,6 @@ latLng = new L.LatLng({lat: 12, lng: 13, alt: 0}); latLng = new L.LatLng(latLngTuple); latLng = new L.LatLng([12, 13, 0]); - const latLngBoundsLiteral: L.LatLngBoundsLiteral = [[12, 13], latLngTuple]; let latLngBounds: L.LatLngBounds; From 0fe579c085350626053c54a4c277e498c7ba740e Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:45:21 +0100 Subject: [PATCH 051/231] Add minNativeZoom from v1.0.2, add missing getElelemt methods --- leaflet/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 2b5dda86c8..fe28a52f32 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -469,6 +469,7 @@ declare namespace L { minZoom?: number; maxZoom?: number; maxNativeZoom?: number; + minNativeZoom?: number; subdomains?: string | string[]; errorTileUrl?: string; zoomOffset?: number; @@ -598,6 +599,7 @@ declare namespace L { getCenter(): LatLng; getBounds(): LatLngBounds; addLatLng(latlng: LatLngExpression | LatLngExpression[]): this; + getElement(): HTMLElement; options: PolylineOptions; } @@ -638,6 +640,7 @@ declare namespace L { getLatLng(): LatLng; setRadius(radius: number): this; getRadius(): number; + getElement(): HTMLElement; options: CircleMarkerOptions; feature: GeoJSONFeature; From 52c346b4a22c992cc70d5d579ba0a1ef5356e75f Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:45:46 +0100 Subject: [PATCH 052/231] GeoJSON has to extend FeatureGroup --- leaflet/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index fe28a52f32..91dc413c26 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -854,7 +854,7 @@ declare namespace L { * Represents a GeoJSON object or an array of GeoJSON objects. * Allows you to parse GeoJSON data and display it on the map. Extends FeatureGroup. */ - export class GeoJSON { + export class GeoJSON extends FeatureGroup { /** * Creates a Layer from a given GeoJSON feature. Can use a custom pointToLayer * and/or coordsToLatLng functions if provided as options. From 1eed6a55807cfbe403366af86aadbb844ee7be66 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 21:49:35 +0100 Subject: [PATCH 053/231] Set last missing content type --- leaflet/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 91dc413c26..24f6c70c90 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -1323,7 +1323,7 @@ declare namespace L { openPopup(content: Content, latlng: LatLngExpression, options?: PopupOptions): this; closePopup(popup?: Popup): this; openTooltip(tooltip: Tooltip): this; - openTooltip(content: string | HTMLElement, latlng: LatLngExpression, options?: TooltipOptions): this; + openTooltip(content: Content, latlng: LatLngExpression, options?: TooltipOptions): this; closeTooltip(tooltip?: Tooltip): this; // Methods for modifying map state From 70e3bc36418f62c1708e8579139d4f517bbce7a7 Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Mon, 30 Jan 2017 13:09:50 -0800 Subject: [PATCH 054/231] Update index.d.ts --- pdfkit/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/pdfkit/index.d.ts b/pdfkit/index.d.ts index 0666fb67e9..8bd1c7014e 100644 --- a/pdfkit/index.d.ts +++ b/pdfkit/index.d.ts @@ -69,6 +69,7 @@ declare namespace PDFKit.Mixins { } interface PDFFont { + font(buffer: Buffer): TDocument; font(src: string, family?: string, size?: number): TDocument; fontSize(size: number): TDocument; currentLineHeight(includeGap?: boolean): number; From 725847349d3593cc9859c6039d9977a996b4bdf0 Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 22:23:03 +0100 Subject: [PATCH 055/231] The Path interface has to have the getElement method --- leaflet/index.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 24f6c70c90..06f45f2caa 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -583,6 +583,7 @@ declare namespace L { setStyle(style: PathOptions): this; bringToFront(): this; bringToBack(): this; + getElement(): HTMLElement; options: PathOptions; } @@ -599,7 +600,6 @@ declare namespace L { getCenter(): LatLng; getBounds(): LatLngBounds; addLatLng(latlng: LatLngExpression | LatLngExpression[]): this; - getElement(): HTMLElement; options: PolylineOptions; } @@ -640,7 +640,6 @@ declare namespace L { getLatLng(): LatLng; setRadius(radius: number): this; getRadius(): number; - getElement(): HTMLElement; options: CircleMarkerOptions; feature: GeoJSONFeature; From a2bc79cdf4ed2bb4b9720777f289152b4960b8cf Mon Sep 17 00:00:00 2001 From: Arne Schubert Date: Mon, 30 Jan 2017 22:24:19 +0100 Subject: [PATCH 056/231] Remove extra blanks --- leaflet/index.d.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/leaflet/index.d.ts b/leaflet/index.d.ts index 06f45f2caa..bf6f9103a1 100644 --- a/leaflet/index.d.ts +++ b/leaflet/index.d.ts @@ -489,7 +489,6 @@ declare namespace L { export function tileLayer(urlTemplate: string, options?: TileLayerOptions): TileLayer; - export namespace TileLayer { export class WMS extends TileLayer { constructor(baseUrl: string, options: WMSOptions); @@ -647,7 +646,6 @@ declare namespace L { export function circleMarker(latlng: LatLngExpression, options?: CircleMarkerOptions): CircleMarker; - export class Circle extends CircleMarker { constructor(latlng: LatLngExpression, options?: CircleMarkerOptions); constructor(latlng: LatLngExpression, radius: number, options?: CircleMarkerOptions); // deprecated! @@ -882,7 +880,6 @@ declare namespace L { */ static latLngToCoords(latlng: LatLng): [number, number, number]; // A three tuple can be assigned to a two or three tuple - /** * Reverse of coordsToLatLngs closed determines whether the first point should be * appended to the end of the array to close the feature, only used when levelsDeep is 0. From 429c95fd8b754a1642da27d22f5e9828df1fd16e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uli=20K=C3=B6hler?= Date: Mon, 30 Jan 2017 23:50:36 +0100 Subject: [PATCH 057/231] Allow string & Date for ChartPoint.x chartJS supports these datatypes for charts with time-type X-axis --- chart.js/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chart.js/index.d.ts b/chart.js/index.d.ts index 7a7b05c714..0830e68498 100644 --- a/chart.js/index.d.ts +++ b/chart.js/index.d.ts @@ -71,7 +71,7 @@ declare namespace Chart { } export interface ChartPoint { - x?: number; + x?: number | string | Date; y?: number; } @@ -430,4 +430,4 @@ declare namespace Chart { } export = Chart; -export as namespace Chart; \ No newline at end of file +export as namespace Chart; From 9fb51ac8c352d8d7a4371fe333f19e9b4e634a95 Mon Sep 17 00:00:00 2001 From: Sukhdeep Singh Date: Mon, 30 Jan 2017 20:45:31 -0500 Subject: [PATCH 058/231] V0.98.0 changes added --- materialize-css/index.d.ts | 189 ++++++++++++----- materialize-css/materialize-css-tests.ts | 257 ++++++++++++----------- 2 files changed, 265 insertions(+), 181 deletions(-) diff --git a/materialize-css/index.d.ts b/materialize-css/index.d.ts index ea844d959f..4d49ac38e7 100644 --- a/materialize-css/index.d.ts +++ b/materialize-css/index.d.ts @@ -1,6 +1,6 @@ -// Type definitions for materialize-css v0.97.5 +// Type definitions for materialize-css v0.98.0 // Project: http://materializecss.com/ -// Definitions by: Erik Lieben , Leon Yu +// Definitions by: Erik Lieben , Leon Yu , Sukhdeep Singh // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -15,7 +15,7 @@ declare namespace Materialize { /** * A setting that changes the collapsible behavior to expandable instead of the default accordion style */ - accordion: boolean; + accordion?: boolean; /** * Callback for Collapsible section close. @@ -34,7 +34,23 @@ declare namespace Materialize { /** * The delay before the tooltip shows (in milliseconds) */ - delay:number; + delay: number; + /** + * Tooltip text. Can use custom HTML if you set the html option + */ + tooltip?: string; + /** + * Set the direction of the tooltip. 'top', 'right', 'bottom', 'left'. + * + * (Default: 'bottom') + */ + position?: string; + /** + * Allow custom html inside the tooltip. + * + * (Default: false) + */ + html?: boolean; } /** @@ -46,43 +62,49 @@ declare namespace Materialize { * The duration of the transition enter in milliseconds. * Default: 300 */ - inDuration?:number; + inDuration?: number; /** * The duration of the transition out in milliseconds. * Default: 225 */ - outDuration?:number; + outDuration?: number; - // TODO: constrain_width + /** * If true, constrainWidth to the size of the dropdown activator. * Default: true */ - constrain_width?:boolean; + constrainWidth?: boolean; /** * If true, the dropdown will open on hover. * Default: false */ - hover?:boolean; + hover?: boolean; /** * This defines the spacing from the aligned edge. * Default: 0 */ - gutter?:number; + gutter?: number; /** * If true, the dropdown will show below the activator. * Default: false */ - belowOrigin?:boolean; + belowOrigin?: boolean; /** * Defines the edge the menu is aligned to. * Default: 'left' */ - alignment?:string; + alignment?: string; + /** + * If true, stops the event propagating from the dropdown origin click handler. + * + * Default: false + */ + stopPropagation?: boolean } /** @@ -120,10 +142,10 @@ declare namespace Materialize { */ interface CarouselOptions { /** - * Transition time. + * Transition duration in milliseconds * Default: 200 */ - time_constant?: number; + duration?: number; /** * Perspective zoom. If 0, all items are the same size. @@ -147,13 +169,25 @@ declare namespace Materialize { * Set the width of the carousel. * Default: false */ - full_width?: boolean; + fullWidth?: boolean; + /** + * Set to true to show indicators. + * + * Default: false + */ + indicators?: boolean; + /** + * Don't wrap around and cycle through items. + * + * Default: false + */ + noWrap?: boolean; } /** - * The lean modal options + * The modal options */ - interface LeanModalOptions { + interface ModalOptions { /** * Modal can be dismissed by clicking outside of the modal. @@ -171,13 +205,23 @@ declare namespace Materialize { * Transition in duration. * Default: 300 */ - in_duration?: number; + inDuration?: number; /** * Transition out duration. * Default: 200 */ - out_duration?: number; + outDuration?: number; + /** + * Starting top style attribute + * Default: `4%` + */ + startingTop?: string; + /** + * Ending top style attribute + * Default : `10%` + */ + endingTop?: string; /** * Callback for Modal open. @@ -201,19 +245,19 @@ declare namespace Materialize { * The distance in pixels from the top of the page where the element becomes fixed. * Default: 0 */ - top?:number; + top?: number; /** * The distance in pixels from the top of the page where the elements stops being fixed. * Default: Infinity */ - bottom?:number; + bottom?: number; /** * The offset from the top the element will be fixed at. * Default: 0 */ - offset?:number; + offset?: number; } /** @@ -273,44 +317,68 @@ declare namespace Materialize { * It will only be called once. * Example: 'console.log("hello, world!")'; */ - callback?: string; + callback?: Function; } + interface TabOptions { /** + * Execute a callback function when the tab is changed. + * + * The callback provides a parameter which refers to the current tab being shown. + */ + onShow?: Function; + + /** + * Set to true to enable swipeable tabs. This also uses the responsiveThreshold option. + * + * Default: false + */ + swipeable?: boolean; + + /** + * The maximum width of the screen, in pixels, where the swipeable functionality initializes. + * + * Default: Infinity + */ + responsiveThreshold?: number; + } + + + /** * The Materialize object */ interface Materialize { /** - * Displays a toast message on screen - * - * @name message The message to display on screen - * @name displayLength The duration in milliseconds to display the message on screen - * @name className The className to use to format the message to display - * @name completeCallback Callback function to call when the messages completes/hides. - */ - toast(message:string|JQuery, displayLength:number, className?:string, completeCallback?:Function): void; + * Displays a toast message on screen + * + * @name message The message to display on screen + * @name displayLength The duration in milliseconds to display the message on screen + * @name className The className to use to format the message to display + * @name completeCallback Callback function to call when the messages completes/hides. + */ + toast(message: string | JQuery, displayLength: number, className?: string, completeCallback?: Function): void; /** * Fires an event when the page is scrolled to a certain area * * @name options optional parameter with scroll fire options */ - scrollFire(options?:ScrollFireOptions): void; + scrollFire(options?: ScrollFireOptions): void; /** * A staggered reveal effect for any UL Tag with list items * * @name selector the selector for the list to show in staggered fasion */ - showStaggeredList(selector:string): void; + showStaggeredList(selector: string): void; /** * Fade in images. It also animates grayscale and brightness to give it a unique effect. * * @name selector the selector for the image to fade in */ - fadeInImage(selector:string): void; + fadeInImage(selector: string): void; /** * Update all text field to reinitialize all the Materialize labels on the page if dynamically adding inputs @@ -319,7 +387,7 @@ declare namespace Materialize { } } -declare var Materialize : Materialize.Materialize; +declare var Materialize: Materialize.Materialize; interface JQuery { @@ -365,7 +433,7 @@ interface JQuery { * * @name options the tooltip options or the string "remove" to remove the tooltip function */ - tooltip(options?: Materialize.TooltipOptions|string): JQuery; + tooltip(options?: Materialize.TooltipOptions | string): JQuery; /** * Add a dropdown list to any button. @@ -414,28 +482,32 @@ interface JQuery { * * @name method the methods to pause, start, move to next and move to previous slide. */ - carousel(method: string, count: [number]): JQuery; + carousel(method: string, count?: number): JQuery; /** - * Modal for dialog boxes, confirmation messages, or other content that can be called up. + * Modal for dialog boxes, confirmation messages, or other content that can be called up. + * + * For Initialization. + */ + modal(): JQuery; + + /** + * Modal for dialog boxes, confirmation messages, or other content that can be called up. + * + * For opening and closing modals programatically. + * + * @name string action action to do (`open` or `close) + */ + modal(action: string): void; + + /** + * Modal for dialog boxes, confirmation messages, or other content that can be called up. + * + * To customize the behaviour of a modal * * @name options the lean modal options */ - leanModal(options?: Materialize.LeanModalOptions): JQuery; - - /** - * Open a modal programatically - * - * @name options the lean modal options - */ - openModal(options?: Materialize.LeanModalOptions): void; - - /** - * Close a modal programatically - * - * @name options the lean modal options - */ - closeModal(options?: Materialize.LeanModalOptions): void; + modal(options: Materialize.ModalOptions): void; /** * Parallax is an effect where the background content or image in this case, is moved at a different speed than the foreground content while scrolling. @@ -461,12 +533,19 @@ interface JQuery { * * @params methodOrOptions the slide navigation options or a string with "show" to reveal or "hide" to hide the menu */ - sideNav(methodOrOptions?: Materialize.SideNavOptions|string): void; + sideNav(methodOrOptions?: Materialize.SideNavOptions | string): void; /** * Programmatically trigger the tab change event * * @name method, the method to call (always "select_tab") and a param containing the id of the tab to open */ - tabs(method?:string, tab?:string): JQuery; + tabs(method?: string, tab?: string): JQuery; + + /** + * Tab Initialization with options + * + * @name TabOptions options jQuery plugin options + */ + tabs(options?: Materialize.TabOptions): JQuery; } diff --git a/materialize-css/materialize-css-tests.ts b/materialize-css/materialize-css-tests.ts index 15189e1b8f..625d555398 100644 --- a/materialize-css/materialize-css-tests.ts +++ b/materialize-css/materialize-css-tests.ts @@ -22,7 +22,7 @@ $('input#input_text, textarea#textarea1').characterCounter(); // Navbar $(".dropdown-button").dropdown(); -$(".dropdown-button").dropdown({hover: false}); +$(".dropdown-button").dropdown({ hover: false }); $(".button-collapse").sideNav(); @@ -30,22 +30,22 @@ $(".button-collapse").sideNav(); // Collapsible var collapseHtml = '
    ' + - '
  • ' + - '
    filter_dramaFirst
    ' + - '

    Lorem ipsum dolor sit amet.

    ' + - '
  • ' + - '
  • ' + - '
    placeSecond
    ' + - '

    Lorem ipsum dolor sit amet.

    ' + - '
  • ' + - '
  • ' + - '
    whatshotThird
    ' + - '

    Lorem ipsum dolor sit amet.

    ' + - '
  • ' + + '
  • ' + + '
    filter_dramaFirst
    ' + + '

    Lorem ipsum dolor sit amet.

    ' + + '
  • ' + + '
  • ' + + '
    placeSecond
    ' + + '

    Lorem ipsum dolor sit amet.

    ' + + '
  • ' + + '
  • ' + + '
    whatshotThird
    ' + + '

    Lorem ipsum dolor sit amet.

    ' + + '
  • ' + '
'; -$(collapseHtml).collapsible({ accordion : false, onClose : function() { alert('Closed'); } }); -$(collapseHtml).collapsible({ accordion : true, onOpen : function() { alert('Opened'); } }); +$(collapseHtml).collapsible({ accordion: false, onClose: function () { alert('Closed'); } }); +$(collapseHtml).collapsible({ accordion: true, onOpen: function () { alert('Opened'); } }); // Dialogs - Toasts Materialize.toast('I am a toast!', 4000); @@ -57,19 +57,21 @@ Materialize.toast($toastContent, 5000); // Dialogs - Tooltip var tooltipHtml = 'Hover me!'; $(tooltipHtml).tooltip(); -$(tooltipHtml).tooltip({delay: 100}); +$(tooltipHtml).tooltip({ delay: 100 }); $(tooltipHtml).tooltip('remove'); // DropDown var dropDownHtml = 'Drop Me!'; $(dropDownHtml).dropdown({ - inDuration: 300, - outDuration: 225, - constrain_width: false, - hover: true, - gutter: 0, - belowOrigin: false, - alignment: 'left' + inDuration: 300, + outDuration: 225, + constrainWidth: false, // Does not change width of dropdown to that of the activator + hover: true, // Activate on hover + gutter: 0, // Spacing from edge + belowOrigin: false, // Displays dropdown below the button + alignment: 'left', // Displays dropdown with edge aligned to the left of button + stopPropagation: false // Stops event propagation + }); $(dropDownHtml).dropdown({}); @@ -79,136 +81,138 @@ $(materialboxHtml).materialbox(); // Media - slider var sliderHtml = '
' + - '
    ' + - '
  • ' + - ' ' + - '
    ' + - '

    This is our big Tagline!

    ' + - '
    Here\'s our small slogan.
    ' + - '
    ' + - '
  • ' + - '
  • ' + - ' ' + - '
    ' + - '

    Left Aligned Caption

    ' + - '
    Here\'s our small slogan.
    ' + - '
    ' + - '
  • ' + - '
  • ' + - ' ' + - '
    ' + - '

    Right Aligned Caption

    ' + - '
    Here\'s our small slogan.
    ' + - '
    ' + - '
  • ' + - '
  • ' + - ' ' + - '
    ' + - '

    This is our big Tagline!

    ' + - '
    Here\'s our small slogan.
    ' + - '
    ' + - '
  • ' + - '
' + + '
    ' + + '
  • ' + + ' ' + + '
    ' + + '

    This is our big Tagline!

    ' + + '
    Here\'s our small slogan.
    ' + + '
    ' + + '
  • ' + + '
  • ' + + ' ' + + '
    ' + + '

    Left Aligned Caption

    ' + + '
    Here\'s our small slogan.
    ' + + '
    ' + + '
  • ' + + '
  • ' + + ' ' + + '
    ' + + '

    Right Aligned Caption

    ' + + '
    Here\'s our small slogan.
    ' + + '
    ' + + '
  • ' + + '
  • ' + + ' ' + + '
    ' + + '

    This is our big Tagline!

    ' + + '
    Here\'s our small slogan.
    ' + + '
    ' + + '
  • ' + + '
' + '
'; - $(sliderHtml).slider(); - $(sliderHtml).slider({}); - $(sliderHtml).slider({ indicators: true }); - $(sliderHtml).slider({ indicators: true, height: 5 }); - $(sliderHtml).slider({ indicators: true, height: 5, transition: 4 }); - $(sliderHtml).slider({ indicators: true, height: 5, transition: 4, interval: 5 }); +$(sliderHtml).slider(); +$(sliderHtml).slider({}); +$(sliderHtml).slider({ indicators: true }); +$(sliderHtml).slider({ indicators: true, height: 5 }); +$(sliderHtml).slider({ indicators: true, height: 5, transition: 4 }); +$(sliderHtml).slider({ indicators: true, height: 5, transition: 4, interval: 5 }); // Carousel $('.carousel').carousel(); $('.carousel').carousel({}); -$('.carousel').carousel({ time_constant: 200, dist: -100, shift: 500, padding: 6000, full_width: true }); +$('.carousel').carousel({ duration: 200, dist: -100, shift: 500, padding: 6000, fullWidth: true, indicators: false, noWrap: false }); // Next slide $('.carousel').carousel('next'); -$('.carousel').carousel('next', [3]); // Move next n times. +$('.carousel').carousel('next', 3); // Move next n times. // Previous slide $('.carousel').carousel('prev'); -$('.carousel').carousel('prev', [4]); // Move prev n times. +$('.carousel').carousel('prev', 4); // Move prev n times. // Modals var modalhtml = ''; -$(modalhtml).openModal(); -$(modalhtml).closeModal(); +$(modalhtml).modal('open'); +$(modalhtml).modal('close'); var modalTriggerHtml = ''; -$(modalTriggerHtml).leanModal(); -$(modalTriggerHtml).leanModal({}); -$(modalTriggerHtml).leanModal({ dismissible: true }); -$(modalTriggerHtml).leanModal({ dismissible: true, opacity: 1 }); -$(modalTriggerHtml).leanModal({ dismissible: true, opacity: 1, in_duration: 100 }); -$(modalTriggerHtml).leanModal({ dismissible: true, opacity: 1, in_duration: 100, out_duration: 100 }); -$(modalTriggerHtml).leanModal({ dismissible: true, opacity: 1, in_duration: 100, out_duration: 100, ready: () => console.log('ready') }); -$(modalTriggerHtml).leanModal({ dismissible: true, opacity: 1, in_duration: 100, out_duration: 100, ready: () => console.log('ready'), complete: () => console.log('complete')}); +$(modalTriggerHtml).modal(); +$(modalTriggerHtml).modal({}); +$(modalTriggerHtml).modal({ dismissible: true }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1 }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100 }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100, outDuration: 100 }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100, outDuration: 100, startingTop: "4%" }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100, outDuration: 100, startingTop: "4%", endingTop: "10%" }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100, outDuration: 100, startingTop: "4%", endingTop: "10%", ready: () => console.log('ready') }); +$(modalTriggerHtml).modal({ dismissible: true, opacity: 1, inDuration: 100, outDuration: 100, startingTop: "4%", endingTop: "10%", ready: () => console.log('ready'), complete: () => console.log('complete') }); // Parallax var parallaxHtml = '
' + - '
' + - '
'; - $(parallaxHtml).parallax(); + '
' + + '
'; +$(parallaxHtml).parallax(); - // PushPin - $('
').pushpin(); - $('
').pushpin({ top: 1 }); - $('
').pushpin({ top: 1, bottom: 1 }); - $('
').pushpin({ top: 1, bottom: 1, offset: 2 }); +// PushPin +$('
').pushpin(); +$('
').pushpin({ top: 1 }); +$('
').pushpin({ top: 1, bottom: 1 }); +$('
').pushpin({ top: 1, bottom: 1, offset: 2 }); // ScrollFire var options = [ - {selector: '.class', offset: 200, callback: 'console.log(".class")' }, - {selector: '.other-class', offset: 200, callback: 'console.log(".other-class")' }, + { selector: '.class', offset: 200, callback: 'console.log(".class")' }, + { selector: '.other-class', offset: 200, callback: 'console.log(".other-class")' }, ]; Materialize.scrollFire(options); // ScrollSpy var scrollSpyHtml = '
' + - '
' + - '
' + - '

Content

' + - '
' + - '
' + - '

Content

' + - '
' + - '
' + - '

Content

' + - '
' + - '
' + - '
' + - '' + - '
' + + '
' + + '
' + + '

Content

' + + '
' + + '
' + + '

Content

' + + '
' + + '
' + + '

Content

' + + '
' + + '
' + + '
' + + '' + + '
' + '
'; $(scrollSpyHtml, ".scrollspy").scrollSpy(); // Side-Nav var sideNavHtml = ''; + ''; $(sideNavHtml).sideNav(); $(sideNavHtml).sideNav({}); $(sideNavHtml).sideNav({ menuWidth: 100 }); @@ -220,22 +224,23 @@ $(sideNavHtml).sideNav("hide"); // Tabs var tabsHtml = '
' + - '
' + - '' + - '
' + - '
Test 1
' + - '
Test 2
' + - '
Test 3
' + - '
Test 4
' + + '
' + + '' + + '
' + + '
Test 1
' + + '
Test 2
' + + '
Test 3
' + + '
Test 4
' + '
'; - $(tabsHtml).tabs(); - $(tabsHtml).tabs('select_tab', 'test1'); +$(tabsHtml).tabs(); +$(tabsHtml).tabs('select_tab', 'test1'); +$(tabsHtml).tabs({ onShow: (currentTab: any) => { console.log(currentTab) }, swipeable: false, responsiveThreshold: 5000 }); // Transitions Materialize.showStaggeredList('#staggered-test'); From 24c5a18d44b9811f74d2a2afb16fe5ade3258d41 Mon Sep 17 00:00:00 2001 From: Sukhdeep Singh Date: Mon, 30 Jan 2017 22:17:52 -0500 Subject: [PATCH 059/231] Chip Javascript plugin usage added --- materialize-css/index.d.ts | 45 +++++++++++++++++++++++- materialize-css/materialize-css-tests.ts | 32 ++++++++++++++++- 2 files changed, 75 insertions(+), 2 deletions(-) diff --git a/materialize-css/index.d.ts b/materialize-css/index.d.ts index 4d49ac38e7..8b4c610e13 100644 --- a/materialize-css/index.d.ts +++ b/materialize-css/index.d.ts @@ -70,7 +70,7 @@ declare namespace Materialize { */ outDuration?: number; - + /** * If true, constrainWidth to the size of the dropdown activator. * Default: true @@ -343,6 +343,35 @@ declare namespace Materialize { responsiveThreshold?: number; } + interface ChipDataObject { + tag: string, + image?: string, + id?: number + } + + interface ChipOptions { + /** + * Set the chip data + */ + data?: Materialize.ChipDataObject[]; + /** + * Set first placeholder when there are no tags + */ + placeholder?: string; + /** + * Set second placeholder when adding additional tags. + */ + secondaryPlaceholder?: string; + /** + * Set autocomplete data. + */ + autocompleteData?: any; + /** + * Set autocomplete limit. + */ + autocompleteLimit?: number; + } + /** * The Materialize object @@ -548,4 +577,18 @@ interface JQuery { * @name TabOptions options jQuery plugin options */ tabs(options?: Materialize.TabOptions): JQuery; + + /** + * Chip Initialization + * + * @name ChipOptions options Material chip options + */ + material_chip(options?: Materialize.ChipOptions): JQuery; + + /** + * To access chip data + * + * @name string method name of the method to invoke + */ + material_chip(method: string): Materialize.ChipDataObject[] | Materialize.ChipDataObject; } diff --git a/materialize-css/materialize-css-tests.ts b/materialize-css/materialize-css-tests.ts index 625d555398..9c7d7d1ea2 100644 --- a/materialize-css/materialize-css-tests.ts +++ b/materialize-css/materialize-css-tests.ts @@ -245,4 +245,34 @@ $(tabsHtml).tabs({ onShow: (currentTab: any) => { console.log(currentTab) }, swi // Transitions Materialize.showStaggeredList('#staggered-test'); -Materialize.updateTextFields(); \ No newline at end of file +Materialize.updateTextFields(); + +let chipsHTML = '
' + + '
' + + '
' + + '
'; + +$(chipsHTML).material_chip(); +$(chipsHTML).material_chip({ + data: [{ + tag: 'Apple', + }, { + tag: 'Microsoft', + }, { + tag: 'Google', + }], +}); + +$('.chips-placeholder').material_chip({ + placeholder: 'Enter a tag', + secondaryPlaceholder: '+Tag', +}); +$('.chips-autocomplete').material_chip({ + autocompleteData: { + 'Apple': null, + 'Microsoft': null, + 'Google': null + } +}); + +let chipData: Materialize.ChipDataObject | Materialize.ChipDataObject[] = $('.chips-initial').material_chip('data'); \ No newline at end of file From 0dc1c448ad6a3b165fbb8a5b903c225577089b40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zsolt=20Kov=C3=A1cs?= Date: Tue, 31 Jan 2017 09:44:42 +0100 Subject: [PATCH 060/231] Module declaration for dragster --- dragster/index.d.ts | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/dragster/index.d.ts b/dragster/index.d.ts index d60892244e..2aa82ddb8b 100644 --- a/dragster/index.d.ts +++ b/dragster/index.d.ts @@ -3,10 +3,32 @@ // Definitions by: Zsolt Kovacs // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -declare class Dragster { - constructor(elem: HTMLElement); - removeListeners(): void; - reset(): void; +// Type definitions for dragster 0.1 +// Project: https://github.com/bensmithett/dragster +// Definitions by: Zsolt Kovacs +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare namespace Dragster { + interface Dragster { + removeListeners(): void; + reset(): void; + } + + interface DragsterStatic { + (elem: HTMLElement): Dragster; + new (elem: HTMLElement): Dragster; + } } -export = Dragster; \ No newline at end of file +// window.Dragster +declare var Dragster: Dragster.DragsterStatic; + +// import Dragster = require('dragster'); +declare module 'dragster' { + interface ExportedDragster extends Dragster.Dragster { + (elem: HTMLElement): Dragster.Dragster; + new (elem: HTMLElement): Dragster.Dragster; + } + var Dragster: ExportedDragster; + export = Dragster; +} \ No newline at end of file From 08870e953fdf89da51a8683546589e9efe0d24ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1mal=20Rasmussen?= Date: Tue, 31 Jan 2017 09:52:27 +0100 Subject: [PATCH 061/231] Move typescript version definition to the top of the file --- lodash-es/index.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash-es/index.d.ts b/lodash-es/index.d.ts index c49a824f4c..e344736795 100644 --- a/lodash-es/index.d.ts +++ b/lodash-es/index.d.ts @@ -2,6 +2,7 @@ // Project: http://lodash.com/ // Definitions by: Stephen Lautier // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 export { default as add } from './add'; export { default as after } from './after'; @@ -286,5 +287,3 @@ export { default as xorWith } from './xorWith'; export { default as zip } from './zip'; export { default as zipObject } from './zipObject'; export { default as zipWith } from './zipWith'; - -// TypeScript Version: 2.1 From 506ff3b5a0a525892ef05bbb9406a3855049aa17 Mon Sep 17 00:00:00 2001 From: daberni Date: Tue, 31 Jan 2017 10:11:19 +0100 Subject: [PATCH 062/231] added serialize to JSNLogOptions see http://jsnlog.com/Documentation/JSNLogJs/JL/SetOptions#serialize --- jsnlog/index.d.ts | 3 ++- jsnlog/jsnlog-tests.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/jsnlog/index.d.ts b/jsnlog/index.d.ts index 4b525c75af..012534a7ac 100644 --- a/jsnlog/index.d.ts +++ b/jsnlog/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for JSNLog 2.17.3 +// Type definitions for JSNLog 2.17.4 // Project: https://github.com/mperdeck/jsnlog.js // Definitions by: Mattijs Perdeck // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -33,6 +33,7 @@ declare namespace JL { clientIP?: string; requestId?: string; defaultBeforeSend?: (xhr: XMLHttpRequest) => void; + serialize?: (obj: any) => string; } interface JSNLogFilterOptions { diff --git a/jsnlog/jsnlog-tests.ts b/jsnlog/jsnlog-tests.ts index db2b2a2523..64078fbd58 100644 --- a/jsnlog/jsnlog-tests.ts +++ b/jsnlog/jsnlog-tests.ts @@ -18,7 +18,8 @@ JL.setOptions({ defaultAjaxUrl: '/jsnlog.logger', clientIP: '0.0.0.0', requestId: 'a reuest id', - defaultBeforeSend: null + defaultBeforeSend: null, + serialize: (obj) => JSON.stringify(obj) }); // ---------------------------------------------------------- From 94719585469e9cbdb9b2174851aaf97161c46676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zsolt=20Kov=C3=A1cs?= Date: Tue, 31 Jan 2017 12:25:54 +0100 Subject: [PATCH 063/231] Remove tslinter --- dragster/tslint.json | 1 - 1 file changed, 1 deletion(-) delete mode 100644 dragster/tslint.json diff --git a/dragster/tslint.json b/dragster/tslint.json deleted file mode 100644 index 377cc837d4..0000000000 --- a/dragster/tslint.json +++ /dev/null @@ -1 +0,0 @@ -{ "extends": "../tslint.json" } From 173cf1510a61e2c9b83ddc95ba69cf3d410733d1 Mon Sep 17 00:00:00 2001 From: Patrick Niemann Date: Tue, 31 Jan 2017 16:35:52 +0100 Subject: [PATCH 064/231] Added two missing functions: renderEvents and updateEvents https://fullcalendar.io/docs/event_rendering/renderEvents/ https://fullcalendar.io/docs/event_data/updateEvents/ --- fullcalendar/index.d.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/fullcalendar/index.d.ts b/fullcalendar/index.d.ts index 0c55872014..7d0945bb4c 100644 --- a/fullcalendar/index.d.ts +++ b/fullcalendar/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for FullCalendar 2.7.2 // Project: http://fullcalendar.io/ -// Definitions by: Neil Stalker , Marcelo Camargo +// Definitions by: Neil Stalker , Marcelo Camargo , Patrick Niemann // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -363,6 +363,11 @@ declare global { */ fullCalendar(method: 'updateEvent', event: EventObject): void; + /** + * Reports changes for multiple events and renders them on the calendar. + */ + fullCalendar(method: 'updateEvents', events: Array): void; + /** * Retrieves events that FullCalendar has in memory. */ @@ -402,6 +407,11 @@ declare global { * Renders a new event on the calendar. */ fullCalendar(method: 'renderEvent', event: EventObject, stick?: boolean): void; + + /** + * Renders new events on the calendar. + */ + fullCalendar(method: 'renderEvents', events: Array, stick?: boolean): void; /** * Rerenders all events on the calendar. From edf5bfa360d33f6ab4dfa8e259e21c22bed6f2dc Mon Sep 17 00:00:00 2001 From: John Date: Tue, 31 Jan 2017 12:38:05 -0600 Subject: [PATCH 065/231] Added missing prop --- react-dropzone/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/react-dropzone/index.d.ts b/react-dropzone/index.d.ts index b4ed4ded43..1e5a62af1b 100644 --- a/react-dropzone/index.d.ts +++ b/react-dropzone/index.d.ts @@ -33,6 +33,8 @@ declare module "react-dropzone" { name?: string, // name attribute for the input tag maxSize?: number, minSize?: number + + onFileDialogCancel?: () => void; } let Dropzone: React.ClassicComponentClass; From e4d1e2176b0888a73b389ebeddd271c4ff123a50 Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 10:40:16 -0800 Subject: [PATCH 066/231] updating kafka-node typings to have ConsumerGroup --- kafka-node/index.d.ts | 35 ++++++++++++++++++++++++++++++++++- 1 file changed, 34 insertions(+), 1 deletion(-) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index b3a67c4b9a..d77b180ef3 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -59,6 +59,13 @@ export declare class HighLevelConsumer { close(force: boolean, cb: () => any): void; } +export declare class ConsumerGroup { + constructor(options: ConsumerGroupOptions, topics: string[]); + on(eventName: string, cb: (message: string) => any): void; + on(eventName: string, cb: (error: any) => any): void; + close(force: boolean, cb: (error: any) => any): void; +} + export declare class Offset { constructor(client: Client); on(eventName: string, cb: () => any): Offset; @@ -66,6 +73,7 @@ export declare class Offset { commit(groupId: string, payloads: Array, cb: (error: any, data: any) => any): void; fetchCommits(groupId: string, payloads: Array, cb: (error: any, data: any) => any): void; fetchLatestOffsets(topics: Array, cb: (error: any, data: any) => any): void; + fetchEarliestOffsets(topics: Array, cb: (error: any, data: any) => any): void; on(eventName: string, cb: (error: any) => any): Offset; } @@ -74,6 +82,11 @@ export declare class KeyedMessage { } // # Interfaces +export interface AckBatchOptions { + noAckBatchSize: number | null, + noAckBatchAge: number | null +} + export interface ZKOptions { sessionTimeout?: number; spinDelay?: number; @@ -99,6 +112,27 @@ export interface ConsumerOptions { encoding?: string; } +export interface CustomPartitionAssignmentProtocol { + name: string; + version: number; + userData: {}; + assign: (topicPattern: any, groupMembers: any, callback: (error: any, result: any) => void) => void; +} + +export interface ConsumerGroupOptions { + host: string; + zk?: ZKOptions; + batch?: AckBatchOptions; + ssl?: boolean; + id: string; + groupId: string; + sessionTimeout: number; + protocol: Array<"roundrobin" | "range" | CustomPartitionAssignmentProtocol>; + fromOffset: "earliest" | "latest" | "none"; + migrateHLC: false; + migrateRolling: true; +} + export interface Topic { topic: string; offset?: number; @@ -129,4 +163,3 @@ export interface FetchRequest { topic: string; offset?: number; } - From cf8502eea5b3802a6b8ef095341f2aa8e97a057c Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 10:42:50 -0800 Subject: [PATCH 067/231] updated return types to void of event listeners --- kafka-node/index.d.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index d77b180ef3..87a28f0ee7 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -13,24 +13,24 @@ export declare class Client { export declare class Producer { constructor(client: Client); - on(eventName: string, cb: () => any): Producer; - on(eventName: string, cb: (error: any) => any): Producer; + on(eventName: string, cb: () => any): void; + on(eventName: string, cb: (error: any) => any): void; send(payloads: Array, cb: (error: any, data: any) => any): void; createTopics(topics: Array, async: boolean, cb?: (error: any, data: any) => any): void; } export declare class HighLevelProducer { constructor(client: Client); - on(eventName: string, cb: () => any): HighLevelProducer; - on(eventName: string, cb: (error: any) => any): HighLevelProducer; + on(eventName: string, cb: () => any): void; + on(eventName: string, cb: (error: any) => any): void; send(payloads: Array, cb: (error: any, data: any) => any): void; createTopics(topics: Array, async: boolean, cb?: (error: any, data: any) => any): void; } export declare class Consumer { constructor(client: Client, fetchRequests: Array, options: ConsumerOptions); - on(eventName: string, cb: (message: string) => any): Consumer; - on(eventName: string, cb: (error: any) => any): Consumer; + on(eventName: string, cb: (message: string) => any): void; + on(eventName: string, cb: (error: any) => any): void; addTopics(topics: Array, cb: (error: any, added: boolean) => any): void; addTopics(topics: Array, cb: (error: any, added: boolean) => any, fromOffset: boolean): void; removeTopics(topics: Array, cb: (error: any, removed: boolean) => any): void; @@ -45,8 +45,8 @@ export declare class Consumer { export declare class HighLevelConsumer { constructor(client: Client, payloads: Array, options: ConsumerOptions); - on(eventName: string, cb: (message: string) => any): HighLevelConsumer; - on(eventName: string, cb: (error: any) => any): HighLevelConsumer; + on(eventName: string, cb: (message: string) => any): void; + on(eventName: string, cb: (error: any) => any): void; addTopics(topics: Array, cb: (error: any, added: boolean) => any): void; addTopics(topics: Array, cb: (error: any, added: boolean) => any, fromOffset: boolean): void; removeTopics(topics: Array, cb: (error: any, removed: boolean) => any): void; @@ -68,13 +68,13 @@ export declare class ConsumerGroup { export declare class Offset { constructor(client: Client); - on(eventName: string, cb: () => any): Offset; + on(eventName: string, cb: () => any): void; fetch(payloads: Array, cb: (error: any, data: any) => any): void; commit(groupId: string, payloads: Array, cb: (error: any, data: any) => any): void; fetchCommits(groupId: string, payloads: Array, cb: (error: any, data: any) => any): void; fetchLatestOffsets(topics: Array, cb: (error: any, data: any) => any): void; fetchEarliestOffsets(topics: Array, cb: (error: any, data: any) => any): void; - on(eventName: string, cb: (error: any) => any): Offset; + on(eventName: string, cb: (error: any) => any): void; } export declare class KeyedMessage { From 0142723d38c506d3030636c1bafdd3d466b16916 Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 10:46:45 -0800 Subject: [PATCH 068/231] updated constructors --- kafka-node/index.d.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index 87a28f0ee7..c4b51741df 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -20,7 +20,7 @@ export declare class Producer { } export declare class HighLevelProducer { - constructor(client: Client); + constructor(client: Client, options: any); on(eventName: string, cb: () => any): void; on(eventName: string, cb: (error: any) => any): void; send(payloads: Array, cb: (error: any, data: any) => any): void; @@ -28,7 +28,7 @@ export declare class HighLevelProducer { } export declare class Consumer { - constructor(client: Client, fetchRequests: Array, options: ConsumerOptions); + constructor(client: Client, fetchRequests: Array, options: ConsumerOptions); on(eventName: string, cb: (message: string) => any): void; on(eventName: string, cb: (error: any) => any): void; addTopics(topics: Array, cb: (error: any, added: boolean) => any): void; @@ -157,9 +157,5 @@ export interface OffsetCommitRequest { export interface OffsetFetchRequest { topic: string; partition?: number; -} - -export interface FetchRequest { - topic: string; offset?: number; } From 7469b11708a1032296a608c7de24660e50dc0195 Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 10:48:19 -0800 Subject: [PATCH 069/231] added id to consumerOptions --- kafka-node/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index c4b51741df..ae9235d2e9 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -103,6 +103,7 @@ export interface ProduceRequest { export interface ConsumerOptions { groupId?: string; + id?: string; autoCommit?: boolean; autoCommitIntervalMs?: number; fetchMaxWaitMs?: number; From 48d061a1a5359f6bde13aa1260c96c2b2798e8ba Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 12:01:32 -0800 Subject: [PATCH 070/231] making options in HLP constructor optional --- kafka-node/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index ae9235d2e9..8f51b3dfb0 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -20,7 +20,7 @@ export declare class Producer { } export declare class HighLevelProducer { - constructor(client: Client, options: any); + constructor(client: Client, options?: any); on(eventName: string, cb: () => any): void; on(eventName: string, cb: (error: any) => any): void; send(payloads: Array, cb: (error: any, data: any) => any): void; From 9dfd9d9860172c7a70c9a3c8108152f69f39a6f0 Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 14:27:31 -0800 Subject: [PATCH 071/231] added tests for ConsumerGroup and offsets --- kafka-node/kafka-node-tests.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/kafka-node/kafka-node-tests.ts b/kafka-node/kafka-node-tests.ts index a5b9e9ca3e..65ca7abb81 100644 --- a/kafka-node/kafka-node-tests.ts +++ b/kafka-node/kafka-node-tests.ts @@ -138,6 +138,24 @@ hlConsumer.resumeTopics([ hlConsumer.close(true, function () {}); +var ackBatchOptions = {'noAckBatchSize': 1024, 'noAckBatchAge': 10}; +var cgOptions: kafka.ConsumerGroupOptions = { + host: 'localhost:2181/', + batch: ackBatchOptions, + groupId: 'groupID', + id: 'consumerID', + sessionTimeout: 15000, + protocol: ["roundrobin"], + fromOffset: "latest", + migrateHLC: false, + migrateRolling: true +}; + +var consumerGroup = new kafka.ConsumerGroup( cgOptions, ['topic1']); +consumerGroup.on('error', (err) => {}); +consumerGroup.on('message', (msg) => {}); +consumerGroup.close(true, () => {}); + var offset = new kafka.Offset(basicClient); offset.on('ready', function(){}); @@ -154,3 +172,6 @@ offset.commit('groupId', [ offset.fetchCommits('groupId', [ { topic: 't', partition: 0 } ], function (err, data) {}); + +offset.fetchLatestOffsets(['t'], (err, offsets) => {}) +offset.fetchEarliestOffsets(['t'], (err, offsets) => {}) From c4ed2ff42e43da783d3e248cc04a35800e2a33e0 Mon Sep 17 00:00:00 2001 From: bkim54 Date: Tue, 31 Jan 2017 14:33:02 -0800 Subject: [PATCH 072/231] updating comment, type definitions for kafka-node 1.3.3 --- kafka-node/index.d.ts | 2 +- kafka-node/kafka-node-tests.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/kafka-node/index.d.ts b/kafka-node/index.d.ts index 8f51b3dfb0..018b1a6f9e 100644 --- a/kafka-node/index.d.ts +++ b/kafka-node/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for kafka-node 0.2.22 +// Type definitions for kafka-node 1.3.3 // Project: https://github.com/SOHU-Co/kafka-node/ // Definitions by: Daniel Imrie-Situnayake // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped diff --git a/kafka-node/kafka-node-tests.ts b/kafka-node/kafka-node-tests.ts index 65ca7abb81..557c40de8c 100644 --- a/kafka-node/kafka-node-tests.ts +++ b/kafka-node/kafka-node-tests.ts @@ -1,4 +1,3 @@ - import kafka = require('kafka-node'); var basicClient = new kafka.Client('localhost:2181/', 'sendMessage'); From a11c85f84befec97d0dde961cbdbdec99720d223 Mon Sep 17 00:00:00 2001 From: JulienDuf Date: Tue, 31 Jan 2017 19:05:12 -0500 Subject: [PATCH 073/231] Fix wit message --- node-wit/index.d.ts | 7 ++++--- node-wit/node-wit-tests.ts | 4 +--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/node-wit/index.d.ts b/node-wit/index.d.ts index 33f0bd8cb9..decfebe3aa 100644 --- a/node-wit/index.d.ts +++ b/node-wit/index.d.ts @@ -51,14 +51,15 @@ export interface WitOption { } export interface MessageResponseEntity { - confidence: number; - value: string; + confidence?: number; + value?: string; + type?: string; } export interface MessageResponse { msg_id: string; _text: string; - entities: MessageResponseEntity[]; + entities: any; } export declare class Wit { diff --git a/node-wit/node-wit-tests.ts b/node-wit/node-wit-tests.ts index d71c1d0cad..2181383672 100644 --- a/node-wit/node-wit-tests.ts +++ b/node-wit/node-wit-tests.ts @@ -23,9 +23,7 @@ var wit = new Wit({ wit.message("what is the weather in London?", {}).then((res) => { console.log(res._text); - for (let entity of res.entities) { - console.log(entity.value + ": " + entity.confidence * 100 + "%"); - } + console.log(res.entities); }).catch((err) => { console.log(err); From df23346707493018518e7c8cd04d7e6e7dce1f05 Mon Sep 17 00:00:00 2001 From: sreimer15 Date: Tue, 31 Jan 2017 23:05:21 -0800 Subject: [PATCH 074/231] Fixed Type of webNavigation.webnavigationEventFilter --- chrome/index.d.ts | 12 ++++++------ chrome/test/index.ts | 23 +++++++++++++++++++++++ 2 files changed, 29 insertions(+), 6 deletions(-) diff --git a/chrome/index.d.ts b/chrome/index.d.ts index 2822dd421e..cf6c93ec8f 100644 --- a/chrome/index.d.ts +++ b/chrome/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for Chrome extension development // Project: http://developer.chrome.com/extensions/ -// Definitions by: Matthew Kimber , otiai10 , couven92 , RReverser +// Definitions by: Matthew Kimber , otiai10 , couven92 , RReverser , sreimer15 // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -7062,13 +7062,12 @@ declare namespace chrome.webNavigation { transitionQualifiers: string[]; } - interface WebNavigationEventFilter { - /** Conditions that the URL being navigated to must satisfy. The 'schemes' and 'ports' fields of UrlFilter are ignored for this event. */ - url: chrome.events.UrlFilter[]; + interface WebNavigationRequestFilter extends chrome.webRequest.RequestFilter { + /** fulfills the webRequest.RequestFilter interface even though it is under web navigation **/ } interface WebNavigationEvent extends chrome.events.Event<(details: T) => void> { - addListener(callback: (details: T) => void, filters?: WebNavigationEventFilter): void; + addListener(callback: (details: T) => void, filters?: WebNavigationRequestFilter): void; } interface WebNavigationFramedEvent extends WebNavigationEvent {} @@ -7178,7 +7177,8 @@ declare namespace chrome.webRequest { */ types?: string[]; /** A list of URLs or URL patterns. Requests that cannot match any of the URLs will be filtered out. */ - urls: string[]; + urls: string[] | RegExp[] | ""; + /** Optional. */ windowId?: number; } diff --git a/chrome/test/index.ts b/chrome/test/index.ts index 7788397a4c..3074b8a0c3 100644 --- a/chrome/test/index.ts +++ b/chrome/test/index.ts @@ -171,6 +171,29 @@ function catBlock () { ["blocking"]); } +// webNavigation.onBeforeNavigate.addListener example similar api to onBeforeRequest but without extra spec +function beforeRedditNavigation() { + chrome.webNavigation.onBeforeNavigate.addListener(function (requestDetails) { + console.log("URL we want to redirect to: " + requestDetails.url); + // NOTE: This will search for top level frames with the value -1. + if (requestDetails.parentFrameId != -1) { + return; + } + + let url = new URL(requestDetails.url); + let splitUrl = url.hostname.split('.'); + //` Note: Does not cover the XX.co.uk type edge case + let host = (splitUrl[(splitUrl.length -1) - 1]); + + if (host === null) { + return; + } else if (host === "reddit") { + alert("Were you trying to go on reddit, during working hours? :(") + return; + } + },{urls: ["http://*/*"], types: ["image"]}); +} + // contrived settings example function proxySettings() { chrome.proxy.settings.get({ incognito: true }, (details) => { From 9dfd75eb9b212299f397214549b98e3dfe2c7232 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zsolt=20Kov=C3=A1cs?= Date: Wed, 1 Feb 2017 09:15:53 +0100 Subject: [PATCH 075/231] Improve exports, fix header duplication --- dragster/index.d.ts | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/dragster/index.d.ts b/dragster/index.d.ts index 2aa82ddb8b..c02f510084 100644 --- a/dragster/index.d.ts +++ b/dragster/index.d.ts @@ -3,11 +3,6 @@ // Definitions by: Zsolt Kovacs // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// Type definitions for dragster 0.1 -// Project: https://github.com/bensmithett/dragster -// Definitions by: Zsolt Kovacs -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped - declare namespace Dragster { interface Dragster { removeListeners(): void; @@ -20,15 +15,9 @@ declare namespace Dragster { } } -// window.Dragster +// Support through imports. declare var Dragster: Dragster.DragsterStatic; +export = Dragster; -// import Dragster = require('dragster'); -declare module 'dragster' { - interface ExportedDragster extends Dragster.Dragster { - (elem: HTMLElement): Dragster.Dragster; - new (elem: HTMLElement): Dragster.Dragster; - } - var Dragster: ExportedDragster; - export = Dragster; -} \ No newline at end of file +// Support as a global +export as namespace Dragster; \ No newline at end of file From c401e51c1ff6a2bb982323da5cc94903e5702166 Mon Sep 17 00:00:00 2001 From: Bernhard Danecker Date: Wed, 1 Feb 2017 11:42:25 +0100 Subject: [PATCH 076/231] changes according to comment --- jsnlog/index.d.ts | 2 +- jsnlog/tslint.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 jsnlog/tslint.json diff --git a/jsnlog/index.d.ts b/jsnlog/index.d.ts index 012534a7ac..dcf6d10c74 100644 --- a/jsnlog/index.d.ts +++ b/jsnlog/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for JSNLog 2.17.4 +// Type definitions for JSNLog 2.17 // Project: https://github.com/mperdeck/jsnlog.js // Definitions by: Mattijs Perdeck // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped diff --git a/jsnlog/tslint.json b/jsnlog/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/jsnlog/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From fa1585f9a3f7da71b79ff78929f65d88fad2cc08 Mon Sep 17 00:00:00 2001 From: Giedrius Grabauskas Date: Wed, 1 Feb 2017 19:58:01 +0200 Subject: [PATCH 077/231] Fixed ConfigMap object hierarchy Read more here: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/9744 --- systemjs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemjs/index.d.ts b/systemjs/index.d.ts index 428e303442..f759ba3f91 100644 --- a/systemjs/index.d.ts +++ b/systemjs/index.d.ts @@ -29,7 +29,7 @@ declare namespace SystemJSLoader { */ type Transpiler = "plugin-traceur" | "plugin-babel" | "plugin-typescript" | "traceur" | "babel" | "typescript" | boolean; - type ConfigMap = PackageList; + type ConfigMap = PackageList>; type ConfigMeta = PackageList; From c514652a56e9a3bd85ee7dd49a43625240bfc8e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20J=C3=A1come?= Date: Wed, 1 Feb 2017 15:58:29 -0200 Subject: [PATCH 078/231] RethinkDB - Fixed UpdateOptions - Ref: https://www.rethinkdb.com/api/javascript/update/ --- rethinkdb/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rethinkdb/index.d.ts b/rethinkdb/index.d.ts index b07a4e27c6..25c8a182f8 100644 --- a/rethinkdb/index.d.ts +++ b/rethinkdb/index.d.ts @@ -310,9 +310,9 @@ declare module "rethinkdb" { } interface UpdateOptions { - non_atomic: boolean; - durability: string; // 'soft' - return_vals: boolean; // false + nonAtomic: boolean | false; + durability?: 'hard' | 'soft'; + returnChanges?: boolean | false; } interface WriteResult { From 8f90dd420a0a8a55261180cac0606975907f346b Mon Sep 17 00:00:00 2001 From: Giedrius Grabauskas Date: Wed, 1 Feb 2017 20:00:49 +0200 Subject: [PATCH 079/231] Updated systemjs tests Updated SystemJS naming. Added test with ConfigMap hierarchy. --- systemjs/systemjs-tests.ts | 31 ++++++++++++++++++++----------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/systemjs/systemjs-tests.ts b/systemjs/systemjs-tests.ts index 3c2f8ebadc..f24c01b537 100644 --- a/systemjs/systemjs-tests.ts +++ b/systemjs/systemjs-tests.ts @@ -1,14 +1,12 @@ +import SystemJS = require('SystemJSjs'); - -import System = require('systemjs'); - -System.config({ +SystemJS.config({ baseURL: '/app' }); -System.import('main.js'); +SystemJS.import('main.js'); -System.config({ +SystemJS.config({ // or 'traceur' or 'typescript' transpiler: 'babel', // or traceurOptions or typescriptOptions @@ -18,22 +16,33 @@ System.config({ }); -System.config({ +SystemJS.config({ map: { traceur: 'path/to/traceur.js' } }); -System.transpiler = 'traceur'; +SystemJS.config({ + map: { + 'local/package': { + x: 'vendor/x.js' + }, + 'another/package': { + x: 'vendor/y.js' + } + } +}); + +SystemJS.transpiler = 'traceur'; // loads './app.js' from the current directory -System.import('./app.js').then(function (m) { +SystemJS.import('./app.js').then(function (m) { console.log(m); }); -System.import('lodash').then(function (_) { +SystemJS.import('lodash').then(function (_) { console.log(_); }); -const clonedSystemJS = new System.constructor(); +const clonedSystemJSJS = new SystemJS.constructor(); From a05407ca53469224037a2218c10c6ceb01b2a509 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20J=C3=A1come?= Date: Wed, 1 Feb 2017 16:04:36 -0200 Subject: [PATCH 080/231] Revert "RethinkDB - Fixed UpdateOptions - Ref: https://www.rethinkdb.com/api/javascript/update/" This reverts commit c514652a56e9a3bd85ee7dd49a43625240bfc8e4. --- rethinkdb/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rethinkdb/index.d.ts b/rethinkdb/index.d.ts index 25c8a182f8..b07a4e27c6 100644 --- a/rethinkdb/index.d.ts +++ b/rethinkdb/index.d.ts @@ -310,9 +310,9 @@ declare module "rethinkdb" { } interface UpdateOptions { - nonAtomic: boolean | false; - durability?: 'hard' | 'soft'; - returnChanges?: boolean | false; + non_atomic: boolean; + durability: string; // 'soft' + return_vals: boolean; // false } interface WriteResult { From 0dad7332d148b137d467747d5a0098410a036780 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20J=C3=A1come?= Date: Wed, 1 Feb 2017 16:05:07 -0200 Subject: [PATCH 081/231] RethinkDB - Fixed UpdateOptions - Ref: https://www.rethinkdb.com/api/javascript/update/ --- rethinkdb/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rethinkdb/index.d.ts b/rethinkdb/index.d.ts index b07a4e27c6..f01d749c14 100644 --- a/rethinkdb/index.d.ts +++ b/rethinkdb/index.d.ts @@ -310,9 +310,9 @@ declare module "rethinkdb" { } interface UpdateOptions { - non_atomic: boolean; - durability: string; // 'soft' - return_vals: boolean; // false + nonAtomic?: boolean | false; + durability?: 'hard' | 'soft'; + returnChanges?: boolean | false; } interface WriteResult { From 0455fb3c6d3c75981db3c0acdee2e594e106cc7b Mon Sep 17 00:00:00 2001 From: Giedrius Grabauskas Date: Wed, 1 Feb 2017 20:25:38 +0200 Subject: [PATCH 082/231] Fixed refactoring. --- systemjs/systemjs-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemjs/systemjs-tests.ts b/systemjs/systemjs-tests.ts index f24c01b537..53eeba8a2a 100644 --- a/systemjs/systemjs-tests.ts +++ b/systemjs/systemjs-tests.ts @@ -1,4 +1,4 @@ -import SystemJS = require('SystemJSjs'); +import SystemJS = require('Systemjs'); SystemJS.config({ baseURL: '/app' From 16ce688ad7b110afc2ec765f6c264a208bd25a02 Mon Sep 17 00:00:00 2001 From: Giedrius Grabauskas Date: Wed, 1 Feb 2017 20:26:18 +0200 Subject: [PATCH 083/231] Fixed import. --- systemjs/systemjs-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemjs/systemjs-tests.ts b/systemjs/systemjs-tests.ts index 53eeba8a2a..fa0ddbedaf 100644 --- a/systemjs/systemjs-tests.ts +++ b/systemjs/systemjs-tests.ts @@ -1,4 +1,4 @@ -import SystemJS = require('Systemjs'); +import SystemJS = require('systemjs'); SystemJS.config({ baseURL: '/app' From f1b881f1b6688ef4e6dc76f7f2b40d3a0fce579e Mon Sep 17 00:00:00 2001 From: Bernhard Danecker Date: Wed, 1 Feb 2017 19:28:34 +0100 Subject: [PATCH 084/231] allow empty interfaces --- jsnlog/index.d.ts | 4 ++-- jsnlog/tslint.json | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/jsnlog/index.d.ts b/jsnlog/index.d.ts index dcf6d10c74..e252d5cf36 100644 --- a/jsnlog/index.d.ts +++ b/jsnlog/index.d.ts @@ -8,7 +8,7 @@ // http://jsnlog.com // ------------------------------- -/** +/** * Copyright 2016 Mattijs Perdeck. * * This project is licensed under the MIT license. @@ -88,7 +88,7 @@ declare namespace JL { declare function __jsnlog_configure(jsnlog: any): void; - + // Ambient declaration of the JL function itself declare function JL(loggerName?: string): JL.JSNLogLogger; diff --git a/jsnlog/tslint.json b/jsnlog/tslint.json index 377cc837d4..9bc375c06b 100644 --- a/jsnlog/tslint.json +++ b/jsnlog/tslint.json @@ -1 +1,6 @@ -{ "extends": "../tslint.json" } +{ + "extends": "../tslint.json", + "rules": { + "no-empty-interface": false + } +} \ No newline at end of file From 941054480048dd5e2ffd7e0f9190ec00b32bb167 Mon Sep 17 00:00:00 2001 From: Dave Alden Date: Wed, 1 Feb 2017 19:34:58 +0000 Subject: [PATCH 085/231] Update with new methods for cordova.plugins.diagnostic@3.4 --- .../cordova.plugins.diagnostic-tests.ts | 52 +++++++++++ cordova.plugins.diagnostic/index.d.ts | 93 ++++++++++++++++++- 2 files changed, 142 insertions(+), 3 deletions(-) diff --git a/cordova.plugins.diagnostic/cordova.plugins.diagnostic-tests.ts b/cordova.plugins.diagnostic/cordova.plugins.diagnostic-tests.ts index 29451c4753..35c1e03d58 100644 --- a/cordova.plugins.diagnostic/cordova.plugins.diagnostic-tests.ts +++ b/cordova.plugins.diagnostic/cordova.plugins.diagnostic-tests.ts @@ -529,4 +529,56 @@ cordova.plugins.diagnostic.requestAndCheckMotionAuthorization(function(status){ console.log("Motion authorization is " +status); }, function(error){ console.error(error); +}); + +cordova.plugins.diagnostic.isExternalStorageAuthorized(function(authorized){ + console.log("Location authorization is " + (authorized ? "authorized" : "unauthorized")); +}, function(error){ + console.error("The following error occurred: "+error); +}); + +cordova.plugins.diagnostic.getExternalStorageAuthorizationStatus(function(status){ + if(status === cordova.plugins.diagnostic.permissionStatus.GRANTED){ + console.log("External storage authorization allowed"); + } +}, function(error){ + console.error("The following error occurred: "+error); +}); + +cordova.plugins.diagnostic.requestExternalStorageAuthorization(function(status){ + if(status === cordova.plugins.diagnostic.permissionStatus.GRANTED){ + console.log("External storage authorization allowed"); + } +}, function(error){ + console.error(error); +}); + +cordova.plugins.diagnostic.getExternalSdCardDetails(function(details){ + console.log("External SD card details: " + JSON.stringify(details)); +}, function(error){ + console.error(error); +}); + +cordova.plugins.diagnostic.isNFCPresent(function(present){ + console.log("NFC hardware is " + (present ? "present" : "absent")); +}, function(error){ + console.error("The following error occurred: "+error); +}); + +cordova.plugins.diagnostic.isNFCEnabled(function(enabled){ + console.log("NFC is " + (enabled ? "enabled" : "disabled")); +}, function(error){ + console.error("The following error occurred: "+error); +}); + +cordova.plugins.diagnostic.isNFCAvailable(function(available){ + console.log("NFC is " + (available ? "available" : "not available")); +}, function(error){ + console.error("The following error occurred: "+error); +}); + +cordova.plugins.diagnostic.registerNFCStateChangeHandler(function(state){ + if(state === cordova.plugins.diagnostic.NFCState.POWERED_ON){ + console.log("NFC is ready to use"); + } }); \ No newline at end of file diff --git a/cordova.plugins.diagnostic/index.d.ts b/cordova.plugins.diagnostic/index.d.ts index 381b61562e..c4d2daedd9 100644 --- a/cordova.plugins.diagnostic/index.d.ts +++ b/cordova.plugins.diagnostic/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for cordova.plugins.diagnostic v3.3.0 +// Type definitions for cordova.plugins.diagnostic v3.4.x // Project: https://github.com/dpa99c/cordova-diagnostic-plugin // Definitions by: Dave Alden // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -164,8 +164,8 @@ interface Diagnostic { /** * ANDROID and iOS ONLY - * Returns true if the device setting for location is on. - * On Android this returns true if Location Mode is switched on. + * Returns true if the device setting for location is on. + * On Android this returns true if Location Mode is switched on. * On iOS this returns true if Location Services is switched on. * @param successCallback * @param errorCallback @@ -567,6 +567,93 @@ interface Diagnostic { errorCallback: (error: string) => void ) => void; + /** + * ANDROID ONLY + * Checks if the application is authorized to use external storage. + * @param successCallback + * @param errorCallback + */ + isExternalStorageAuthorized?: ( + successCallback: (authorized: boolean) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Returns the authorisation status for runtime permission to use the external storage. + * @param successCallback + * @param errorCallback + */ + getExternalStorageAuthorizationStatus?: ( + successCallback: (status: string) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Requests authorisation for runtime permission to use the external storage. + * @param successCallback + * @param errorCallback + */ + requestExternalStorageAuthorization?: ( + successCallback: (status: string) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Returns details of external SD card(s): absolute path, is writable, free space + * @param successCallback + * @param errorCallback + */ + getExternalSdCardDetails?: ( + successCallback: (status: any) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Checks if NFC hardware is present on device. + * @param successCallback + * @param errorCallback + */ + isNFCPresent?: ( + successCallback: (present: boolean) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Checks if the device setting for NFC is switched on. + * @param successCallback + * @param errorCallback + */ + isNFCEnabled?: ( + successCallback: (present: boolean) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Checks if NFC is available to the app. + * @param successCallback + * @param errorCallback + */ + isNFCAvailable?: ( + successCallback: (present: boolean) => void, + errorCallback: (error: string) => void + ) => void; + + /** + * ANDROID ONLY + * Registers a function to be called when a change in NFC state occurs. + * Pass in a falsey value to de-register the currently registered function. + * @param successCallback + */ + registerNFCStateChangeHandler?: ( + successCallback: (state: string) => void + ) => void; + /** * iOS ONLY * Checks if the application is authorized to use the Camera Roll in Photos app. From 1d9b2876045925ae1996866b2c088275734440ee Mon Sep 17 00:00:00 2001 From: Dave Alden Date: Wed, 1 Feb 2017 19:42:45 +0000 Subject: [PATCH 086/231] Add missing NFC state constant --- cordova.plugins.diagnostic/index.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cordova.plugins.diagnostic/index.d.ts b/cordova.plugins.diagnostic/index.d.ts index c4d2daedd9..5952b41851 100644 --- a/cordova.plugins.diagnostic/index.d.ts +++ b/cordova.plugins.diagnostic/index.d.ts @@ -56,6 +56,14 @@ interface Diagnostic { bluetoothState?: any; + /** + * ANDROID ONLY + * Constants for the various NFC power states. + * @type {Object} + */ + NFCState?: any; + + /** * Checks if app is able to access device location. * @param successCallback From 746b1b660ec4283b1698d25a3f55ec4bf77884ff Mon Sep 17 00:00:00 2001 From: Chad Auld Date: Wed, 1 Feb 2017 13:29:24 -0700 Subject: [PATCH 087/231] Adding buttonStyle to the material-ui Tab property list --- material-ui/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/material-ui/index.d.ts b/material-ui/index.d.ts index 665cdc6a24..59d92bdd3a 100644 --- a/material-ui/index.d.ts +++ b/material-ui/index.d.ts @@ -1735,6 +1735,7 @@ declare namespace __MaterialUI { } interface TabProps extends SharedEnhancedButtonProps { + buttonStyle?: React.CSSProperties; className?: string; icon?: React.ReactNode; label?: React.ReactNode; From cdfe492a002ca86840f926c44f93aeaa33e88f50 Mon Sep 17 00:00:00 2001 From: Homa Wong Date: Wed, 1 Feb 2017 15:57:03 -0800 Subject: [PATCH 088/231] Update index.d.ts --- systemjs/index.d.ts | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/systemjs/index.d.ts b/systemjs/index.d.ts index 428e303442..4dc975ced7 100644 --- a/systemjs/index.d.ts +++ b/systemjs/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for SystemJS 0.19.29 +// Type definitions for SystemJS 0.20.5 // Project: https://github.com/systemjs/systemjs // Definitions by: Ludovic HENIN , Nathan Walker , Giedrius Grabauskas // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -257,7 +257,7 @@ declare namespace SystemJSLoader { /** * This represents the System base class, which can be extended or reinstantiated to create a custom System instance. */ - constructor: new () => System; + constructor: new() => System; /** * Deletes a module from the registry by normalized name. @@ -270,6 +270,11 @@ declare namespace SystemJSLoader { get(moduleName: string): any; get(moduleName: string): TModule; + /** + * Returns a clone of the internal SystemJS configuration in use. + */ + getConfig(): Config + /** * Returns whether a given module exists in the registry by normalized module name. */ @@ -282,6 +287,12 @@ declare namespace SystemJSLoader { import(moduleName: string, normalizedParentName?: string): Promise; import(moduleName: string, normalizedParentName?: string): Promise; + /** + * Given any object, returns true if the object is either a SystemJS module or native JavaScript module object, and false otherwise. + * Useful for interop scenarios. + */ + isModule(object: any): boolean; + /** * Given a plain JavaScript object, return an equivalent Module object. * Useful when writing a custom instantiate hook or using System.set. @@ -320,7 +331,6 @@ declare namespace SystemJSLoader { */ loads: PackageList; } - } declare var SystemJS: SystemJSLoader.System; From 5d8c46b9b96b9740b8f60d8f63ac6669e3299a2c Mon Sep 17 00:00:00 2001 From: Andrew Harward Date: Thu, 2 Feb 2017 11:50:16 +1100 Subject: [PATCH 089/231] Add missing property 'reversedStacks' to Highcharts.AxisOptions --- highcharts/index.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/highcharts/index.d.ts b/highcharts/index.d.ts index 60a9fa15cb..58f2a97a5e 100644 --- a/highcharts/index.d.ts +++ b/highcharts/index.d.ts @@ -701,6 +701,13 @@ declare namespace Highcharts { * @default false */ reversed?: boolean; + /** + * If true, the first series in a stack will be drawn on top in a positive, non-reversed Y axis. If false, the first series is in the base of the stack. + * Only used for yAxis + * @default true + * @since 3.0.10 + */ + reversedStacks?: boolean; /** * Whether to show the axis line and title when the axis has no data. * @default true From bf557832e7a8a776d4979150ebd9ac826f761d9a Mon Sep 17 00:00:00 2001 From: bydooweedoo Date: Thu, 2 Feb 2017 09:15:29 +0800 Subject: [PATCH 090/231] Add key option to watch --- consul/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/consul/index.d.ts b/consul/index.d.ts index b154eeccb3..4d577cd2a1 100644 --- a/consul/index.d.ts +++ b/consul/index.d.ts @@ -951,10 +951,14 @@ declare namespace Consul { } namespace Watch { + + interface WatchOptions { + key?: string; + } interface Options { method: Function; - options?: CommonOptions; + options?: CommonOptions & WatchOptions; } } From 89a1058d4d959568763dd284681cdb5297cdea37 Mon Sep 17 00:00:00 2001 From: Martin Zagora Date: Thu, 2 Feb 2017 14:58:19 +1100 Subject: [PATCH 091/231] add getConfigSources method --- config/config-tests.ts | 5 +++++ config/index.d.ts | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/config/config-tests.ts b/config/config-tests.ts index 1dab917d84..507ecc463c 100644 --- a/config/config-tests.ts +++ b/config/config-tests.ts @@ -29,3 +29,8 @@ var hidden1: any = config.util.makeHidden({}, ""); var hidden2: any = config.util.makeHidden({}, "", ""); var env: string = config.util.getEnv(""); + +var configSources: config.IConfigSource[] = config.util.getConfigSources(); +var configSource: config.IConfigSource = configSources[0]; +var configSourceName: string = configSource.name; +var configSourceOriginal: string | undefined = configSource.original; diff --git a/config/index.d.ts b/config/index.d.ts index 98dda3448a..2f7ee3eaf1 100644 --- a/config/index.d.ts +++ b/config/index.d.ts @@ -34,6 +34,9 @@ declare namespace c { // Return the config for the project based on directory param if not directory then return default one (config). loadFileConfigs(configDir: string): any; + + // Return the sources for the configurations + getConfigSources(): IConfigSource[]; } interface IConfig { @@ -41,6 +44,12 @@ declare namespace c { has(setting: string): boolean; util: IUtil; } + + interface IConfigSource { + name: string; + original?: string; + parsed: any; + } } export = c; From 8978f926e21860801db49d1fd9d3448b121b11e9 Mon Sep 17 00:00:00 2001 From: rhysd Date: Thu, 2 Feb 2017 23:13:10 +0900 Subject: [PATCH 092/231] electron: fix case of property (fix #14407) --- electron/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/index.d.ts b/electron/index.d.ts index 1812c1cc7a..448df1915f 100644 --- a/electron/index.d.ts +++ b/electron/index.d.ts @@ -2779,7 +2779,7 @@ declare namespace Electron { * The protocol scheme in the form ‘scheme:’. Currently supported values are ‘http:’ or ‘https:’. * Defaults to ‘http:’. */ - Protocol?: 'http:' | 'https:'; + protocol?: 'http:' | 'https:'; /** * The server host provided as a concatenation of the hostname and the port number ‘hostname:port’. */ From f3c1ece3d9a1b7ce2daf020c1d54ce30a527647d Mon Sep 17 00:00:00 2001 From: Rodrigo Cabello Date: Thu, 2 Feb 2017 15:39:11 +0100 Subject: [PATCH 093/231] creating hyco-ws definition type file --- hyco-ws/hyco-ws-tests.ts | 20 ++++++++++++++++++++ hyco-ws/index.d.ts | 39 +++++++++++++++++++++++++++++++++++++++ hyco-ws/tsconfig.json | 23 +++++++++++++++++++++++ 3 files changed, 82 insertions(+) create mode 100644 hyco-ws/hyco-ws-tests.ts create mode 100644 hyco-ws/index.d.ts create mode 100644 hyco-ws/tsconfig.json diff --git a/hyco-ws/hyco-ws-tests.ts b/hyco-ws/hyco-ws-tests.ts new file mode 100644 index 0000000000..c44632f784 --- /dev/null +++ b/hyco-ws/hyco-ws-tests.ts @@ -0,0 +1,20 @@ +import * as WebSocketRelay from 'hyco-ws'; + +let wss = WebSocketRelay.createRelayedServer( + { + server: WebSocketRelay.createRelayListenUri('uri_namespace', 'uri_path'), + token: WebSocketRelay.createRelayToken( + 'http://exampleurl.com}', + 'key_rule', + 'key') + }, + (ws: WebSocket) => { + console.log('New connection accepted'); + ws.onmessage = function (event) { + console.log('New message!!'); + }; + }); + +wss.on('error', function (err) { + console.log('error' + err); +}); \ No newline at end of file diff --git a/hyco-ws/index.d.ts b/hyco-ws/index.d.ts new file mode 100644 index 0000000000..0155ea557c --- /dev/null +++ b/hyco-ws/index.d.ts @@ -0,0 +1,39 @@ +// Type definitions for hyco-ws +// Project: https://github.com/Azure/azure-relay-node +// Definitions by: Manuel Rodrigo Cabello +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// +/// + +declare module 'hyco-ws' { + + namespace WebSocketRelay { + + class HybridConnectionWebSocketServer extends NodeJS.EventEmitter { + constructor(options: Object); + close(callback: () => void): void; + listenUri: string; + closeRequested: boolean; + options: Object; + path: string; + clients: Array; + controlChannel: WebSocket; + } + + interface RealyConnection { + + createRelayedServer(options: Object, fn: (ws: WebSocket) => void): HybridConnectionWebSocketServer; + relayedConnect(address: string, fn: () => void): WebSocket; + createRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + createRelayBaseUri(serviceBusNamespace: string, path: string): string; + createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; + createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any); + } + } + + var RelayConnection: WebSocketRelay.RealyConnection; + + export = RelayConnection; +} \ No newline at end of file diff --git a/hyco-ws/tsconfig.json b/hyco-ws/tsconfig.json new file mode 100644 index 0000000000..0d67bbf8da --- /dev/null +++ b/hyco-ws/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": false, + "experimentalDecorators": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "hyco-ws-tests.ts" + ] +} \ No newline at end of file From f777faceb46611006e3022e72e84945f95875b18 Mon Sep 17 00:00:00 2001 From: Rodrigo Cabello Date: Thu, 2 Feb 2017 16:03:29 +0100 Subject: [PATCH 094/231] fixing typings --- hyco-ws/hyco-ws-tests.ts | 7 ++++--- hyco-ws/index.d.ts | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/hyco-ws/hyco-ws-tests.ts b/hyco-ws/hyco-ws-tests.ts index c44632f784..d24aa85c2c 100644 --- a/hyco-ws/hyco-ws-tests.ts +++ b/hyco-ws/hyco-ws-tests.ts @@ -1,6 +1,7 @@ import * as WebSocketRelay from 'hyco-ws'; +import * as WebSocket from 'ws'; -let wss = WebSocketRelay.createRelayedServer( +const wss: any = WebSocketRelay.createRelayedServer( { server: WebSocketRelay.createRelayListenUri('uri_namespace', 'uri_path'), token: WebSocketRelay.createRelayToken( @@ -10,11 +11,11 @@ let wss = WebSocketRelay.createRelayedServer( }, (ws: WebSocket) => { console.log('New connection accepted'); - ws.onmessage = function (event) { + ws.onmessage = (event: any) => { console.log('New message!!'); }; }); -wss.on('error', function (err) { +wss.on('error', (err: any) => { console.log('error' + err); }); \ No newline at end of file diff --git a/hyco-ws/index.d.ts b/hyco-ws/index.d.ts index 0155ea557c..413f883c1e 100644 --- a/hyco-ws/index.d.ts +++ b/hyco-ws/index.d.ts @@ -29,7 +29,7 @@ declare module 'hyco-ws' { appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; createRelayBaseUri(serviceBusNamespace: string, path: string): string; createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; - createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any); + createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; } } From a6cdd96ada223dfe8d6fc859148682467e48191a Mon Sep 17 00:00:00 2001 From: Rodrigo Cabello Date: Thu, 2 Feb 2017 18:59:49 +0100 Subject: [PATCH 095/231] adding web sockets definitions --- hyco-ws/hyco-ws-tests.ts | 8 ++++---- hyco-ws/index.d.ts | 30 ++++++++++++------------------ 2 files changed, 16 insertions(+), 22 deletions(-) diff --git a/hyco-ws/hyco-ws-tests.ts b/hyco-ws/hyco-ws-tests.ts index d24aa85c2c..05b500d81c 100644 --- a/hyco-ws/hyco-ws-tests.ts +++ b/hyco-ws/hyco-ws-tests.ts @@ -1,10 +1,10 @@ -import * as WebSocketRelay from 'hyco-ws'; import * as WebSocket from 'ws'; +import * as AzureRelay from 'hyco-ws'; -const wss: any = WebSocketRelay.createRelayedServer( +const wss = AzureRelay.createRelayedServer( { - server: WebSocketRelay.createRelayListenUri('uri_namespace', 'uri_path'), - token: WebSocketRelay.createRelayToken( + server: AzureRelay.createRelayListenUri('uri_namespace', 'uri_path'), + token: AzureRelay.createRelayToken( 'http://exampleurl.com}', 'key_rule', 'key') diff --git a/hyco-ws/index.d.ts b/hyco-ws/index.d.ts index 413f883c1e..d6b07d4422 100644 --- a/hyco-ws/index.d.ts +++ b/hyco-ws/index.d.ts @@ -3,12 +3,12 @@ // Definitions by: Manuel Rodrigo Cabello // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -/// /// -declare module 'hyco-ws' { - namespace WebSocketRelay { +import * as WebSocket from 'ws'; + +declare namespace hycows { class HybridConnectionWebSocketServer extends NodeJS.EventEmitter { constructor(options: Object); @@ -21,19 +21,13 @@ declare module 'hyco-ws' { controlChannel: WebSocket; } - interface RealyConnection { + export function createRelayedServer(options: Object, fn: (ws: WebSocket) => void): HybridConnectionWebSocketServer; + export function relayedConnect(address: string, fn: () => void): WebSocket; + export function createRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + export function appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + export function createRelayBaseUri(serviceBusNamespace: string, path: string): string; + export function createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; + export function createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; +} - createRelayedServer(options: Object, fn: (ws: WebSocket) => void): HybridConnectionWebSocketServer; - relayedConnect(address: string, fn: () => void): WebSocket; - createRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; - appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; - createRelayBaseUri(serviceBusNamespace: string, path: string): string; - createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; - createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; - } - } - - var RelayConnection: WebSocketRelay.RealyConnection; - - export = RelayConnection; -} \ No newline at end of file +export = hycows; \ No newline at end of file From b58c9581930779aac4b04133fadf29ad4555f652 Mon Sep 17 00:00:00 2001 From: Marco Ramos Date: Thu, 2 Feb 2017 08:55:22 -0500 Subject: [PATCH 096/231] Add missing method 'dropIndex' to Knex --- knex/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/knex/index.d.ts b/knex/index.d.ts index 5196f47eb0..3e7dc595f4 100644 --- a/knex/index.d.ts +++ b/knex/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/tgriesser/knex // Definitions by: Qubo // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// /// @@ -383,6 +384,7 @@ declare namespace Knex { dropForeign(columnNames: string[], foreignKeyName?: string): TableBuilder; dropUnique(columnNames: string[], indexName?: string): TableBuilder; dropPrimary(constraintName?: string): TableBuilder; + dropIndex(columnNames: string[], indexName?: string): TableBuilder; } interface CreateTableBuilder extends TableBuilder { From c830955033d20715f6e9c3a4754dc1138f88243b Mon Sep 17 00:00:00 2001 From: Alexandre Pare Date: Thu, 2 Feb 2017 14:44:13 -0800 Subject: [PATCH 097/231] add typescript version on all files --- react-icon-base/index.d.ts | 1 + react-icons/fa/500px.d.ts | 2 ++ react-icons/fa/adjust.d.ts | 2 ++ react-icons/fa/adn.d.ts | 2 ++ react-icons/fa/align-center.d.ts | 2 ++ react-icons/fa/align-justify.d.ts | 2 ++ react-icons/fa/align-left.d.ts | 2 ++ react-icons/fa/align-right.d.ts | 2 ++ react-icons/fa/amazon.d.ts | 2 ++ react-icons/fa/ambulance.d.ts | 2 ++ react-icons/fa/american-sign-language-interpreting.d.ts | 2 ++ react-icons/fa/anchor.d.ts | 2 ++ react-icons/fa/android.d.ts | 2 ++ react-icons/fa/angellist.d.ts | 2 ++ react-icons/fa/angle-double-down.d.ts | 2 ++ react-icons/fa/angle-double-left.d.ts | 2 ++ react-icons/fa/angle-double-right.d.ts | 2 ++ react-icons/fa/angle-double-up.d.ts | 2 ++ react-icons/fa/angle-down.d.ts | 2 ++ react-icons/fa/angle-left.d.ts | 2 ++ react-icons/fa/angle-right.d.ts | 2 ++ react-icons/fa/angle-up.d.ts | 2 ++ react-icons/fa/apple.d.ts | 2 ++ react-icons/fa/archive.d.ts | 2 ++ react-icons/fa/area-chart.d.ts | 2 ++ react-icons/fa/arrow-circle-down.d.ts | 2 ++ react-icons/fa/arrow-circle-left.d.ts | 2 ++ react-icons/fa/arrow-circle-o-down.d.ts | 2 ++ react-icons/fa/arrow-circle-o-left.d.ts | 2 ++ react-icons/fa/arrow-circle-o-right.d.ts | 2 ++ react-icons/fa/arrow-circle-o-up.d.ts | 2 ++ react-icons/fa/arrow-circle-right.d.ts | 2 ++ react-icons/fa/arrow-circle-up.d.ts | 2 ++ react-icons/fa/arrow-down.d.ts | 2 ++ react-icons/fa/arrow-left.d.ts | 2 ++ react-icons/fa/arrow-right.d.ts | 2 ++ react-icons/fa/arrow-up.d.ts | 2 ++ react-icons/fa/arrows-alt.d.ts | 2 ++ react-icons/fa/arrows-h.d.ts | 2 ++ react-icons/fa/arrows-v.d.ts | 2 ++ react-icons/fa/arrows.d.ts | 2 ++ react-icons/fa/assistive-listening-systems.d.ts | 2 ++ react-icons/fa/asterisk.d.ts | 2 ++ react-icons/fa/at.d.ts | 2 ++ react-icons/fa/audio-description.d.ts | 2 ++ react-icons/fa/automobile.d.ts | 2 ++ react-icons/fa/backward.d.ts | 2 ++ react-icons/fa/balance-scale.d.ts | 2 ++ react-icons/fa/ban.d.ts | 2 ++ react-icons/fa/bank.d.ts | 2 ++ react-icons/fa/bar-chart.d.ts | 2 ++ react-icons/fa/barcode.d.ts | 2 ++ react-icons/fa/bars.d.ts | 2 ++ react-icons/fa/battery-0.d.ts | 2 ++ react-icons/fa/battery-1.d.ts | 2 ++ react-icons/fa/battery-2.d.ts | 2 ++ react-icons/fa/battery-3.d.ts | 2 ++ react-icons/fa/battery-4.d.ts | 2 ++ react-icons/fa/bed.d.ts | 2 ++ react-icons/fa/beer.d.ts | 2 ++ react-icons/fa/behance-square.d.ts | 2 ++ react-icons/fa/behance.d.ts | 2 ++ react-icons/fa/bell-o.d.ts | 2 ++ react-icons/fa/bell-slash-o.d.ts | 2 ++ react-icons/fa/bell-slash.d.ts | 2 ++ react-icons/fa/bell.d.ts | 2 ++ react-icons/fa/bicycle.d.ts | 2 ++ react-icons/fa/binoculars.d.ts | 2 ++ react-icons/fa/birthday-cake.d.ts | 2 ++ react-icons/fa/bitbucket-square.d.ts | 2 ++ react-icons/fa/bitbucket.d.ts | 2 ++ react-icons/fa/bitcoin.d.ts | 2 ++ react-icons/fa/black-tie.d.ts | 2 ++ react-icons/fa/blind.d.ts | 2 ++ react-icons/fa/bluetooth-b.d.ts | 2 ++ react-icons/fa/bluetooth.d.ts | 2 ++ react-icons/fa/bold.d.ts | 2 ++ react-icons/fa/bolt.d.ts | 2 ++ react-icons/fa/bomb.d.ts | 2 ++ react-icons/fa/book.d.ts | 2 ++ react-icons/fa/bookmark-o.d.ts | 2 ++ react-icons/fa/bookmark.d.ts | 2 ++ react-icons/fa/braille.d.ts | 2 ++ react-icons/fa/briefcase.d.ts | 2 ++ react-icons/fa/bug.d.ts | 2 ++ react-icons/fa/building-o.d.ts | 2 ++ react-icons/fa/building.d.ts | 2 ++ react-icons/fa/bullhorn.d.ts | 2 ++ react-icons/fa/bullseye.d.ts | 2 ++ react-icons/fa/bus.d.ts | 2 ++ react-icons/fa/buysellads.d.ts | 2 ++ react-icons/fa/cab.d.ts | 2 ++ react-icons/fa/calculator.d.ts | 2 ++ react-icons/fa/calendar-check-o.d.ts | 2 ++ react-icons/fa/calendar-minus-o.d.ts | 2 ++ react-icons/fa/calendar-o.d.ts | 2 ++ react-icons/fa/calendar-plus-o.d.ts | 2 ++ react-icons/fa/calendar-times-o.d.ts | 2 ++ react-icons/fa/calendar.d.ts | 2 ++ react-icons/fa/camera-retro.d.ts | 2 ++ react-icons/fa/camera.d.ts | 2 ++ react-icons/fa/caret-down.d.ts | 2 ++ react-icons/fa/caret-left.d.ts | 2 ++ react-icons/fa/caret-right.d.ts | 2 ++ react-icons/fa/caret-square-o-down.d.ts | 2 ++ react-icons/fa/caret-square-o-left.d.ts | 2 ++ react-icons/fa/caret-square-o-right.d.ts | 2 ++ react-icons/fa/caret-square-o-up.d.ts | 2 ++ react-icons/fa/caret-up.d.ts | 2 ++ react-icons/fa/cart-arrow-down.d.ts | 2 ++ react-icons/fa/cart-plus.d.ts | 2 ++ react-icons/fa/cc-amex.d.ts | 2 ++ react-icons/fa/cc-diners-club.d.ts | 2 ++ react-icons/fa/cc-discover.d.ts | 2 ++ react-icons/fa/cc-jcb.d.ts | 2 ++ react-icons/fa/cc-mastercard.d.ts | 2 ++ react-icons/fa/cc-paypal.d.ts | 2 ++ react-icons/fa/cc-stripe.d.ts | 2 ++ react-icons/fa/cc-visa.d.ts | 2 ++ react-icons/fa/cc.d.ts | 2 ++ react-icons/fa/certificate.d.ts | 2 ++ react-icons/fa/chain-broken.d.ts | 2 ++ react-icons/fa/chain.d.ts | 2 ++ react-icons/fa/check-circle-o.d.ts | 2 ++ react-icons/fa/check-circle.d.ts | 2 ++ react-icons/fa/check-square-o.d.ts | 2 ++ react-icons/fa/check-square.d.ts | 2 ++ react-icons/fa/check.d.ts | 2 ++ react-icons/fa/chevron-circle-down.d.ts | 2 ++ react-icons/fa/chevron-circle-left.d.ts | 2 ++ react-icons/fa/chevron-circle-right.d.ts | 2 ++ react-icons/fa/chevron-circle-up.d.ts | 2 ++ react-icons/fa/chevron-down.d.ts | 2 ++ react-icons/fa/chevron-left.d.ts | 2 ++ react-icons/fa/chevron-right.d.ts | 2 ++ react-icons/fa/chevron-up.d.ts | 2 ++ react-icons/fa/child.d.ts | 2 ++ react-icons/fa/chrome.d.ts | 2 ++ react-icons/fa/circle-o-notch.d.ts | 2 ++ react-icons/fa/circle-o.d.ts | 2 ++ react-icons/fa/circle-thin.d.ts | 2 ++ react-icons/fa/circle.d.ts | 2 ++ react-icons/fa/clipboard.d.ts | 2 ++ react-icons/fa/clock-o.d.ts | 2 ++ react-icons/fa/clone.d.ts | 2 ++ react-icons/fa/close.d.ts | 2 ++ react-icons/fa/cloud-download.d.ts | 2 ++ react-icons/fa/cloud-upload.d.ts | 2 ++ react-icons/fa/cloud.d.ts | 2 ++ react-icons/fa/cny.d.ts | 2 ++ react-icons/fa/code-fork.d.ts | 2 ++ react-icons/fa/code.d.ts | 2 ++ react-icons/fa/codepen.d.ts | 2 ++ react-icons/fa/codiepie.d.ts | 2 ++ react-icons/fa/coffee.d.ts | 2 ++ react-icons/fa/cog.d.ts | 2 ++ react-icons/fa/cogs.d.ts | 2 ++ react-icons/fa/columns.d.ts | 2 ++ react-icons/fa/comment-o.d.ts | 2 ++ react-icons/fa/comment.d.ts | 2 ++ react-icons/fa/commenting-o.d.ts | 2 ++ react-icons/fa/commenting.d.ts | 2 ++ react-icons/fa/comments-o.d.ts | 2 ++ react-icons/fa/comments.d.ts | 2 ++ react-icons/fa/compass.d.ts | 2 ++ react-icons/fa/compress.d.ts | 2 ++ react-icons/fa/connectdevelop.d.ts | 2 ++ react-icons/fa/contao.d.ts | 2 ++ react-icons/fa/copy.d.ts | 2 ++ react-icons/fa/copyright.d.ts | 2 ++ react-icons/fa/creative-commons.d.ts | 2 ++ react-icons/fa/credit-card-alt.d.ts | 2 ++ react-icons/fa/credit-card.d.ts | 2 ++ react-icons/fa/crop.d.ts | 2 ++ react-icons/fa/crosshairs.d.ts | 2 ++ react-icons/fa/css3.d.ts | 2 ++ react-icons/fa/cube.d.ts | 2 ++ react-icons/fa/cubes.d.ts | 2 ++ react-icons/fa/cut.d.ts | 2 ++ react-icons/fa/cutlery.d.ts | 2 ++ react-icons/fa/dashboard.d.ts | 2 ++ react-icons/fa/dashcube.d.ts | 2 ++ react-icons/fa/database.d.ts | 2 ++ react-icons/fa/deaf.d.ts | 2 ++ react-icons/fa/dedent.d.ts | 2 ++ react-icons/fa/delicious.d.ts | 2 ++ react-icons/fa/desktop.d.ts | 2 ++ react-icons/fa/deviantart.d.ts | 2 ++ react-icons/fa/diamond.d.ts | 2 ++ react-icons/fa/digg.d.ts | 2 ++ react-icons/fa/dollar.d.ts | 2 ++ react-icons/fa/dot-circle-o.d.ts | 2 ++ react-icons/fa/download.d.ts | 2 ++ react-icons/fa/dribbble.d.ts | 2 ++ react-icons/fa/dropbox.d.ts | 2 ++ react-icons/fa/drupal.d.ts | 2 ++ react-icons/fa/edge.d.ts | 2 ++ react-icons/fa/edit.d.ts | 2 ++ react-icons/fa/eject.d.ts | 2 ++ react-icons/fa/ellipsis-h.d.ts | 2 ++ react-icons/fa/ellipsis-v.d.ts | 2 ++ react-icons/fa/empire.d.ts | 2 ++ react-icons/fa/envelope-o.d.ts | 2 ++ react-icons/fa/envelope-square.d.ts | 2 ++ react-icons/fa/envelope.d.ts | 2 ++ react-icons/fa/envira.d.ts | 2 ++ react-icons/fa/eraser.d.ts | 2 ++ react-icons/fa/eur.d.ts | 2 ++ react-icons/fa/exchange.d.ts | 2 ++ react-icons/fa/exclamation-circle.d.ts | 2 ++ react-icons/fa/exclamation-triangle.d.ts | 2 ++ react-icons/fa/exclamation.d.ts | 2 ++ react-icons/fa/expand.d.ts | 2 ++ react-icons/fa/expeditedssl.d.ts | 2 ++ react-icons/fa/external-link-square.d.ts | 2 ++ react-icons/fa/external-link.d.ts | 2 ++ react-icons/fa/eye-slash.d.ts | 2 ++ react-icons/fa/eye.d.ts | 2 ++ react-icons/fa/eyedropper.d.ts | 2 ++ react-icons/fa/facebook-official.d.ts | 2 ++ react-icons/fa/facebook-square.d.ts | 2 ++ react-icons/fa/facebook.d.ts | 2 ++ react-icons/fa/fast-backward.d.ts | 2 ++ react-icons/fa/fast-forward.d.ts | 2 ++ react-icons/fa/fax.d.ts | 2 ++ react-icons/fa/feed.d.ts | 2 ++ react-icons/fa/female.d.ts | 2 ++ react-icons/fa/fighter-jet.d.ts | 2 ++ react-icons/fa/file-archive-o.d.ts | 2 ++ react-icons/fa/file-audio-o.d.ts | 2 ++ react-icons/fa/file-code-o.d.ts | 2 ++ react-icons/fa/file-excel-o.d.ts | 2 ++ react-icons/fa/file-image-o.d.ts | 2 ++ react-icons/fa/file-movie-o.d.ts | 2 ++ react-icons/fa/file-o.d.ts | 2 ++ react-icons/fa/file-pdf-o.d.ts | 2 ++ react-icons/fa/file-powerpoint-o.d.ts | 2 ++ react-icons/fa/file-text-o.d.ts | 2 ++ react-icons/fa/file-text.d.ts | 2 ++ react-icons/fa/file-word-o.d.ts | 2 ++ react-icons/fa/file.d.ts | 2 ++ react-icons/fa/film.d.ts | 2 ++ react-icons/fa/filter.d.ts | 2 ++ react-icons/fa/fire-extinguisher.d.ts | 2 ++ react-icons/fa/fire.d.ts | 2 ++ react-icons/fa/firefox.d.ts | 2 ++ react-icons/fa/flag-checkered.d.ts | 2 ++ react-icons/fa/flag-o.d.ts | 2 ++ react-icons/fa/flag.d.ts | 2 ++ react-icons/fa/flask.d.ts | 2 ++ react-icons/fa/flickr.d.ts | 2 ++ react-icons/fa/floppy-o.d.ts | 2 ++ react-icons/fa/folder-o.d.ts | 2 ++ react-icons/fa/folder-open-o.d.ts | 2 ++ react-icons/fa/folder-open.d.ts | 2 ++ react-icons/fa/folder.d.ts | 2 ++ react-icons/fa/font.d.ts | 2 ++ react-icons/fa/fonticons.d.ts | 2 ++ react-icons/fa/fort-awesome.d.ts | 2 ++ react-icons/fa/forumbee.d.ts | 2 ++ react-icons/fa/forward.d.ts | 2 ++ react-icons/fa/foursquare.d.ts | 2 ++ react-icons/fa/frown-o.d.ts | 2 ++ react-icons/fa/futbol-o.d.ts | 2 ++ react-icons/fa/gamepad.d.ts | 2 ++ react-icons/fa/gavel.d.ts | 2 ++ react-icons/fa/gbp.d.ts | 2 ++ react-icons/fa/genderless.d.ts | 2 ++ react-icons/fa/get-pocket.d.ts | 2 ++ react-icons/fa/gg-circle.d.ts | 2 ++ react-icons/fa/gg.d.ts | 2 ++ react-icons/fa/gift.d.ts | 2 ++ react-icons/fa/git-square.d.ts | 2 ++ react-icons/fa/git.d.ts | 2 ++ react-icons/fa/github-alt.d.ts | 2 ++ react-icons/fa/github-square.d.ts | 2 ++ react-icons/fa/github.d.ts | 2 ++ react-icons/fa/gitlab.d.ts | 2 ++ react-icons/fa/gittip.d.ts | 2 ++ react-icons/fa/glass.d.ts | 2 ++ react-icons/fa/glide-g.d.ts | 2 ++ react-icons/fa/glide.d.ts | 2 ++ react-icons/fa/globe.d.ts | 2 ++ react-icons/fa/google-plus-square.d.ts | 2 ++ react-icons/fa/google-plus.d.ts | 2 ++ react-icons/fa/google-wallet.d.ts | 2 ++ react-icons/fa/google.d.ts | 2 ++ react-icons/fa/graduation-cap.d.ts | 2 ++ react-icons/fa/group.d.ts | 2 ++ react-icons/fa/h-square.d.ts | 2 ++ react-icons/fa/hacker-news.d.ts | 2 ++ react-icons/fa/hand-grab-o.d.ts | 2 ++ react-icons/fa/hand-lizard-o.d.ts | 2 ++ react-icons/fa/hand-o-down.d.ts | 2 ++ react-icons/fa/hand-o-left.d.ts | 2 ++ react-icons/fa/hand-o-right.d.ts | 2 ++ react-icons/fa/hand-o-up.d.ts | 2 ++ react-icons/fa/hand-paper-o.d.ts | 2 ++ react-icons/fa/hand-peace-o.d.ts | 2 ++ react-icons/fa/hand-pointer-o.d.ts | 2 ++ react-icons/fa/hand-scissors-o.d.ts | 2 ++ react-icons/fa/hand-spock-o.d.ts | 2 ++ react-icons/fa/hashtag.d.ts | 2 ++ react-icons/fa/hdd-o.d.ts | 2 ++ react-icons/fa/header.d.ts | 2 ++ react-icons/fa/headphones.d.ts | 2 ++ react-icons/fa/heart-o.d.ts | 2 ++ react-icons/fa/heart.d.ts | 2 ++ react-icons/fa/heartbeat.d.ts | 2 ++ react-icons/fa/history.d.ts | 2 ++ react-icons/fa/home.d.ts | 2 ++ react-icons/fa/hospital-o.d.ts | 2 ++ react-icons/fa/hourglass-1.d.ts | 2 ++ react-icons/fa/hourglass-2.d.ts | 2 ++ react-icons/fa/hourglass-3.d.ts | 2 ++ react-icons/fa/hourglass-o.d.ts | 2 ++ react-icons/fa/hourglass.d.ts | 2 ++ react-icons/fa/houzz.d.ts | 2 ++ react-icons/fa/html5.d.ts | 2 ++ react-icons/fa/i-cursor.d.ts | 2 ++ react-icons/fa/ils.d.ts | 2 ++ react-icons/fa/image.d.ts | 2 ++ react-icons/fa/inbox.d.ts | 2 ++ react-icons/fa/indent.d.ts | 2 ++ react-icons/fa/index.d.ts | 1 + react-icons/fa/industry.d.ts | 2 ++ react-icons/fa/info-circle.d.ts | 2 ++ react-icons/fa/info.d.ts | 2 ++ react-icons/fa/inr.d.ts | 2 ++ react-icons/fa/instagram.d.ts | 2 ++ react-icons/fa/internet-explorer.d.ts | 2 ++ react-icons/fa/intersex.d.ts | 2 ++ react-icons/fa/ioxhost.d.ts | 2 ++ react-icons/fa/italic.d.ts | 2 ++ react-icons/fa/joomla.d.ts | 2 ++ react-icons/fa/jsfiddle.d.ts | 2 ++ react-icons/fa/key.d.ts | 2 ++ react-icons/fa/keyboard-o.d.ts | 2 ++ react-icons/fa/krw.d.ts | 2 ++ react-icons/fa/language.d.ts | 2 ++ react-icons/fa/laptop.d.ts | 2 ++ react-icons/fa/lastfm-square.d.ts | 2 ++ react-icons/fa/lastfm.d.ts | 2 ++ react-icons/fa/leaf.d.ts | 2 ++ react-icons/fa/leanpub.d.ts | 2 ++ react-icons/fa/lemon-o.d.ts | 2 ++ react-icons/fa/level-down.d.ts | 2 ++ react-icons/fa/level-up.d.ts | 2 ++ react-icons/fa/life-bouy.d.ts | 2 ++ react-icons/fa/lightbulb-o.d.ts | 2 ++ react-icons/fa/line-chart.d.ts | 2 ++ react-icons/fa/linkedin-square.d.ts | 2 ++ react-icons/fa/linkedin.d.ts | 2 ++ react-icons/fa/linux.d.ts | 2 ++ react-icons/fa/list-alt.d.ts | 2 ++ react-icons/fa/list-ol.d.ts | 2 ++ react-icons/fa/list-ul.d.ts | 2 ++ react-icons/fa/list.d.ts | 2 ++ react-icons/fa/location-arrow.d.ts | 2 ++ react-icons/fa/lock.d.ts | 2 ++ react-icons/fa/long-arrow-down.d.ts | 2 ++ react-icons/fa/long-arrow-left.d.ts | 2 ++ react-icons/fa/long-arrow-right.d.ts | 2 ++ react-icons/fa/long-arrow-up.d.ts | 2 ++ react-icons/fa/low-vision.d.ts | 2 ++ react-icons/fa/magic.d.ts | 2 ++ react-icons/fa/magnet.d.ts | 2 ++ react-icons/fa/mail-forward.d.ts | 2 ++ react-icons/fa/mail-reply-all.d.ts | 2 ++ react-icons/fa/mail-reply.d.ts | 2 ++ react-icons/fa/male.d.ts | 2 ++ react-icons/fa/map-marker.d.ts | 2 ++ react-icons/fa/map-o.d.ts | 2 ++ react-icons/fa/map-pin.d.ts | 2 ++ react-icons/fa/map-signs.d.ts | 2 ++ react-icons/fa/map.d.ts | 2 ++ react-icons/fa/mars-double.d.ts | 2 ++ react-icons/fa/mars-stroke-h.d.ts | 2 ++ react-icons/fa/mars-stroke-v.d.ts | 2 ++ react-icons/fa/mars-stroke.d.ts | 2 ++ react-icons/fa/mars.d.ts | 2 ++ react-icons/fa/maxcdn.d.ts | 2 ++ react-icons/fa/meanpath.d.ts | 2 ++ react-icons/fa/medium.d.ts | 2 ++ react-icons/fa/medkit.d.ts | 2 ++ react-icons/fa/meh-o.d.ts | 2 ++ react-icons/fa/mercury.d.ts | 2 ++ react-icons/fa/microphone-slash.d.ts | 2 ++ react-icons/fa/microphone.d.ts | 2 ++ react-icons/fa/minus-circle.d.ts | 2 ++ react-icons/fa/minus-square-o.d.ts | 2 ++ react-icons/fa/minus-square.d.ts | 2 ++ react-icons/fa/minus.d.ts | 2 ++ react-icons/fa/mixcloud.d.ts | 2 ++ react-icons/fa/mobile.d.ts | 2 ++ react-icons/fa/modx.d.ts | 2 ++ react-icons/fa/money.d.ts | 2 ++ react-icons/fa/moon-o.d.ts | 2 ++ react-icons/fa/motorcycle.d.ts | 2 ++ react-icons/fa/mouse-pointer.d.ts | 2 ++ react-icons/fa/music.d.ts | 2 ++ react-icons/fa/neuter.d.ts | 2 ++ react-icons/fa/newspaper-o.d.ts | 2 ++ react-icons/fa/object-group.d.ts | 2 ++ react-icons/fa/object-ungroup.d.ts | 2 ++ react-icons/fa/odnoklassniki-square.d.ts | 2 ++ react-icons/fa/odnoklassniki.d.ts | 2 ++ react-icons/fa/opencart.d.ts | 2 ++ react-icons/fa/openid.d.ts | 2 ++ react-icons/fa/opera.d.ts | 2 ++ react-icons/fa/optin-monster.d.ts | 2 ++ react-icons/fa/pagelines.d.ts | 2 ++ react-icons/fa/paint-brush.d.ts | 2 ++ react-icons/fa/paper-plane-o.d.ts | 2 ++ react-icons/fa/paper-plane.d.ts | 2 ++ react-icons/fa/paperclip.d.ts | 2 ++ react-icons/fa/paragraph.d.ts | 2 ++ react-icons/fa/pause-circle-o.d.ts | 2 ++ react-icons/fa/pause-circle.d.ts | 2 ++ react-icons/fa/pause.d.ts | 2 ++ react-icons/fa/paw.d.ts | 2 ++ react-icons/fa/paypal.d.ts | 2 ++ react-icons/fa/pencil-square.d.ts | 2 ++ react-icons/fa/pencil.d.ts | 2 ++ react-icons/fa/percent.d.ts | 2 ++ react-icons/fa/phone-square.d.ts | 2 ++ react-icons/fa/phone.d.ts | 2 ++ react-icons/fa/pie-chart.d.ts | 2 ++ react-icons/fa/pied-piper-alt.d.ts | 2 ++ react-icons/fa/pied-piper.d.ts | 2 ++ react-icons/fa/pinterest-p.d.ts | 2 ++ react-icons/fa/pinterest-square.d.ts | 2 ++ react-icons/fa/pinterest.d.ts | 2 ++ react-icons/fa/plane.d.ts | 2 ++ react-icons/fa/play-circle-o.d.ts | 2 ++ react-icons/fa/play-circle.d.ts | 2 ++ react-icons/fa/play.d.ts | 2 ++ react-icons/fa/plug.d.ts | 2 ++ react-icons/fa/plus-circle.d.ts | 2 ++ react-icons/fa/plus-square-o.d.ts | 2 ++ react-icons/fa/plus-square.d.ts | 2 ++ react-icons/fa/plus.d.ts | 2 ++ react-icons/fa/power-off.d.ts | 2 ++ react-icons/fa/print.d.ts | 2 ++ react-icons/fa/product-hunt.d.ts | 2 ++ react-icons/fa/puzzle-piece.d.ts | 2 ++ react-icons/fa/qq.d.ts | 2 ++ react-icons/fa/qrcode.d.ts | 2 ++ react-icons/fa/question-circle-o.d.ts | 2 ++ react-icons/fa/question-circle.d.ts | 2 ++ react-icons/fa/question.d.ts | 2 ++ react-icons/fa/quote-left.d.ts | 2 ++ react-icons/fa/quote-right.d.ts | 2 ++ react-icons/fa/ra.d.ts | 2 ++ react-icons/fa/random.d.ts | 2 ++ react-icons/fa/recycle.d.ts | 2 ++ react-icons/fa/reddit-alien.d.ts | 2 ++ react-icons/fa/reddit-square.d.ts | 2 ++ react-icons/fa/reddit.d.ts | 2 ++ react-icons/fa/refresh.d.ts | 2 ++ react-icons/fa/registered.d.ts | 2 ++ react-icons/fa/renren.d.ts | 2 ++ react-icons/fa/repeat.d.ts | 2 ++ react-icons/fa/retweet.d.ts | 2 ++ react-icons/fa/road.d.ts | 2 ++ react-icons/fa/rocket.d.ts | 2 ++ react-icons/fa/rotate-left.d.ts | 2 ++ react-icons/fa/rouble.d.ts | 2 ++ react-icons/fa/rss-square.d.ts | 2 ++ react-icons/fa/safari.d.ts | 2 ++ react-icons/fa/scribd.d.ts | 2 ++ react-icons/fa/search-minus.d.ts | 2 ++ react-icons/fa/search-plus.d.ts | 2 ++ react-icons/fa/search.d.ts | 2 ++ react-icons/fa/sellsy.d.ts | 2 ++ react-icons/fa/server.d.ts | 2 ++ react-icons/fa/share-alt-square.d.ts | 2 ++ react-icons/fa/share-alt.d.ts | 2 ++ react-icons/fa/share-square-o.d.ts | 2 ++ react-icons/fa/share-square.d.ts | 2 ++ react-icons/fa/shield.d.ts | 2 ++ react-icons/fa/ship.d.ts | 2 ++ react-icons/fa/shirtsinbulk.d.ts | 2 ++ react-icons/fa/shopping-bag.d.ts | 2 ++ react-icons/fa/shopping-basket.d.ts | 2 ++ react-icons/fa/shopping-cart.d.ts | 2 ++ react-icons/fa/sign-in.d.ts | 2 ++ react-icons/fa/sign-language.d.ts | 2 ++ react-icons/fa/sign-out.d.ts | 2 ++ react-icons/fa/signal.d.ts | 2 ++ react-icons/fa/simplybuilt.d.ts | 2 ++ react-icons/fa/sitemap.d.ts | 2 ++ react-icons/fa/skyatlas.d.ts | 2 ++ react-icons/fa/skype.d.ts | 2 ++ react-icons/fa/slack.d.ts | 2 ++ react-icons/fa/sliders.d.ts | 2 ++ react-icons/fa/slideshare.d.ts | 2 ++ react-icons/fa/smile-o.d.ts | 2 ++ react-icons/fa/snapchat-ghost.d.ts | 2 ++ react-icons/fa/snapchat-square.d.ts | 2 ++ react-icons/fa/snapchat.d.ts | 2 ++ react-icons/fa/sort-alpha-asc.d.ts | 2 ++ react-icons/fa/sort-alpha-desc.d.ts | 2 ++ react-icons/fa/sort-amount-asc.d.ts | 2 ++ react-icons/fa/sort-amount-desc.d.ts | 2 ++ react-icons/fa/sort-asc.d.ts | 2 ++ react-icons/fa/sort-desc.d.ts | 2 ++ react-icons/fa/sort-numeric-asc.d.ts | 2 ++ react-icons/fa/sort-numeric-desc.d.ts | 2 ++ react-icons/fa/sort.d.ts | 2 ++ react-icons/fa/soundcloud.d.ts | 2 ++ react-icons/fa/space-shuttle.d.ts | 2 ++ react-icons/fa/spinner.d.ts | 2 ++ react-icons/fa/spoon.d.ts | 2 ++ react-icons/fa/spotify.d.ts | 2 ++ react-icons/fa/square-o.d.ts | 2 ++ react-icons/fa/square.d.ts | 2 ++ react-icons/fa/stack-exchange.d.ts | 2 ++ react-icons/fa/stack-overflow.d.ts | 2 ++ react-icons/fa/star-half-empty.d.ts | 2 ++ react-icons/fa/star-half.d.ts | 2 ++ react-icons/fa/star-o.d.ts | 2 ++ react-icons/fa/star.d.ts | 2 ++ react-icons/fa/steam-square.d.ts | 2 ++ react-icons/fa/steam.d.ts | 2 ++ react-icons/fa/step-backward.d.ts | 2 ++ react-icons/fa/step-forward.d.ts | 2 ++ react-icons/fa/stethoscope.d.ts | 2 ++ react-icons/fa/sticky-note-o.d.ts | 2 ++ react-icons/fa/sticky-note.d.ts | 2 ++ react-icons/fa/stop-circle-o.d.ts | 2 ++ react-icons/fa/stop-circle.d.ts | 2 ++ react-icons/fa/stop.d.ts | 2 ++ react-icons/fa/street-view.d.ts | 2 ++ react-icons/fa/strikethrough.d.ts | 2 ++ react-icons/fa/stumbleupon-circle.d.ts | 2 ++ react-icons/fa/stumbleupon.d.ts | 2 ++ react-icons/fa/subscript.d.ts | 2 ++ react-icons/fa/subway.d.ts | 2 ++ react-icons/fa/suitcase.d.ts | 2 ++ react-icons/fa/sun-o.d.ts | 2 ++ react-icons/fa/superscript.d.ts | 2 ++ react-icons/fa/table.d.ts | 2 ++ react-icons/fa/tablet.d.ts | 2 ++ react-icons/fa/tag.d.ts | 2 ++ react-icons/fa/tags.d.ts | 2 ++ react-icons/fa/tasks.d.ts | 2 ++ react-icons/fa/television.d.ts | 2 ++ react-icons/fa/tencent-weibo.d.ts | 2 ++ react-icons/fa/terminal.d.ts | 2 ++ react-icons/fa/text-height.d.ts | 2 ++ react-icons/fa/text-width.d.ts | 2 ++ react-icons/fa/th-large.d.ts | 2 ++ react-icons/fa/th-list.d.ts | 2 ++ react-icons/fa/th.d.ts | 2 ++ react-icons/fa/thumb-tack.d.ts | 2 ++ react-icons/fa/thumbs-down.d.ts | 2 ++ react-icons/fa/thumbs-o-down.d.ts | 2 ++ react-icons/fa/thumbs-o-up.d.ts | 2 ++ react-icons/fa/thumbs-up.d.ts | 2 ++ react-icons/fa/ticket.d.ts | 2 ++ react-icons/fa/times-circle-o.d.ts | 2 ++ react-icons/fa/times-circle.d.ts | 2 ++ react-icons/fa/tint.d.ts | 2 ++ react-icons/fa/toggle-off.d.ts | 2 ++ react-icons/fa/toggle-on.d.ts | 2 ++ react-icons/fa/trademark.d.ts | 2 ++ react-icons/fa/train.d.ts | 2 ++ react-icons/fa/transgender-alt.d.ts | 2 ++ react-icons/fa/trash-o.d.ts | 2 ++ react-icons/fa/trash.d.ts | 2 ++ react-icons/fa/tree.d.ts | 2 ++ react-icons/fa/trello.d.ts | 2 ++ react-icons/fa/tripadvisor.d.ts | 2 ++ react-icons/fa/trophy.d.ts | 2 ++ react-icons/fa/truck.d.ts | 2 ++ react-icons/fa/try.d.ts | 2 ++ react-icons/fa/tty.d.ts | 2 ++ react-icons/fa/tumblr-square.d.ts | 2 ++ react-icons/fa/tumblr.d.ts | 2 ++ react-icons/fa/twitch.d.ts | 2 ++ react-icons/fa/twitter-square.d.ts | 2 ++ react-icons/fa/twitter.d.ts | 2 ++ react-icons/fa/umbrella.d.ts | 2 ++ react-icons/fa/underline.d.ts | 2 ++ react-icons/fa/universal-access.d.ts | 2 ++ react-icons/fa/unlock-alt.d.ts | 2 ++ react-icons/fa/unlock.d.ts | 2 ++ react-icons/fa/upload.d.ts | 2 ++ react-icons/fa/usb.d.ts | 2 ++ react-icons/fa/user-md.d.ts | 2 ++ react-icons/fa/user-plus.d.ts | 2 ++ react-icons/fa/user-secret.d.ts | 2 ++ react-icons/fa/user-times.d.ts | 2 ++ react-icons/fa/user.d.ts | 2 ++ react-icons/fa/venus-double.d.ts | 2 ++ react-icons/fa/venus-mars.d.ts | 2 ++ react-icons/fa/venus.d.ts | 2 ++ react-icons/fa/viacoin.d.ts | 2 ++ react-icons/fa/viadeo-square.d.ts | 2 ++ react-icons/fa/viadeo.d.ts | 2 ++ react-icons/fa/video-camera.d.ts | 2 ++ react-icons/fa/vimeo-square.d.ts | 2 ++ react-icons/fa/vimeo.d.ts | 2 ++ react-icons/fa/vine.d.ts | 2 ++ react-icons/fa/vk.d.ts | 2 ++ react-icons/fa/volume-control-phone.d.ts | 2 ++ react-icons/fa/volume-down.d.ts | 2 ++ react-icons/fa/volume-off.d.ts | 2 ++ react-icons/fa/volume-up.d.ts | 2 ++ react-icons/fa/wechat.d.ts | 2 ++ react-icons/fa/weibo.d.ts | 2 ++ react-icons/fa/whatsapp.d.ts | 2 ++ react-icons/fa/wheelchair-alt.d.ts | 2 ++ react-icons/fa/wheelchair.d.ts | 2 ++ react-icons/fa/wifi.d.ts | 2 ++ react-icons/fa/wikipedia-w.d.ts | 2 ++ react-icons/fa/windows.d.ts | 2 ++ react-icons/fa/wordpress.d.ts | 2 ++ react-icons/fa/wpbeginner.d.ts | 2 ++ react-icons/fa/wpforms.d.ts | 2 ++ react-icons/fa/wrench.d.ts | 2 ++ react-icons/fa/xing-square.d.ts | 2 ++ react-icons/fa/xing.d.ts | 2 ++ react-icons/fa/y-combinator.d.ts | 2 ++ react-icons/fa/yahoo.d.ts | 2 ++ react-icons/fa/yelp.d.ts | 2 ++ react-icons/fa/youtube-play.d.ts | 2 ++ react-icons/fa/youtube-square.d.ts | 2 ++ react-icons/fa/youtube.d.ts | 2 ++ react-icons/go/alert.d.ts | 2 ++ react-icons/go/alignment-align.d.ts | 2 ++ react-icons/go/alignment-aligned-to.d.ts | 2 ++ react-icons/go/alignment-unalign.d.ts | 2 ++ react-icons/go/arrow-down.d.ts | 2 ++ react-icons/go/arrow-left.d.ts | 2 ++ react-icons/go/arrow-right.d.ts | 2 ++ react-icons/go/arrow-small-down.d.ts | 2 ++ react-icons/go/arrow-small-left.d.ts | 2 ++ react-icons/go/arrow-small-right.d.ts | 2 ++ react-icons/go/arrow-small-up.d.ts | 2 ++ react-icons/go/arrow-up.d.ts | 2 ++ react-icons/go/beer.d.ts | 2 ++ react-icons/go/book.d.ts | 2 ++ react-icons/go/bookmark.d.ts | 2 ++ react-icons/go/briefcase.d.ts | 2 ++ react-icons/go/broadcast.d.ts | 2 ++ react-icons/go/browser.d.ts | 2 ++ react-icons/go/bug.d.ts | 2 ++ react-icons/go/calendar.d.ts | 2 ++ react-icons/go/check.d.ts | 2 ++ react-icons/go/checklist.d.ts | 2 ++ react-icons/go/chevron-down.d.ts | 2 ++ react-icons/go/chevron-left.d.ts | 2 ++ react-icons/go/chevron-right.d.ts | 2 ++ react-icons/go/chevron-up.d.ts | 2 ++ react-icons/go/circle-slash.d.ts | 2 ++ react-icons/go/circuit-board.d.ts | 2 ++ react-icons/go/clippy.d.ts | 2 ++ react-icons/go/clock.d.ts | 2 ++ react-icons/go/cloud-download.d.ts | 2 ++ react-icons/go/cloud-upload.d.ts | 2 ++ react-icons/go/code.d.ts | 2 ++ react-icons/go/color-mode.d.ts | 2 ++ react-icons/go/comment-discussion.d.ts | 2 ++ react-icons/go/comment.d.ts | 2 ++ react-icons/go/credit-card.d.ts | 2 ++ react-icons/go/dash.d.ts | 2 ++ react-icons/go/dashboard.d.ts | 2 ++ react-icons/go/database.d.ts | 2 ++ react-icons/go/device-camera-video.d.ts | 2 ++ react-icons/go/device-camera.d.ts | 2 ++ react-icons/go/device-desktop.d.ts | 2 ++ react-icons/go/device-mobile.d.ts | 2 ++ react-icons/go/diff-added.d.ts | 2 ++ react-icons/go/diff-ignored.d.ts | 2 ++ react-icons/go/diff-modified.d.ts | 2 ++ react-icons/go/diff-removed.d.ts | 2 ++ react-icons/go/diff-renamed.d.ts | 2 ++ react-icons/go/diff.d.ts | 2 ++ react-icons/go/ellipsis.d.ts | 2 ++ react-icons/go/eye.d.ts | 2 ++ react-icons/go/file-binary.d.ts | 2 ++ react-icons/go/file-code.d.ts | 2 ++ react-icons/go/file-directory.d.ts | 2 ++ react-icons/go/file-media.d.ts | 2 ++ react-icons/go/file-pdf.d.ts | 2 ++ react-icons/go/file-submodule.d.ts | 2 ++ react-icons/go/file-symlink-directory.d.ts | 2 ++ react-icons/go/file-symlink-file.d.ts | 2 ++ react-icons/go/file-text.d.ts | 2 ++ react-icons/go/file-zip.d.ts | 2 ++ react-icons/go/flame.d.ts | 2 ++ react-icons/go/fold.d.ts | 2 ++ react-icons/go/gear.d.ts | 2 ++ react-icons/go/gift.d.ts | 2 ++ react-icons/go/gist-secret.d.ts | 2 ++ react-icons/go/gist.d.ts | 2 ++ react-icons/go/git-branch.d.ts | 2 ++ react-icons/go/git-commit.d.ts | 2 ++ react-icons/go/git-compare.d.ts | 2 ++ react-icons/go/git-merge.d.ts | 2 ++ react-icons/go/git-pull-request.d.ts | 2 ++ react-icons/go/globe.d.ts | 2 ++ react-icons/go/graph.d.ts | 2 ++ react-icons/go/heart.d.ts | 2 ++ react-icons/go/history.d.ts | 2 ++ react-icons/go/home.d.ts | 2 ++ react-icons/go/horizontal-rule.d.ts | 2 ++ react-icons/go/hourglass.d.ts | 2 ++ react-icons/go/hubot.d.ts | 2 ++ react-icons/go/inbox.d.ts | 2 ++ react-icons/go/index.d.ts | 1 + react-icons/go/info.d.ts | 2 ++ react-icons/go/issue-closed.d.ts | 2 ++ react-icons/go/issue-opened.d.ts | 2 ++ react-icons/go/issue-reopened.d.ts | 2 ++ react-icons/go/jersey.d.ts | 2 ++ react-icons/go/jump-down.d.ts | 2 ++ react-icons/go/jump-left.d.ts | 2 ++ react-icons/go/jump-right.d.ts | 2 ++ react-icons/go/jump-up.d.ts | 2 ++ react-icons/go/key.d.ts | 2 ++ react-icons/go/keyboard.d.ts | 2 ++ react-icons/go/law.d.ts | 2 ++ react-icons/go/light-bulb.d.ts | 2 ++ react-icons/go/link-external.d.ts | 2 ++ react-icons/go/link.d.ts | 2 ++ react-icons/go/list-ordered.d.ts | 2 ++ react-icons/go/list-unordered.d.ts | 2 ++ react-icons/go/location.d.ts | 2 ++ react-icons/go/lock.d.ts | 2 ++ react-icons/go/logo-github.d.ts | 2 ++ react-icons/go/mail-read.d.ts | 2 ++ react-icons/go/mail-reply.d.ts | 2 ++ react-icons/go/mail.d.ts | 2 ++ react-icons/go/mark-github.d.ts | 2 ++ react-icons/go/markdown.d.ts | 2 ++ react-icons/go/megaphone.d.ts | 2 ++ react-icons/go/mention.d.ts | 2 ++ react-icons/go/microscope.d.ts | 2 ++ react-icons/go/milestone.d.ts | 2 ++ react-icons/go/mirror.d.ts | 2 ++ react-icons/go/mortar-board.d.ts | 2 ++ react-icons/go/move-down.d.ts | 2 ++ react-icons/go/move-left.d.ts | 2 ++ react-icons/go/move-right.d.ts | 2 ++ react-icons/go/move-up.d.ts | 2 ++ react-icons/go/mute.d.ts | 2 ++ react-icons/go/no-newline.d.ts | 2 ++ react-icons/go/octoface.d.ts | 2 ++ react-icons/go/organization.d.ts | 2 ++ react-icons/go/package.d.ts | 2 ++ react-icons/go/paintcan.d.ts | 2 ++ react-icons/go/pencil.d.ts | 2 ++ react-icons/go/person.d.ts | 2 ++ react-icons/go/pin.d.ts | 2 ++ react-icons/go/playback-fast-forward.d.ts | 2 ++ react-icons/go/playback-pause.d.ts | 2 ++ react-icons/go/playback-play.d.ts | 2 ++ react-icons/go/playback-rewind.d.ts | 2 ++ react-icons/go/plug.d.ts | 2 ++ react-icons/go/plus.d.ts | 2 ++ react-icons/go/podium.d.ts | 2 ++ react-icons/go/primitive-dot.d.ts | 2 ++ react-icons/go/primitive-square.d.ts | 2 ++ react-icons/go/pulse.d.ts | 2 ++ react-icons/go/puzzle.d.ts | 2 ++ react-icons/go/question.d.ts | 2 ++ react-icons/go/quote.d.ts | 2 ++ react-icons/go/radio-tower.d.ts | 2 ++ react-icons/go/repo-clone.d.ts | 2 ++ react-icons/go/repo-force-push.d.ts | 2 ++ react-icons/go/repo-forked.d.ts | 2 ++ react-icons/go/repo-pull.d.ts | 2 ++ react-icons/go/repo-push.d.ts | 2 ++ react-icons/go/repo.d.ts | 2 ++ react-icons/go/rocket.d.ts | 2 ++ react-icons/go/rss.d.ts | 2 ++ react-icons/go/ruby.d.ts | 2 ++ react-icons/go/screen-full.d.ts | 2 ++ react-icons/go/screen-normal.d.ts | 2 ++ react-icons/go/search.d.ts | 2 ++ react-icons/go/server.d.ts | 2 ++ react-icons/go/settings.d.ts | 2 ++ react-icons/go/sign-in.d.ts | 2 ++ react-icons/go/sign-out.d.ts | 2 ++ react-icons/go/split.d.ts | 2 ++ react-icons/go/squirrel.d.ts | 2 ++ react-icons/go/star.d.ts | 2 ++ react-icons/go/steps.d.ts | 2 ++ react-icons/go/stop.d.ts | 2 ++ react-icons/go/sync.d.ts | 2 ++ react-icons/go/tag.d.ts | 2 ++ react-icons/go/telescope.d.ts | 2 ++ react-icons/go/terminal.d.ts | 2 ++ react-icons/go/three-bars.d.ts | 2 ++ react-icons/go/tools.d.ts | 2 ++ react-icons/go/trashcan.d.ts | 2 ++ react-icons/go/triangle-down.d.ts | 2 ++ react-icons/go/triangle-left.d.ts | 2 ++ react-icons/go/triangle-right.d.ts | 2 ++ react-icons/go/triangle-up.d.ts | 2 ++ react-icons/go/unfold.d.ts | 2 ++ react-icons/go/unmute.d.ts | 2 ++ react-icons/go/versions.d.ts | 2 ++ react-icons/go/x.d.ts | 2 ++ react-icons/go/zap.d.ts | 2 ++ react-icons/index.d.ts | 3 ++- react-icons/io/alert-circled.d.ts | 2 ++ react-icons/io/alert.d.ts | 2 ++ react-icons/io/android-add-circle.d.ts | 2 ++ react-icons/io/android-add.d.ts | 2 ++ react-icons/io/android-alarm-clock.d.ts | 2 ++ react-icons/io/android-alert.d.ts | 2 ++ react-icons/io/android-apps.d.ts | 2 ++ react-icons/io/android-archive.d.ts | 2 ++ react-icons/io/android-arrow-back.d.ts | 2 ++ react-icons/io/android-arrow-down.d.ts | 2 ++ react-icons/io/android-arrow-dropdown-circle.d.ts | 2 ++ react-icons/io/android-arrow-dropdown.d.ts | 2 ++ react-icons/io/android-arrow-dropleft-circle.d.ts | 2 ++ react-icons/io/android-arrow-dropleft.d.ts | 2 ++ react-icons/io/android-arrow-dropright-circle.d.ts | 2 ++ react-icons/io/android-arrow-dropright.d.ts | 2 ++ react-icons/io/android-arrow-dropup-circle.d.ts | 2 ++ react-icons/io/android-arrow-dropup.d.ts | 2 ++ react-icons/io/android-arrow-forward.d.ts | 2 ++ react-icons/io/android-arrow-up.d.ts | 2 ++ react-icons/io/android-attach.d.ts | 2 ++ react-icons/io/android-bar.d.ts | 2 ++ react-icons/io/android-bicycle.d.ts | 2 ++ react-icons/io/android-boat.d.ts | 2 ++ react-icons/io/android-bookmark.d.ts | 2 ++ react-icons/io/android-bulb.d.ts | 2 ++ react-icons/io/android-bus.d.ts | 2 ++ react-icons/io/android-calendar.d.ts | 2 ++ react-icons/io/android-call.d.ts | 2 ++ react-icons/io/android-camera.d.ts | 2 ++ react-icons/io/android-cancel.d.ts | 2 ++ react-icons/io/android-car.d.ts | 2 ++ react-icons/io/android-cart.d.ts | 2 ++ react-icons/io/android-chat.d.ts | 2 ++ react-icons/io/android-checkbox-blank.d.ts | 2 ++ react-icons/io/android-checkbox-outline-blank.d.ts | 2 ++ react-icons/io/android-checkbox-outline.d.ts | 2 ++ react-icons/io/android-checkbox.d.ts | 2 ++ react-icons/io/android-checkmark-circle.d.ts | 2 ++ react-icons/io/android-clipboard.d.ts | 2 ++ react-icons/io/android-close.d.ts | 2 ++ react-icons/io/android-cloud-circle.d.ts | 2 ++ react-icons/io/android-cloud-done.d.ts | 2 ++ react-icons/io/android-cloud-outline.d.ts | 2 ++ react-icons/io/android-cloud.d.ts | 2 ++ react-icons/io/android-color-palette.d.ts | 2 ++ react-icons/io/android-compass.d.ts | 2 ++ react-icons/io/android-contact.d.ts | 2 ++ react-icons/io/android-contacts.d.ts | 2 ++ react-icons/io/android-contract.d.ts | 2 ++ react-icons/io/android-create.d.ts | 2 ++ react-icons/io/android-delete.d.ts | 2 ++ react-icons/io/android-desktop.d.ts | 2 ++ react-icons/io/android-document.d.ts | 2 ++ react-icons/io/android-done-all.d.ts | 2 ++ react-icons/io/android-done.d.ts | 2 ++ react-icons/io/android-download.d.ts | 2 ++ react-icons/io/android-drafts.d.ts | 2 ++ react-icons/io/android-exit.d.ts | 2 ++ react-icons/io/android-expand.d.ts | 2 ++ react-icons/io/android-favorite-outline.d.ts | 2 ++ react-icons/io/android-favorite.d.ts | 2 ++ react-icons/io/android-film.d.ts | 2 ++ react-icons/io/android-folder-open.d.ts | 2 ++ react-icons/io/android-folder.d.ts | 2 ++ react-icons/io/android-funnel.d.ts | 2 ++ react-icons/io/android-globe.d.ts | 2 ++ react-icons/io/android-hand.d.ts | 2 ++ react-icons/io/android-hangout.d.ts | 2 ++ react-icons/io/android-happy.d.ts | 2 ++ react-icons/io/android-home.d.ts | 2 ++ react-icons/io/android-image.d.ts | 2 ++ react-icons/io/android-laptop.d.ts | 2 ++ react-icons/io/android-list.d.ts | 2 ++ react-icons/io/android-locate.d.ts | 2 ++ react-icons/io/android-lock.d.ts | 2 ++ react-icons/io/android-mail.d.ts | 2 ++ react-icons/io/android-map.d.ts | 2 ++ react-icons/io/android-menu.d.ts | 2 ++ react-icons/io/android-microphone-off.d.ts | 2 ++ react-icons/io/android-microphone.d.ts | 2 ++ react-icons/io/android-more-horizontal.d.ts | 2 ++ react-icons/io/android-more-vertical.d.ts | 2 ++ react-icons/io/android-navigate.d.ts | 2 ++ react-icons/io/android-notifications-none.d.ts | 2 ++ react-icons/io/android-notifications-off.d.ts | 2 ++ react-icons/io/android-notifications.d.ts | 2 ++ react-icons/io/android-open.d.ts | 2 ++ react-icons/io/android-options.d.ts | 2 ++ react-icons/io/android-people.d.ts | 2 ++ react-icons/io/android-person-add.d.ts | 2 ++ react-icons/io/android-person.d.ts | 2 ++ react-icons/io/android-phone-landscape.d.ts | 2 ++ react-icons/io/android-phone-portrait.d.ts | 2 ++ react-icons/io/android-pin.d.ts | 2 ++ react-icons/io/android-plane.d.ts | 2 ++ react-icons/io/android-playstore.d.ts | 2 ++ react-icons/io/android-print.d.ts | 2 ++ react-icons/io/android-radio-button-off.d.ts | 2 ++ react-icons/io/android-radio-button-on.d.ts | 2 ++ react-icons/io/android-refresh.d.ts | 2 ++ react-icons/io/android-remove-circle.d.ts | 2 ++ react-icons/io/android-remove.d.ts | 2 ++ react-icons/io/android-restaurant.d.ts | 2 ++ react-icons/io/android-sad.d.ts | 2 ++ react-icons/io/android-search.d.ts | 2 ++ react-icons/io/android-send.d.ts | 2 ++ react-icons/io/android-settings.d.ts | 2 ++ react-icons/io/android-share-alt.d.ts | 2 ++ react-icons/io/android-share.d.ts | 2 ++ react-icons/io/android-star-half.d.ts | 2 ++ react-icons/io/android-star-outline.d.ts | 2 ++ react-icons/io/android-star.d.ts | 2 ++ react-icons/io/android-stopwatch.d.ts | 2 ++ react-icons/io/android-subway.d.ts | 2 ++ react-icons/io/android-sunny.d.ts | 2 ++ react-icons/io/android-sync.d.ts | 2 ++ react-icons/io/android-textsms.d.ts | 2 ++ react-icons/io/android-time.d.ts | 2 ++ react-icons/io/android-train.d.ts | 2 ++ react-icons/io/android-unlock.d.ts | 2 ++ react-icons/io/android-upload.d.ts | 2 ++ react-icons/io/android-volume-down.d.ts | 2 ++ react-icons/io/android-volume-mute.d.ts | 2 ++ react-icons/io/android-volume-off.d.ts | 2 ++ react-icons/io/android-volume-up.d.ts | 2 ++ react-icons/io/android-walk.d.ts | 2 ++ react-icons/io/android-warning.d.ts | 2 ++ react-icons/io/android-watch.d.ts | 2 ++ react-icons/io/android-wifi.d.ts | 2 ++ react-icons/io/aperture.d.ts | 2 ++ react-icons/io/archive.d.ts | 2 ++ react-icons/io/arrow-down-a.d.ts | 2 ++ react-icons/io/arrow-down-b.d.ts | 2 ++ react-icons/io/arrow-down-c.d.ts | 2 ++ react-icons/io/arrow-expand.d.ts | 2 ++ react-icons/io/arrow-graph-down-left.d.ts | 2 ++ react-icons/io/arrow-graph-down-right.d.ts | 2 ++ react-icons/io/arrow-graph-up-left.d.ts | 2 ++ react-icons/io/arrow-graph-up-right.d.ts | 2 ++ react-icons/io/arrow-left-a.d.ts | 2 ++ react-icons/io/arrow-left-b.d.ts | 2 ++ react-icons/io/arrow-left-c.d.ts | 2 ++ react-icons/io/arrow-move.d.ts | 2 ++ react-icons/io/arrow-resize.d.ts | 2 ++ react-icons/io/arrow-return-left.d.ts | 2 ++ react-icons/io/arrow-return-right.d.ts | 2 ++ react-icons/io/arrow-right-a.d.ts | 2 ++ react-icons/io/arrow-right-b.d.ts | 2 ++ react-icons/io/arrow-right-c.d.ts | 2 ++ react-icons/io/arrow-shrink.d.ts | 2 ++ react-icons/io/arrow-swap.d.ts | 2 ++ react-icons/io/arrow-up-a.d.ts | 2 ++ react-icons/io/arrow-up-b.d.ts | 2 ++ react-icons/io/arrow-up-c.d.ts | 2 ++ react-icons/io/asterisk.d.ts | 2 ++ react-icons/io/at.d.ts | 2 ++ react-icons/io/backspace-outline.d.ts | 2 ++ react-icons/io/backspace.d.ts | 2 ++ react-icons/io/bag.d.ts | 2 ++ react-icons/io/battery-charging.d.ts | 2 ++ react-icons/io/battery-empty.d.ts | 2 ++ react-icons/io/battery-full.d.ts | 2 ++ react-icons/io/battery-half.d.ts | 2 ++ react-icons/io/battery-low.d.ts | 2 ++ react-icons/io/beaker.d.ts | 2 ++ react-icons/io/beer.d.ts | 2 ++ react-icons/io/bluetooth.d.ts | 2 ++ react-icons/io/bonfire.d.ts | 2 ++ react-icons/io/bookmark.d.ts | 2 ++ react-icons/io/bowtie.d.ts | 2 ++ react-icons/io/briefcase.d.ts | 2 ++ react-icons/io/bug.d.ts | 2 ++ react-icons/io/calculator.d.ts | 2 ++ react-icons/io/calendar.d.ts | 2 ++ react-icons/io/camera.d.ts | 2 ++ react-icons/io/card.d.ts | 2 ++ react-icons/io/cash.d.ts | 2 ++ react-icons/io/chatbox-working.d.ts | 2 ++ react-icons/io/chatbox.d.ts | 2 ++ react-icons/io/chatboxes.d.ts | 2 ++ react-icons/io/chatbubble-working.d.ts | 2 ++ react-icons/io/chatbubble.d.ts | 2 ++ react-icons/io/chatbubbles.d.ts | 2 ++ react-icons/io/checkmark-circled.d.ts | 2 ++ react-icons/io/checkmark-round.d.ts | 2 ++ react-icons/io/checkmark.d.ts | 2 ++ react-icons/io/chevron-down.d.ts | 2 ++ react-icons/io/chevron-left.d.ts | 2 ++ react-icons/io/chevron-right.d.ts | 2 ++ react-icons/io/chevron-up.d.ts | 2 ++ react-icons/io/clipboard.d.ts | 2 ++ react-icons/io/clock.d.ts | 2 ++ react-icons/io/close-circled.d.ts | 2 ++ react-icons/io/close-round.d.ts | 2 ++ react-icons/io/close.d.ts | 2 ++ react-icons/io/closed-captioning.d.ts | 2 ++ react-icons/io/cloud.d.ts | 2 ++ react-icons/io/code-download.d.ts | 2 ++ react-icons/io/code-working.d.ts | 2 ++ react-icons/io/code.d.ts | 2 ++ react-icons/io/coffee.d.ts | 2 ++ react-icons/io/compass.d.ts | 2 ++ react-icons/io/compose.d.ts | 2 ++ react-icons/io/connectbars.d.ts | 2 ++ react-icons/io/contrast.d.ts | 2 ++ react-icons/io/crop.d.ts | 2 ++ react-icons/io/cube.d.ts | 2 ++ react-icons/io/disc.d.ts | 2 ++ react-icons/io/document-text.d.ts | 2 ++ react-icons/io/document.d.ts | 2 ++ react-icons/io/drag.d.ts | 2 ++ react-icons/io/earth.d.ts | 2 ++ react-icons/io/easel.d.ts | 2 ++ react-icons/io/edit.d.ts | 2 ++ react-icons/io/egg.d.ts | 2 ++ react-icons/io/eject.d.ts | 2 ++ react-icons/io/email-unread.d.ts | 2 ++ react-icons/io/email.d.ts | 2 ++ react-icons/io/erlenmeyer-flask-bubbles.d.ts | 2 ++ react-icons/io/erlenmeyer-flask.d.ts | 2 ++ react-icons/io/eye-disabled.d.ts | 2 ++ react-icons/io/eye.d.ts | 2 ++ react-icons/io/female.d.ts | 2 ++ react-icons/io/filing.d.ts | 2 ++ react-icons/io/film-marker.d.ts | 2 ++ react-icons/io/fireball.d.ts | 2 ++ react-icons/io/flag.d.ts | 2 ++ react-icons/io/flame.d.ts | 2 ++ react-icons/io/flash-off.d.ts | 2 ++ react-icons/io/flash.d.ts | 2 ++ react-icons/io/folder.d.ts | 2 ++ react-icons/io/fork-repo.d.ts | 2 ++ react-icons/io/fork.d.ts | 2 ++ react-icons/io/forward.d.ts | 2 ++ react-icons/io/funnel.d.ts | 2 ++ react-icons/io/gear-a.d.ts | 2 ++ react-icons/io/gear-b.d.ts | 2 ++ react-icons/io/grid.d.ts | 2 ++ react-icons/io/hammer.d.ts | 2 ++ react-icons/io/happy-outline.d.ts | 2 ++ react-icons/io/happy.d.ts | 2 ++ react-icons/io/headphone.d.ts | 2 ++ react-icons/io/heart-broken.d.ts | 2 ++ react-icons/io/heart.d.ts | 2 ++ react-icons/io/help-buoy.d.ts | 2 ++ react-icons/io/help-circled.d.ts | 2 ++ react-icons/io/help.d.ts | 2 ++ react-icons/io/home.d.ts | 2 ++ react-icons/io/icecream.d.ts | 2 ++ react-icons/io/image.d.ts | 2 ++ react-icons/io/images.d.ts | 2 ++ react-icons/io/index.d.ts | 1 + react-icons/io/informatcircled.d.ts | 2 ++ react-icons/io/information.d.ts | 2 ++ react-icons/io/ionic.d.ts | 2 ++ react-icons/io/ios-alarm-outline.d.ts | 2 ++ react-icons/io/ios-alarm.d.ts | 2 ++ react-icons/io/ios-albums-outline.d.ts | 2 ++ react-icons/io/ios-albums.d.ts | 2 ++ react-icons/io/ios-americanfootball-outline.d.ts | 2 ++ react-icons/io/ios-americanfootball.d.ts | 2 ++ react-icons/io/ios-analytics-outline.d.ts | 2 ++ react-icons/io/ios-analytics.d.ts | 2 ++ react-icons/io/ios-arrow-back.d.ts | 2 ++ react-icons/io/ios-arrow-down.d.ts | 2 ++ react-icons/io/ios-arrow-forward.d.ts | 2 ++ react-icons/io/ios-arrow-left.d.ts | 2 ++ react-icons/io/ios-arrow-right.d.ts | 2 ++ react-icons/io/ios-arrow-thin-down.d.ts | 2 ++ react-icons/io/ios-arrow-thin-left.d.ts | 2 ++ react-icons/io/ios-arrow-thin-right.d.ts | 2 ++ react-icons/io/ios-arrow-thin-up.d.ts | 2 ++ react-icons/io/ios-arrow-up.d.ts | 2 ++ react-icons/io/ios-at-outline.d.ts | 2 ++ react-icons/io/ios-at.d.ts | 2 ++ react-icons/io/ios-barcode-outline.d.ts | 2 ++ react-icons/io/ios-barcode.d.ts | 2 ++ react-icons/io/ios-baseball-outline.d.ts | 2 ++ react-icons/io/ios-baseball.d.ts | 2 ++ react-icons/io/ios-basketball-outline.d.ts | 2 ++ react-icons/io/ios-basketball.d.ts | 2 ++ react-icons/io/ios-bell-outline.d.ts | 2 ++ react-icons/io/ios-bell.d.ts | 2 ++ react-icons/io/ios-body-outline.d.ts | 2 ++ react-icons/io/ios-body.d.ts | 2 ++ react-icons/io/ios-bolt-outline.d.ts | 2 ++ react-icons/io/ios-bolt.d.ts | 2 ++ react-icons/io/ios-book-outline.d.ts | 2 ++ react-icons/io/ios-book.d.ts | 2 ++ react-icons/io/ios-bookmarks-outline.d.ts | 2 ++ react-icons/io/ios-bookmarks.d.ts | 2 ++ react-icons/io/ios-box-outline.d.ts | 2 ++ react-icons/io/ios-box.d.ts | 2 ++ react-icons/io/ios-briefcase-outline.d.ts | 2 ++ react-icons/io/ios-briefcase.d.ts | 2 ++ react-icons/io/ios-browsers-outline.d.ts | 2 ++ react-icons/io/ios-browsers.d.ts | 2 ++ react-icons/io/ios-calculator-outline.d.ts | 2 ++ react-icons/io/ios-calculator.d.ts | 2 ++ react-icons/io/ios-calendar-outline.d.ts | 2 ++ react-icons/io/ios-calendar.d.ts | 2 ++ react-icons/io/ios-camera-outline.d.ts | 2 ++ react-icons/io/ios-camera.d.ts | 2 ++ react-icons/io/ios-cart-outline.d.ts | 2 ++ react-icons/io/ios-cart.d.ts | 2 ++ react-icons/io/ios-chatboxes-outline.d.ts | 2 ++ react-icons/io/ios-chatboxes.d.ts | 2 ++ react-icons/io/ios-chatbubble-outline.d.ts | 2 ++ react-icons/io/ios-chatbubble.d.ts | 2 ++ react-icons/io/ios-checkmark-empty.d.ts | 2 ++ react-icons/io/ios-checkmark-outline.d.ts | 2 ++ react-icons/io/ios-checkmark.d.ts | 2 ++ react-icons/io/ios-circle-filled.d.ts | 2 ++ react-icons/io/ios-circle-outline.d.ts | 2 ++ react-icons/io/ios-clock-outline.d.ts | 2 ++ react-icons/io/ios-clock.d.ts | 2 ++ react-icons/io/ios-close-empty.d.ts | 2 ++ react-icons/io/ios-close-outline.d.ts | 2 ++ react-icons/io/ios-close.d.ts | 2 ++ react-icons/io/ios-cloud-download-outline.d.ts | 2 ++ react-icons/io/ios-cloud-download.d.ts | 2 ++ react-icons/io/ios-cloud-outline.d.ts | 2 ++ react-icons/io/ios-cloud-upload-outline.d.ts | 2 ++ react-icons/io/ios-cloud-upload.d.ts | 2 ++ react-icons/io/ios-cloud.d.ts | 2 ++ react-icons/io/ios-cloudy-night-outline.d.ts | 2 ++ react-icons/io/ios-cloudy-night.d.ts | 2 ++ react-icons/io/ios-cloudy-outline.d.ts | 2 ++ react-icons/io/ios-cloudy.d.ts | 2 ++ react-icons/io/ios-cog-outline.d.ts | 2 ++ react-icons/io/ios-cog.d.ts | 2 ++ react-icons/io/ios-color-filter-outline.d.ts | 2 ++ react-icons/io/ios-color-filter.d.ts | 2 ++ react-icons/io/ios-color-wand-outline.d.ts | 2 ++ react-icons/io/ios-color-wand.d.ts | 2 ++ react-icons/io/ios-compose-outline.d.ts | 2 ++ react-icons/io/ios-compose.d.ts | 2 ++ react-icons/io/ios-contact-outline.d.ts | 2 ++ react-icons/io/ios-contact.d.ts | 2 ++ react-icons/io/ios-copy-outline.d.ts | 2 ++ react-icons/io/ios-copy.d.ts | 2 ++ react-icons/io/ios-crop-strong.d.ts | 2 ++ react-icons/io/ios-crop.d.ts | 2 ++ react-icons/io/ios-download-outline.d.ts | 2 ++ react-icons/io/ios-download.d.ts | 2 ++ react-icons/io/ios-drag.d.ts | 2 ++ react-icons/io/ios-email-outline.d.ts | 2 ++ react-icons/io/ios-email.d.ts | 2 ++ react-icons/io/ios-eye-outline.d.ts | 2 ++ react-icons/io/ios-eye.d.ts | 2 ++ react-icons/io/ios-fastforward-outline.d.ts | 2 ++ react-icons/io/ios-fastforward.d.ts | 2 ++ react-icons/io/ios-filing-outline.d.ts | 2 ++ react-icons/io/ios-filing.d.ts | 2 ++ react-icons/io/ios-film-outline.d.ts | 2 ++ react-icons/io/ios-film.d.ts | 2 ++ react-icons/io/ios-flag-outline.d.ts | 2 ++ react-icons/io/ios-flag.d.ts | 2 ++ react-icons/io/ios-flame-outline.d.ts | 2 ++ react-icons/io/ios-flame.d.ts | 2 ++ react-icons/io/ios-flask-outline.d.ts | 2 ++ react-icons/io/ios-flask.d.ts | 2 ++ react-icons/io/ios-flower-outline.d.ts | 2 ++ react-icons/io/ios-flower.d.ts | 2 ++ react-icons/io/ios-folder-outline.d.ts | 2 ++ react-icons/io/ios-folder.d.ts | 2 ++ react-icons/io/ios-football-outline.d.ts | 2 ++ react-icons/io/ios-football.d.ts | 2 ++ react-icons/io/ios-game-controller-a-outline.d.ts | 2 ++ react-icons/io/ios-game-controller-a.d.ts | 2 ++ react-icons/io/ios-game-controller-b-outline.d.ts | 2 ++ react-icons/io/ios-game-controller-b.d.ts | 2 ++ react-icons/io/ios-gear-outline.d.ts | 2 ++ react-icons/io/ios-gear.d.ts | 2 ++ react-icons/io/ios-glasses-outline.d.ts | 2 ++ react-icons/io/ios-glasses.d.ts | 2 ++ react-icons/io/ios-grid-view-outline.d.ts | 2 ++ react-icons/io/ios-grid-view.d.ts | 2 ++ react-icons/io/ios-heart-outline.d.ts | 2 ++ react-icons/io/ios-heart.d.ts | 2 ++ react-icons/io/ios-help-empty.d.ts | 2 ++ react-icons/io/ios-help-outline.d.ts | 2 ++ react-icons/io/ios-help.d.ts | 2 ++ react-icons/io/ios-home-outline.d.ts | 2 ++ react-icons/io/ios-home.d.ts | 2 ++ react-icons/io/ios-infinite-outline.d.ts | 2 ++ react-icons/io/ios-infinite.d.ts | 2 ++ react-icons/io/ios-informatempty.d.ts | 2 ++ react-icons/io/ios-information.d.ts | 2 ++ react-icons/io/ios-informatoutline.d.ts | 2 ++ react-icons/io/ios-ionic-outline.d.ts | 2 ++ react-icons/io/ios-keypad-outline.d.ts | 2 ++ react-icons/io/ios-keypad.d.ts | 2 ++ react-icons/io/ios-lightbulb-outline.d.ts | 2 ++ react-icons/io/ios-lightbulb.d.ts | 2 ++ react-icons/io/ios-list-outline.d.ts | 2 ++ react-icons/io/ios-list.d.ts | 2 ++ react-icons/io/ios-location.d.ts | 2 ++ react-icons/io/ios-locatoutline.d.ts | 2 ++ react-icons/io/ios-locked-outline.d.ts | 2 ++ react-icons/io/ios-locked.d.ts | 2 ++ react-icons/io/ios-loop-strong.d.ts | 2 ++ react-icons/io/ios-loop.d.ts | 2 ++ react-icons/io/ios-medical-outline.d.ts | 2 ++ react-icons/io/ios-medical.d.ts | 2 ++ react-icons/io/ios-medkit-outline.d.ts | 2 ++ react-icons/io/ios-medkit.d.ts | 2 ++ react-icons/io/ios-mic-off.d.ts | 2 ++ react-icons/io/ios-mic-outline.d.ts | 2 ++ react-icons/io/ios-mic.d.ts | 2 ++ react-icons/io/ios-minus-empty.d.ts | 2 ++ react-icons/io/ios-minus-outline.d.ts | 2 ++ react-icons/io/ios-minus.d.ts | 2 ++ react-icons/io/ios-monitor-outline.d.ts | 2 ++ react-icons/io/ios-monitor.d.ts | 2 ++ react-icons/io/ios-moon-outline.d.ts | 2 ++ react-icons/io/ios-moon.d.ts | 2 ++ react-icons/io/ios-more-outline.d.ts | 2 ++ react-icons/io/ios-more.d.ts | 2 ++ react-icons/io/ios-musical-note.d.ts | 2 ++ react-icons/io/ios-musical-notes.d.ts | 2 ++ react-icons/io/ios-navigate-outline.d.ts | 2 ++ react-icons/io/ios-navigate.d.ts | 2 ++ react-icons/io/ios-nutrition.d.ts | 2 ++ react-icons/io/ios-nutritoutline.d.ts | 2 ++ react-icons/io/ios-paper-outline.d.ts | 2 ++ react-icons/io/ios-paper.d.ts | 2 ++ react-icons/io/ios-paperplane-outline.d.ts | 2 ++ react-icons/io/ios-paperplane.d.ts | 2 ++ react-icons/io/ios-partlysunny-outline.d.ts | 2 ++ react-icons/io/ios-partlysunny.d.ts | 2 ++ react-icons/io/ios-pause-outline.d.ts | 2 ++ react-icons/io/ios-pause.d.ts | 2 ++ react-icons/io/ios-paw-outline.d.ts | 2 ++ react-icons/io/ios-paw.d.ts | 2 ++ react-icons/io/ios-people-outline.d.ts | 2 ++ react-icons/io/ios-people.d.ts | 2 ++ react-icons/io/ios-person-outline.d.ts | 2 ++ react-icons/io/ios-person.d.ts | 2 ++ react-icons/io/ios-personadd-outline.d.ts | 2 ++ react-icons/io/ios-personadd.d.ts | 2 ++ react-icons/io/ios-photos-outline.d.ts | 2 ++ react-icons/io/ios-photos.d.ts | 2 ++ react-icons/io/ios-pie-outline.d.ts | 2 ++ react-icons/io/ios-pie.d.ts | 2 ++ react-icons/io/ios-pint-outline.d.ts | 2 ++ react-icons/io/ios-pint.d.ts | 2 ++ react-icons/io/ios-play-outline.d.ts | 2 ++ react-icons/io/ios-play.d.ts | 2 ++ react-icons/io/ios-plus-empty.d.ts | 2 ++ react-icons/io/ios-plus-outline.d.ts | 2 ++ react-icons/io/ios-plus.d.ts | 2 ++ react-icons/io/ios-pricetag-outline.d.ts | 2 ++ react-icons/io/ios-pricetag.d.ts | 2 ++ react-icons/io/ios-pricetags-outline.d.ts | 2 ++ react-icons/io/ios-pricetags.d.ts | 2 ++ react-icons/io/ios-printer-outline.d.ts | 2 ++ react-icons/io/ios-printer.d.ts | 2 ++ react-icons/io/ios-pulse-strong.d.ts | 2 ++ react-icons/io/ios-pulse.d.ts | 2 ++ react-icons/io/ios-rainy-outline.d.ts | 2 ++ react-icons/io/ios-rainy.d.ts | 2 ++ react-icons/io/ios-recording-outline.d.ts | 2 ++ react-icons/io/ios-recording.d.ts | 2 ++ react-icons/io/ios-redo-outline.d.ts | 2 ++ react-icons/io/ios-redo.d.ts | 2 ++ react-icons/io/ios-refresh-empty.d.ts | 2 ++ react-icons/io/ios-refresh-outline.d.ts | 2 ++ react-icons/io/ios-refresh.d.ts | 2 ++ react-icons/io/ios-reload.d.ts | 2 ++ react-icons/io/ios-reverse-camera-outline.d.ts | 2 ++ react-icons/io/ios-reverse-camera.d.ts | 2 ++ react-icons/io/ios-rewind-outline.d.ts | 2 ++ react-icons/io/ios-rewind.d.ts | 2 ++ react-icons/io/ios-rose-outline.d.ts | 2 ++ react-icons/io/ios-rose.d.ts | 2 ++ react-icons/io/ios-search-strong.d.ts | 2 ++ react-icons/io/ios-search.d.ts | 2 ++ react-icons/io/ios-settings-strong.d.ts | 2 ++ react-icons/io/ios-settings.d.ts | 2 ++ react-icons/io/ios-shuffle-strong.d.ts | 2 ++ react-icons/io/ios-shuffle.d.ts | 2 ++ react-icons/io/ios-skipbackward-outline.d.ts | 2 ++ react-icons/io/ios-skipbackward.d.ts | 2 ++ react-icons/io/ios-skipforward-outline.d.ts | 2 ++ react-icons/io/ios-skipforward.d.ts | 2 ++ react-icons/io/ios-snowy.d.ts | 2 ++ react-icons/io/ios-speedometer-outline.d.ts | 2 ++ react-icons/io/ios-speedometer.d.ts | 2 ++ react-icons/io/ios-star-half.d.ts | 2 ++ react-icons/io/ios-star-outline.d.ts | 2 ++ react-icons/io/ios-star.d.ts | 2 ++ react-icons/io/ios-stopwatch-outline.d.ts | 2 ++ react-icons/io/ios-stopwatch.d.ts | 2 ++ react-icons/io/ios-sunny-outline.d.ts | 2 ++ react-icons/io/ios-sunny.d.ts | 2 ++ react-icons/io/ios-telephone-outline.d.ts | 2 ++ react-icons/io/ios-telephone.d.ts | 2 ++ react-icons/io/ios-tennisball-outline.d.ts | 2 ++ react-icons/io/ios-tennisball.d.ts | 2 ++ react-icons/io/ios-thunderstorm-outline.d.ts | 2 ++ react-icons/io/ios-thunderstorm.d.ts | 2 ++ react-icons/io/ios-time-outline.d.ts | 2 ++ react-icons/io/ios-time.d.ts | 2 ++ react-icons/io/ios-timer-outline.d.ts | 2 ++ react-icons/io/ios-timer.d.ts | 2 ++ react-icons/io/ios-toggle-outline.d.ts | 2 ++ react-icons/io/ios-toggle.d.ts | 2 ++ react-icons/io/ios-trash-outline.d.ts | 2 ++ react-icons/io/ios-trash.d.ts | 2 ++ react-icons/io/ios-undo-outline.d.ts | 2 ++ react-icons/io/ios-undo.d.ts | 2 ++ react-icons/io/ios-unlocked-outline.d.ts | 2 ++ react-icons/io/ios-unlocked.d.ts | 2 ++ react-icons/io/ios-upload-outline.d.ts | 2 ++ react-icons/io/ios-upload.d.ts | 2 ++ react-icons/io/ios-videocam-outline.d.ts | 2 ++ react-icons/io/ios-videocam.d.ts | 2 ++ react-icons/io/ios-volume-high.d.ts | 2 ++ react-icons/io/ios-volume-low.d.ts | 2 ++ react-icons/io/ios-wineglass-outline.d.ts | 2 ++ react-icons/io/ios-wineglass.d.ts | 2 ++ react-icons/io/ios-world-outline.d.ts | 2 ++ react-icons/io/ios-world.d.ts | 2 ++ react-icons/io/ipad.d.ts | 2 ++ react-icons/io/iphone.d.ts | 2 ++ react-icons/io/ipod.d.ts | 2 ++ react-icons/io/jet.d.ts | 2 ++ react-icons/io/key.d.ts | 2 ++ react-icons/io/knife.d.ts | 2 ++ react-icons/io/laptop.d.ts | 2 ++ react-icons/io/leaf.d.ts | 2 ++ react-icons/io/levels.d.ts | 2 ++ react-icons/io/lightbulb.d.ts | 2 ++ react-icons/io/link.d.ts | 2 ++ react-icons/io/load-a.d.ts | 2 ++ react-icons/io/load-b.d.ts | 2 ++ react-icons/io/load-c.d.ts | 2 ++ react-icons/io/load-d.d.ts | 2 ++ react-icons/io/location.d.ts | 2 ++ react-icons/io/lock-combination.d.ts | 2 ++ react-icons/io/locked.d.ts | 2 ++ react-icons/io/log-in.d.ts | 2 ++ react-icons/io/log-out.d.ts | 2 ++ react-icons/io/loop.d.ts | 2 ++ react-icons/io/magnet.d.ts | 2 ++ react-icons/io/male.d.ts | 2 ++ react-icons/io/man.d.ts | 2 ++ react-icons/io/map.d.ts | 2 ++ react-icons/io/medkit.d.ts | 2 ++ react-icons/io/merge.d.ts | 2 ++ react-icons/io/mic-a.d.ts | 2 ++ react-icons/io/mic-b.d.ts | 2 ++ react-icons/io/mic-c.d.ts | 2 ++ react-icons/io/minus-circled.d.ts | 2 ++ react-icons/io/minus-round.d.ts | 2 ++ react-icons/io/minus.d.ts | 2 ++ react-icons/io/model-s.d.ts | 2 ++ react-icons/io/monitor.d.ts | 2 ++ react-icons/io/more.d.ts | 2 ++ react-icons/io/mouse.d.ts | 2 ++ react-icons/io/music-note.d.ts | 2 ++ react-icons/io/navicon-round.d.ts | 2 ++ react-icons/io/navicon.d.ts | 2 ++ react-icons/io/navigate.d.ts | 2 ++ react-icons/io/network.d.ts | 2 ++ react-icons/io/no-smoking.d.ts | 2 ++ react-icons/io/nuclear.d.ts | 2 ++ react-icons/io/outlet.d.ts | 2 ++ react-icons/io/paintbrush.d.ts | 2 ++ react-icons/io/paintbucket.d.ts | 2 ++ react-icons/io/paper-airplane.d.ts | 2 ++ react-icons/io/paperclip.d.ts | 2 ++ react-icons/io/pause.d.ts | 2 ++ react-icons/io/person-add.d.ts | 2 ++ react-icons/io/person-stalker.d.ts | 2 ++ react-icons/io/person.d.ts | 2 ++ react-icons/io/pie-graph.d.ts | 2 ++ react-icons/io/pin.d.ts | 2 ++ react-icons/io/pinpoint.d.ts | 2 ++ react-icons/io/pizza.d.ts | 2 ++ react-icons/io/plane.d.ts | 2 ++ react-icons/io/planet.d.ts | 2 ++ react-icons/io/play.d.ts | 2 ++ react-icons/io/playstation.d.ts | 2 ++ react-icons/io/plus-circled.d.ts | 2 ++ react-icons/io/plus-round.d.ts | 2 ++ react-icons/io/plus.d.ts | 2 ++ react-icons/io/podium.d.ts | 2 ++ react-icons/io/pound.d.ts | 2 ++ react-icons/io/power.d.ts | 2 ++ react-icons/io/pricetag.d.ts | 2 ++ react-icons/io/pricetags.d.ts | 2 ++ react-icons/io/printer.d.ts | 2 ++ react-icons/io/pull-request.d.ts | 2 ++ react-icons/io/qr-scanner.d.ts | 2 ++ react-icons/io/quote.d.ts | 2 ++ react-icons/io/radio-waves.d.ts | 2 ++ react-icons/io/record.d.ts | 2 ++ react-icons/io/refresh.d.ts | 2 ++ react-icons/io/reply-all.d.ts | 2 ++ react-icons/io/reply.d.ts | 2 ++ react-icons/io/ribbon-a.d.ts | 2 ++ react-icons/io/ribbon-b.d.ts | 2 ++ react-icons/io/sad-outline.d.ts | 2 ++ react-icons/io/sad.d.ts | 2 ++ react-icons/io/scissors.d.ts | 2 ++ react-icons/io/search.d.ts | 2 ++ react-icons/io/settings.d.ts | 2 ++ react-icons/io/share.d.ts | 2 ++ react-icons/io/shuffle.d.ts | 2 ++ react-icons/io/skip-backward.d.ts | 2 ++ react-icons/io/skip-forward.d.ts | 2 ++ react-icons/io/social-android-outline.d.ts | 2 ++ react-icons/io/social-android.d.ts | 2 ++ react-icons/io/social-angular-outline.d.ts | 2 ++ react-icons/io/social-angular.d.ts | 2 ++ react-icons/io/social-apple-outline.d.ts | 2 ++ react-icons/io/social-apple.d.ts | 2 ++ react-icons/io/social-bitcoin-outline.d.ts | 2 ++ react-icons/io/social-bitcoin.d.ts | 2 ++ react-icons/io/social-buffer-outline.d.ts | 2 ++ react-icons/io/social-buffer.d.ts | 2 ++ react-icons/io/social-chrome-outline.d.ts | 2 ++ react-icons/io/social-chrome.d.ts | 2 ++ react-icons/io/social-codepen-outline.d.ts | 2 ++ react-icons/io/social-codepen.d.ts | 2 ++ react-icons/io/social-css3-outline.d.ts | 2 ++ react-icons/io/social-css3.d.ts | 2 ++ react-icons/io/social-designernews-outline.d.ts | 2 ++ react-icons/io/social-designernews.d.ts | 2 ++ react-icons/io/social-dribbble-outline.d.ts | 2 ++ react-icons/io/social-dribbble.d.ts | 2 ++ react-icons/io/social-dropbox-outline.d.ts | 2 ++ react-icons/io/social-dropbox.d.ts | 2 ++ react-icons/io/social-euro-outline.d.ts | 2 ++ react-icons/io/social-euro.d.ts | 2 ++ react-icons/io/social-facebook-outline.d.ts | 2 ++ react-icons/io/social-facebook.d.ts | 2 ++ react-icons/io/social-foursquare-outline.d.ts | 2 ++ react-icons/io/social-foursquare.d.ts | 2 ++ react-icons/io/social-freebsd-devil.d.ts | 2 ++ react-icons/io/social-github-outline.d.ts | 2 ++ react-icons/io/social-github.d.ts | 2 ++ react-icons/io/social-google-outline.d.ts | 2 ++ react-icons/io/social-google.d.ts | 2 ++ react-icons/io/social-googleplus-outline.d.ts | 2 ++ react-icons/io/social-googleplus.d.ts | 2 ++ react-icons/io/social-hackernews-outline.d.ts | 2 ++ react-icons/io/social-hackernews.d.ts | 2 ++ react-icons/io/social-html5-outline.d.ts | 2 ++ react-icons/io/social-html5.d.ts | 2 ++ react-icons/io/social-instagram-outline.d.ts | 2 ++ react-icons/io/social-instagram.d.ts | 2 ++ react-icons/io/social-javascript-outline.d.ts | 2 ++ react-icons/io/social-javascript.d.ts | 2 ++ react-icons/io/social-linkedin-outline.d.ts | 2 ++ react-icons/io/social-linkedin.d.ts | 2 ++ react-icons/io/social-markdown.d.ts | 2 ++ react-icons/io/social-nodejs.d.ts | 2 ++ react-icons/io/social-octocat.d.ts | 2 ++ react-icons/io/social-pinterest-outline.d.ts | 2 ++ react-icons/io/social-pinterest.d.ts | 2 ++ react-icons/io/social-python.d.ts | 2 ++ react-icons/io/social-reddit-outline.d.ts | 2 ++ react-icons/io/social-reddit.d.ts | 2 ++ react-icons/io/social-rss-outline.d.ts | 2 ++ react-icons/io/social-rss.d.ts | 2 ++ react-icons/io/social-sass.d.ts | 2 ++ react-icons/io/social-skype-outline.d.ts | 2 ++ react-icons/io/social-skype.d.ts | 2 ++ react-icons/io/social-snapchat-outline.d.ts | 2 ++ react-icons/io/social-snapchat.d.ts | 2 ++ react-icons/io/social-tumblr-outline.d.ts | 2 ++ react-icons/io/social-tumblr.d.ts | 2 ++ react-icons/io/social-tux.d.ts | 2 ++ react-icons/io/social-twitch-outline.d.ts | 2 ++ react-icons/io/social-twitch.d.ts | 2 ++ react-icons/io/social-twitter-outline.d.ts | 2 ++ react-icons/io/social-twitter.d.ts | 2 ++ react-icons/io/social-usd-outline.d.ts | 2 ++ react-icons/io/social-usd.d.ts | 2 ++ react-icons/io/social-vimeo-outline.d.ts | 2 ++ react-icons/io/social-vimeo.d.ts | 2 ++ react-icons/io/social-whatsapp-outline.d.ts | 2 ++ react-icons/io/social-whatsapp.d.ts | 2 ++ react-icons/io/social-windows-outline.d.ts | 2 ++ react-icons/io/social-windows.d.ts | 2 ++ react-icons/io/social-wordpress-outline.d.ts | 2 ++ react-icons/io/social-wordpress.d.ts | 2 ++ react-icons/io/social-yahoo-outline.d.ts | 2 ++ react-icons/io/social-yahoo.d.ts | 2 ++ react-icons/io/social-yen-outline.d.ts | 2 ++ react-icons/io/social-yen.d.ts | 2 ++ react-icons/io/social-youtube-outline.d.ts | 2 ++ react-icons/io/social-youtube.d.ts | 2 ++ react-icons/io/soup-can-outline.d.ts | 2 ++ react-icons/io/soup-can.d.ts | 2 ++ react-icons/io/speakerphone.d.ts | 2 ++ react-icons/io/speedometer.d.ts | 2 ++ react-icons/io/spoon.d.ts | 2 ++ react-icons/io/star.d.ts | 2 ++ react-icons/io/stats-bars.d.ts | 2 ++ react-icons/io/steam.d.ts | 2 ++ react-icons/io/stop.d.ts | 2 ++ react-icons/io/thermometer.d.ts | 2 ++ react-icons/io/thumbsdown.d.ts | 2 ++ react-icons/io/thumbsup.d.ts | 2 ++ react-icons/io/toggle-filled.d.ts | 2 ++ react-icons/io/toggle.d.ts | 2 ++ react-icons/io/transgender.d.ts | 2 ++ react-icons/io/trash-a.d.ts | 2 ++ react-icons/io/trash-b.d.ts | 2 ++ react-icons/io/trophy.d.ts | 2 ++ react-icons/io/tshirt-outline.d.ts | 2 ++ react-icons/io/tshirt.d.ts | 2 ++ react-icons/io/umbrella.d.ts | 2 ++ react-icons/io/university.d.ts | 2 ++ react-icons/io/unlocked.d.ts | 2 ++ react-icons/io/upload.d.ts | 2 ++ react-icons/io/usb.d.ts | 2 ++ react-icons/io/videocamera.d.ts | 2 ++ react-icons/io/volume-high.d.ts | 2 ++ react-icons/io/volume-low.d.ts | 2 ++ react-icons/io/volume-medium.d.ts | 2 ++ react-icons/io/volume-mute.d.ts | 2 ++ react-icons/io/wand.d.ts | 2 ++ react-icons/io/waterdrop.d.ts | 2 ++ react-icons/io/wifi.d.ts | 2 ++ react-icons/io/wineglass.d.ts | 2 ++ react-icons/io/woman.d.ts | 2 ++ react-icons/io/wrench.d.ts | 2 ++ react-icons/io/xbox.d.ts | 2 ++ react-icons/md/3d-rotation.d.ts | 2 ++ react-icons/md/ac-unit.d.ts | 2 ++ react-icons/md/access-alarm.d.ts | 2 ++ react-icons/md/access-alarms.d.ts | 2 ++ react-icons/md/access-time.d.ts | 2 ++ react-icons/md/accessibility.d.ts | 2 ++ react-icons/md/accessible.d.ts | 2 ++ react-icons/md/account-balance-wallet.d.ts | 2 ++ react-icons/md/account-balance.d.ts | 2 ++ react-icons/md/account-box.d.ts | 2 ++ react-icons/md/account-circle.d.ts | 2 ++ react-icons/md/adb.d.ts | 2 ++ react-icons/md/add-a-photo.d.ts | 2 ++ react-icons/md/add-alarm.d.ts | 2 ++ react-icons/md/add-alert.d.ts | 2 ++ react-icons/md/add-box.d.ts | 2 ++ react-icons/md/add-circle-outline.d.ts | 2 ++ react-icons/md/add-circle.d.ts | 2 ++ react-icons/md/add-location.d.ts | 2 ++ react-icons/md/add-shopping-cart.d.ts | 2 ++ react-icons/md/add-to-photos.d.ts | 2 ++ react-icons/md/add-to-queue.d.ts | 2 ++ react-icons/md/add.d.ts | 2 ++ react-icons/md/adjust.d.ts | 2 ++ react-icons/md/airline-seat-flat-angled.d.ts | 2 ++ react-icons/md/airline-seat-flat.d.ts | 2 ++ react-icons/md/airline-seat-individual-suite.d.ts | 2 ++ react-icons/md/airline-seat-legroom-extra.d.ts | 2 ++ react-icons/md/airline-seat-legroom-normal.d.ts | 2 ++ react-icons/md/airline-seat-legroom-reduced.d.ts | 2 ++ react-icons/md/airline-seat-recline-extra.d.ts | 2 ++ react-icons/md/airline-seat-recline-normal.d.ts | 2 ++ react-icons/md/airplanemode-active.d.ts | 2 ++ react-icons/md/airplanemode-inactive.d.ts | 2 ++ react-icons/md/airplay.d.ts | 2 ++ react-icons/md/airport-shuttle.d.ts | 2 ++ react-icons/md/alarm-add.d.ts | 2 ++ react-icons/md/alarm-off.d.ts | 2 ++ react-icons/md/alarm-on.d.ts | 2 ++ react-icons/md/alarm.d.ts | 2 ++ react-icons/md/album.d.ts | 2 ++ react-icons/md/all-inclusive.d.ts | 2 ++ react-icons/md/all-out.d.ts | 2 ++ react-icons/md/android.d.ts | 2 ++ react-icons/md/announcement.d.ts | 2 ++ react-icons/md/apps.d.ts | 2 ++ react-icons/md/archive.d.ts | 2 ++ react-icons/md/arrow-back.d.ts | 2 ++ react-icons/md/arrow-downward.d.ts | 2 ++ react-icons/md/arrow-drop-down-circle.d.ts | 2 ++ react-icons/md/arrow-drop-down.d.ts | 2 ++ react-icons/md/arrow-drop-up.d.ts | 2 ++ react-icons/md/arrow-forward.d.ts | 2 ++ react-icons/md/arrow-upward.d.ts | 2 ++ react-icons/md/art-track.d.ts | 2 ++ react-icons/md/aspect-ratio.d.ts | 2 ++ react-icons/md/assessment.d.ts | 2 ++ react-icons/md/assignment-ind.d.ts | 2 ++ react-icons/md/assignment-late.d.ts | 2 ++ react-icons/md/assignment-return.d.ts | 2 ++ react-icons/md/assignment-returned.d.ts | 2 ++ react-icons/md/assignment-turned-in.d.ts | 2 ++ react-icons/md/assignment.d.ts | 2 ++ react-icons/md/assistant-photo.d.ts | 2 ++ react-icons/md/assistant.d.ts | 2 ++ react-icons/md/attach-file.d.ts | 2 ++ react-icons/md/attach-money.d.ts | 2 ++ react-icons/md/attachment.d.ts | 2 ++ react-icons/md/audiotrack.d.ts | 2 ++ react-icons/md/autorenew.d.ts | 2 ++ react-icons/md/av-timer.d.ts | 2 ++ react-icons/md/backspace.d.ts | 2 ++ react-icons/md/backup.d.ts | 2 ++ react-icons/md/battery-alert.d.ts | 2 ++ react-icons/md/battery-charging-full.d.ts | 2 ++ react-icons/md/battery-full.d.ts | 2 ++ react-icons/md/battery-std.d.ts | 2 ++ react-icons/md/battery-unknown.d.ts | 2 ++ react-icons/md/beach-access.d.ts | 2 ++ react-icons/md/beenhere.d.ts | 2 ++ react-icons/md/block.d.ts | 2 ++ react-icons/md/bluetooth-audio.d.ts | 2 ++ react-icons/md/bluetooth-connected.d.ts | 2 ++ react-icons/md/bluetooth-disabled.d.ts | 2 ++ react-icons/md/bluetooth-searching.d.ts | 2 ++ react-icons/md/bluetooth.d.ts | 2 ++ react-icons/md/blur-circular.d.ts | 2 ++ react-icons/md/blur-linear.d.ts | 2 ++ react-icons/md/blur-off.d.ts | 2 ++ react-icons/md/blur-on.d.ts | 2 ++ react-icons/md/book.d.ts | 2 ++ react-icons/md/bookmark-outline.d.ts | 2 ++ react-icons/md/bookmark.d.ts | 2 ++ react-icons/md/border-all.d.ts | 2 ++ react-icons/md/border-bottom.d.ts | 2 ++ react-icons/md/border-clear.d.ts | 2 ++ react-icons/md/border-color.d.ts | 2 ++ react-icons/md/border-horizontal.d.ts | 2 ++ react-icons/md/border-inner.d.ts | 2 ++ react-icons/md/border-left.d.ts | 2 ++ react-icons/md/border-outer.d.ts | 2 ++ react-icons/md/border-right.d.ts | 2 ++ react-icons/md/border-style.d.ts | 2 ++ react-icons/md/border-top.d.ts | 2 ++ react-icons/md/border-vertical.d.ts | 2 ++ react-icons/md/branding-watermark.d.ts | 2 ++ react-icons/md/brightness-1.d.ts | 2 ++ react-icons/md/brightness-2.d.ts | 2 ++ react-icons/md/brightness-3.d.ts | 2 ++ react-icons/md/brightness-4.d.ts | 2 ++ react-icons/md/brightness-5.d.ts | 2 ++ react-icons/md/brightness-6.d.ts | 2 ++ react-icons/md/brightness-7.d.ts | 2 ++ react-icons/md/brightness-auto.d.ts | 2 ++ react-icons/md/brightness-high.d.ts | 2 ++ react-icons/md/brightness-low.d.ts | 2 ++ react-icons/md/brightness-medium.d.ts | 2 ++ react-icons/md/broken-image.d.ts | 2 ++ react-icons/md/brush.d.ts | 2 ++ react-icons/md/bubble-chart.d.ts | 2 ++ react-icons/md/bug-report.d.ts | 2 ++ react-icons/md/build.d.ts | 2 ++ react-icons/md/burst-mode.d.ts | 2 ++ react-icons/md/business-center.d.ts | 2 ++ react-icons/md/business.d.ts | 2 ++ react-icons/md/cached.d.ts | 2 ++ react-icons/md/cake.d.ts | 2 ++ react-icons/md/call-end.d.ts | 2 ++ react-icons/md/call-made.d.ts | 2 ++ react-icons/md/call-merge.d.ts | 2 ++ react-icons/md/call-missed-outgoing.d.ts | 2 ++ react-icons/md/call-missed.d.ts | 2 ++ react-icons/md/call-received.d.ts | 2 ++ react-icons/md/call-split.d.ts | 2 ++ react-icons/md/call-to-action.d.ts | 2 ++ react-icons/md/call.d.ts | 2 ++ react-icons/md/camera-alt.d.ts | 2 ++ react-icons/md/camera-enhance.d.ts | 2 ++ react-icons/md/camera-front.d.ts | 2 ++ react-icons/md/camera-rear.d.ts | 2 ++ react-icons/md/camera-roll.d.ts | 2 ++ react-icons/md/camera.d.ts | 2 ++ react-icons/md/cancel.d.ts | 2 ++ react-icons/md/card-giftcard.d.ts | 2 ++ react-icons/md/card-membership.d.ts | 2 ++ react-icons/md/card-travel.d.ts | 2 ++ react-icons/md/casino.d.ts | 2 ++ react-icons/md/cast-connected.d.ts | 2 ++ react-icons/md/cast.d.ts | 2 ++ react-icons/md/center-focus-strong.d.ts | 2 ++ react-icons/md/center-focus-weak.d.ts | 2 ++ react-icons/md/change-history.d.ts | 2 ++ react-icons/md/chat-bubble-outline.d.ts | 2 ++ react-icons/md/chat-bubble.d.ts | 2 ++ react-icons/md/chat.d.ts | 2 ++ react-icons/md/check-box-outline-blank.d.ts | 2 ++ react-icons/md/check-box.d.ts | 2 ++ react-icons/md/check-circle.d.ts | 2 ++ react-icons/md/check.d.ts | 2 ++ react-icons/md/chevron-left.d.ts | 2 ++ react-icons/md/chevron-right.d.ts | 2 ++ react-icons/md/child-care.d.ts | 2 ++ react-icons/md/child-friendly.d.ts | 2 ++ react-icons/md/chrome-reader-mode.d.ts | 2 ++ react-icons/md/class.d.ts | 2 ++ react-icons/md/clear-all.d.ts | 2 ++ react-icons/md/clear.d.ts | 2 ++ react-icons/md/close.d.ts | 2 ++ react-icons/md/closed-caption.d.ts | 2 ++ react-icons/md/cloud-circle.d.ts | 2 ++ react-icons/md/cloud-done.d.ts | 2 ++ react-icons/md/cloud-download.d.ts | 2 ++ react-icons/md/cloud-off.d.ts | 2 ++ react-icons/md/cloud-queue.d.ts | 2 ++ react-icons/md/cloud-upload.d.ts | 2 ++ react-icons/md/cloud.d.ts | 2 ++ react-icons/md/code.d.ts | 2 ++ react-icons/md/collections-bookmark.d.ts | 2 ++ react-icons/md/collections.d.ts | 2 ++ react-icons/md/color-lens.d.ts | 2 ++ react-icons/md/colorize.d.ts | 2 ++ react-icons/md/comment.d.ts | 2 ++ react-icons/md/compare-arrows.d.ts | 2 ++ react-icons/md/compare.d.ts | 2 ++ react-icons/md/computer.d.ts | 2 ++ react-icons/md/confirmation-number.d.ts | 2 ++ react-icons/md/contact-mail.d.ts | 2 ++ react-icons/md/contact-phone.d.ts | 2 ++ react-icons/md/contacts.d.ts | 2 ++ react-icons/md/content-copy.d.ts | 2 ++ react-icons/md/content-cut.d.ts | 2 ++ react-icons/md/content-paste.d.ts | 2 ++ react-icons/md/control-point-duplicate.d.ts | 2 ++ react-icons/md/control-point.d.ts | 2 ++ react-icons/md/copyright.d.ts | 2 ++ react-icons/md/create-new-folder.d.ts | 2 ++ react-icons/md/create.d.ts | 2 ++ react-icons/md/credit-card.d.ts | 2 ++ react-icons/md/crop-16-9.d.ts | 2 ++ react-icons/md/crop-3-2.d.ts | 2 ++ react-icons/md/crop-5-4.d.ts | 2 ++ react-icons/md/crop-7-5.d.ts | 2 ++ react-icons/md/crop-din.d.ts | 2 ++ react-icons/md/crop-free.d.ts | 2 ++ react-icons/md/crop-landscape.d.ts | 2 ++ react-icons/md/crop-original.d.ts | 2 ++ react-icons/md/crop-portrait.d.ts | 2 ++ react-icons/md/crop-rotate.d.ts | 2 ++ react-icons/md/crop-square.d.ts | 2 ++ react-icons/md/crop.d.ts | 2 ++ react-icons/md/dashboard.d.ts | 2 ++ react-icons/md/data-usage.d.ts | 2 ++ react-icons/md/date-range.d.ts | 2 ++ react-icons/md/dehaze.d.ts | 2 ++ react-icons/md/delete-forever.d.ts | 2 ++ react-icons/md/delete-sweep.d.ts | 2 ++ react-icons/md/delete.d.ts | 2 ++ react-icons/md/description.d.ts | 2 ++ react-icons/md/desktop-mac.d.ts | 2 ++ react-icons/md/desktop-windows.d.ts | 2 ++ react-icons/md/details.d.ts | 2 ++ react-icons/md/developer-board.d.ts | 2 ++ react-icons/md/developer-mode.d.ts | 2 ++ react-icons/md/device-hub.d.ts | 2 ++ react-icons/md/devices-other.d.ts | 2 ++ react-icons/md/devices.d.ts | 2 ++ react-icons/md/dialer-sip.d.ts | 2 ++ react-icons/md/dialpad.d.ts | 2 ++ react-icons/md/directions-bike.d.ts | 2 ++ react-icons/md/directions-boat.d.ts | 2 ++ react-icons/md/directions-bus.d.ts | 2 ++ react-icons/md/directions-car.d.ts | 2 ++ react-icons/md/directions-ferry.d.ts | 2 ++ react-icons/md/directions-railway.d.ts | 2 ++ react-icons/md/directions-run.d.ts | 2 ++ react-icons/md/directions-subway.d.ts | 2 ++ react-icons/md/directions-transit.d.ts | 2 ++ react-icons/md/directions-walk.d.ts | 2 ++ react-icons/md/directions.d.ts | 2 ++ react-icons/md/disc-full.d.ts | 2 ++ react-icons/md/dns.d.ts | 2 ++ react-icons/md/do-not-disturb-alt.d.ts | 2 ++ react-icons/md/do-not-disturb-off.d.ts | 2 ++ react-icons/md/do-not-disturb.d.ts | 2 ++ react-icons/md/dock.d.ts | 2 ++ react-icons/md/domain.d.ts | 2 ++ react-icons/md/done-all.d.ts | 2 ++ react-icons/md/done.d.ts | 2 ++ react-icons/md/donut-large.d.ts | 2 ++ react-icons/md/donut-small.d.ts | 2 ++ react-icons/md/drafts.d.ts | 2 ++ react-icons/md/drag-handle.d.ts | 2 ++ react-icons/md/drive-eta.d.ts | 2 ++ react-icons/md/dvr.d.ts | 2 ++ react-icons/md/edit-location.d.ts | 2 ++ react-icons/md/edit.d.ts | 2 ++ react-icons/md/eject.d.ts | 2 ++ react-icons/md/email.d.ts | 2 ++ react-icons/md/enhanced-encryption.d.ts | 2 ++ react-icons/md/equalizer.d.ts | 2 ++ react-icons/md/error-outline.d.ts | 2 ++ react-icons/md/error.d.ts | 2 ++ react-icons/md/euro-symbol.d.ts | 2 ++ react-icons/md/ev-station.d.ts | 2 ++ react-icons/md/event-available.d.ts | 2 ++ react-icons/md/event-busy.d.ts | 2 ++ react-icons/md/event-note.d.ts | 2 ++ react-icons/md/event-seat.d.ts | 2 ++ react-icons/md/event.d.ts | 2 ++ react-icons/md/exit-to-app.d.ts | 2 ++ react-icons/md/expand-less.d.ts | 2 ++ react-icons/md/expand-more.d.ts | 2 ++ react-icons/md/explicit.d.ts | 2 ++ react-icons/md/explore.d.ts | 2 ++ react-icons/md/exposure-minus-1.d.ts | 2 ++ react-icons/md/exposure-minus-2.d.ts | 2 ++ react-icons/md/exposure-neg-1.d.ts | 2 ++ react-icons/md/exposure-neg-2.d.ts | 2 ++ react-icons/md/exposure-plus-1.d.ts | 2 ++ react-icons/md/exposure-plus-2.d.ts | 2 ++ react-icons/md/exposure-zero.d.ts | 2 ++ react-icons/md/exposure.d.ts | 2 ++ react-icons/md/extension.d.ts | 2 ++ react-icons/md/face.d.ts | 2 ++ react-icons/md/fast-forward.d.ts | 2 ++ react-icons/md/fast-rewind.d.ts | 2 ++ react-icons/md/favorite-border.d.ts | 2 ++ react-icons/md/favorite-outline.d.ts | 2 ++ react-icons/md/favorite.d.ts | 2 ++ react-icons/md/featured-play-list.d.ts | 2 ++ react-icons/md/featured-video.d.ts | 2 ++ react-icons/md/feedback.d.ts | 2 ++ react-icons/md/fiber-dvr.d.ts | 2 ++ react-icons/md/fiber-manual-record.d.ts | 2 ++ react-icons/md/fiber-new.d.ts | 2 ++ react-icons/md/fiber-pin.d.ts | 2 ++ react-icons/md/fiber-smart-record.d.ts | 2 ++ react-icons/md/file-download.d.ts | 2 ++ react-icons/md/file-upload.d.ts | 2 ++ react-icons/md/filter-1.d.ts | 2 ++ react-icons/md/filter-2.d.ts | 2 ++ react-icons/md/filter-3.d.ts | 2 ++ react-icons/md/filter-4.d.ts | 2 ++ react-icons/md/filter-5.d.ts | 2 ++ react-icons/md/filter-6.d.ts | 2 ++ react-icons/md/filter-7.d.ts | 2 ++ react-icons/md/filter-8.d.ts | 2 ++ react-icons/md/filter-9-plus.d.ts | 2 ++ react-icons/md/filter-9.d.ts | 2 ++ react-icons/md/filter-b-and-w.d.ts | 2 ++ react-icons/md/filter-center-focus.d.ts | 2 ++ react-icons/md/filter-drama.d.ts | 2 ++ react-icons/md/filter-frames.d.ts | 2 ++ react-icons/md/filter-hdr.d.ts | 2 ++ react-icons/md/filter-list.d.ts | 2 ++ react-icons/md/filter-none.d.ts | 2 ++ react-icons/md/filter-tilt-shift.d.ts | 2 ++ react-icons/md/filter-vintage.d.ts | 2 ++ react-icons/md/filter.d.ts | 2 ++ react-icons/md/find-in-page.d.ts | 2 ++ react-icons/md/find-replace.d.ts | 2 ++ react-icons/md/fingerprint.d.ts | 2 ++ react-icons/md/first-page.d.ts | 2 ++ react-icons/md/fitness-center.d.ts | 2 ++ react-icons/md/flag.d.ts | 2 ++ react-icons/md/flare.d.ts | 2 ++ react-icons/md/flash-auto.d.ts | 2 ++ react-icons/md/flash-off.d.ts | 2 ++ react-icons/md/flash-on.d.ts | 2 ++ react-icons/md/flight-land.d.ts | 2 ++ react-icons/md/flight-takeoff.d.ts | 2 ++ react-icons/md/flight.d.ts | 2 ++ react-icons/md/flip-to-back.d.ts | 2 ++ react-icons/md/flip-to-front.d.ts | 2 ++ react-icons/md/flip.d.ts | 2 ++ react-icons/md/folder-open.d.ts | 2 ++ react-icons/md/folder-shared.d.ts | 2 ++ react-icons/md/folder-special.d.ts | 2 ++ react-icons/md/folder.d.ts | 2 ++ react-icons/md/font-download.d.ts | 2 ++ react-icons/md/format-align-center.d.ts | 2 ++ react-icons/md/format-align-justify.d.ts | 2 ++ react-icons/md/format-align-left.d.ts | 2 ++ react-icons/md/format-align-right.d.ts | 2 ++ react-icons/md/format-bold.d.ts | 2 ++ react-icons/md/format-clear.d.ts | 2 ++ react-icons/md/format-color-fill.d.ts | 2 ++ react-icons/md/format-color-reset.d.ts | 2 ++ react-icons/md/format-color-text.d.ts | 2 ++ react-icons/md/format-indent-decrease.d.ts | 2 ++ react-icons/md/format-indent-increase.d.ts | 2 ++ react-icons/md/format-italic.d.ts | 2 ++ react-icons/md/format-line-spacing.d.ts | 2 ++ react-icons/md/format-list-bulleted.d.ts | 2 ++ react-icons/md/format-list-numbered.d.ts | 2 ++ react-icons/md/format-paint.d.ts | 2 ++ react-icons/md/format-quote.d.ts | 2 ++ react-icons/md/format-shapes.d.ts | 2 ++ react-icons/md/format-size.d.ts | 2 ++ react-icons/md/format-strikethrough.d.ts | 2 ++ react-icons/md/format-textdirection-l-to-r.d.ts | 2 ++ react-icons/md/format-textdirection-r-to-l.d.ts | 2 ++ react-icons/md/format-underlined.d.ts | 2 ++ react-icons/md/forum.d.ts | 2 ++ react-icons/md/forward-10.d.ts | 2 ++ react-icons/md/forward-30.d.ts | 2 ++ react-icons/md/forward-5.d.ts | 2 ++ react-icons/md/forward.d.ts | 2 ++ react-icons/md/free-breakfast.d.ts | 2 ++ react-icons/md/fullscreen-exit.d.ts | 2 ++ react-icons/md/fullscreen.d.ts | 2 ++ react-icons/md/functions.d.ts | 2 ++ react-icons/md/g-translate.d.ts | 2 ++ react-icons/md/gamepad.d.ts | 2 ++ react-icons/md/games.d.ts | 2 ++ react-icons/md/gavel.d.ts | 2 ++ react-icons/md/gesture.d.ts | 2 ++ react-icons/md/get-app.d.ts | 2 ++ react-icons/md/gif.d.ts | 2 ++ react-icons/md/goat.d.ts | 2 ++ react-icons/md/golf-course.d.ts | 2 ++ react-icons/md/gps-fixed.d.ts | 2 ++ react-icons/md/gps-not-fixed.d.ts | 2 ++ react-icons/md/gps-off.d.ts | 2 ++ react-icons/md/grade.d.ts | 2 ++ react-icons/md/gradient.d.ts | 2 ++ react-icons/md/grain.d.ts | 2 ++ react-icons/md/graphic-eq.d.ts | 2 ++ react-icons/md/grid-off.d.ts | 2 ++ react-icons/md/grid-on.d.ts | 2 ++ react-icons/md/group-add.d.ts | 2 ++ react-icons/md/group-work.d.ts | 2 ++ react-icons/md/group.d.ts | 2 ++ react-icons/md/hd.d.ts | 2 ++ react-icons/md/hdr-off.d.ts | 2 ++ react-icons/md/hdr-on.d.ts | 2 ++ react-icons/md/hdr-strong.d.ts | 2 ++ react-icons/md/hdr-weak.d.ts | 2 ++ react-icons/md/headset-mic.d.ts | 2 ++ react-icons/md/headset.d.ts | 2 ++ react-icons/md/healing.d.ts | 2 ++ react-icons/md/hearing.d.ts | 2 ++ react-icons/md/help-outline.d.ts | 2 ++ react-icons/md/help.d.ts | 2 ++ react-icons/md/high-quality.d.ts | 2 ++ react-icons/md/highlight-off.d.ts | 2 ++ react-icons/md/highlight-remove.d.ts | 2 ++ react-icons/md/highlight.d.ts | 2 ++ react-icons/md/history.d.ts | 2 ++ react-icons/md/home.d.ts | 2 ++ react-icons/md/hot-tub.d.ts | 2 ++ react-icons/md/hotel.d.ts | 2 ++ react-icons/md/hourglass-empty.d.ts | 2 ++ react-icons/md/hourglass-full.d.ts | 2 ++ react-icons/md/http.d.ts | 2 ++ react-icons/md/https.d.ts | 2 ++ react-icons/md/image-aspect-ratio.d.ts | 2 ++ react-icons/md/image.d.ts | 2 ++ react-icons/md/import-contacts.d.ts | 2 ++ react-icons/md/import-export.d.ts | 2 ++ react-icons/md/important-devices.d.ts | 2 ++ react-icons/md/inbox.d.ts | 2 ++ react-icons/md/indeterminate-check-box.d.ts | 2 ++ react-icons/md/index.d.ts | 1 + react-icons/md/info-outline.d.ts | 2 ++ react-icons/md/info.d.ts | 2 ++ react-icons/md/input.d.ts | 2 ++ react-icons/md/insert-chart.d.ts | 2 ++ react-icons/md/insert-comment.d.ts | 2 ++ react-icons/md/insert-drive-file.d.ts | 2 ++ react-icons/md/insert-emoticon.d.ts | 2 ++ react-icons/md/insert-invitation.d.ts | 2 ++ react-icons/md/insert-link.d.ts | 2 ++ react-icons/md/insert-photo.d.ts | 2 ++ react-icons/md/invert-colors-off.d.ts | 2 ++ react-icons/md/invert-colors-on.d.ts | 2 ++ react-icons/md/invert-colors.d.ts | 2 ++ react-icons/md/iso.d.ts | 2 ++ react-icons/md/keyboard-arrow-down.d.ts | 2 ++ react-icons/md/keyboard-arrow-left.d.ts | 2 ++ react-icons/md/keyboard-arrow-right.d.ts | 2 ++ react-icons/md/keyboard-arrow-up.d.ts | 2 ++ react-icons/md/keyboard-backspace.d.ts | 2 ++ react-icons/md/keyboard-capslock.d.ts | 2 ++ react-icons/md/keyboard-control.d.ts | 2 ++ react-icons/md/keyboard-hide.d.ts | 2 ++ react-icons/md/keyboard-return.d.ts | 2 ++ react-icons/md/keyboard-tab.d.ts | 2 ++ react-icons/md/keyboard-voice.d.ts | 2 ++ react-icons/md/keyboard.d.ts | 2 ++ react-icons/md/kitchen.d.ts | 2 ++ react-icons/md/label-outline.d.ts | 2 ++ react-icons/md/label.d.ts | 2 ++ react-icons/md/landscape.d.ts | 2 ++ react-icons/md/language.d.ts | 2 ++ react-icons/md/laptop-chromebook.d.ts | 2 ++ react-icons/md/laptop-mac.d.ts | 2 ++ react-icons/md/laptop-windows.d.ts | 2 ++ react-icons/md/laptop.d.ts | 2 ++ react-icons/md/last-page.d.ts | 2 ++ react-icons/md/launch.d.ts | 2 ++ react-icons/md/layers-clear.d.ts | 2 ++ react-icons/md/layers.d.ts | 2 ++ react-icons/md/leak-add.d.ts | 2 ++ react-icons/md/leak-remove.d.ts | 2 ++ react-icons/md/lens.d.ts | 2 ++ react-icons/md/library-add.d.ts | 2 ++ react-icons/md/library-books.d.ts | 2 ++ react-icons/md/library-music.d.ts | 2 ++ react-icons/md/lightbulb-outline.d.ts | 2 ++ react-icons/md/line-style.d.ts | 2 ++ react-icons/md/line-weight.d.ts | 2 ++ react-icons/md/linear-scale.d.ts | 2 ++ react-icons/md/link.d.ts | 2 ++ react-icons/md/linked-camera.d.ts | 2 ++ react-icons/md/list.d.ts | 2 ++ react-icons/md/live-help.d.ts | 2 ++ react-icons/md/live-tv.d.ts | 2 ++ react-icons/md/local-airport.d.ts | 2 ++ react-icons/md/local-atm.d.ts | 2 ++ react-icons/md/local-attraction.d.ts | 2 ++ react-icons/md/local-bar.d.ts | 2 ++ react-icons/md/local-cafe.d.ts | 2 ++ react-icons/md/local-car-wash.d.ts | 2 ++ react-icons/md/local-convenience-store.d.ts | 2 ++ react-icons/md/local-drink.d.ts | 2 ++ react-icons/md/local-florist.d.ts | 2 ++ react-icons/md/local-gas-station.d.ts | 2 ++ react-icons/md/local-grocery-store.d.ts | 2 ++ react-icons/md/local-hospital.d.ts | 2 ++ react-icons/md/local-hotel.d.ts | 2 ++ react-icons/md/local-laundry-service.d.ts | 2 ++ react-icons/md/local-library.d.ts | 2 ++ react-icons/md/local-mall.d.ts | 2 ++ react-icons/md/local-movies.d.ts | 2 ++ react-icons/md/local-offer.d.ts | 2 ++ react-icons/md/local-parking.d.ts | 2 ++ react-icons/md/local-pharmacy.d.ts | 2 ++ react-icons/md/local-phone.d.ts | 2 ++ react-icons/md/local-pizza.d.ts | 2 ++ react-icons/md/local-play.d.ts | 2 ++ react-icons/md/local-post-office.d.ts | 2 ++ react-icons/md/local-print-shop.d.ts | 2 ++ react-icons/md/local-restaurant.d.ts | 2 ++ react-icons/md/local-see.d.ts | 2 ++ react-icons/md/local-shipping.d.ts | 2 ++ react-icons/md/local-taxi.d.ts | 2 ++ react-icons/md/location-city.d.ts | 2 ++ react-icons/md/location-disabled.d.ts | 2 ++ react-icons/md/location-history.d.ts | 2 ++ react-icons/md/location-off.d.ts | 2 ++ react-icons/md/location-on.d.ts | 2 ++ react-icons/md/location-searching.d.ts | 2 ++ react-icons/md/lock-open.d.ts | 2 ++ react-icons/md/lock-outline.d.ts | 2 ++ react-icons/md/lock.d.ts | 2 ++ react-icons/md/looks-3.d.ts | 2 ++ react-icons/md/looks-4.d.ts | 2 ++ react-icons/md/looks-5.d.ts | 2 ++ react-icons/md/looks-6.d.ts | 2 ++ react-icons/md/looks-one.d.ts | 2 ++ react-icons/md/looks-two.d.ts | 2 ++ react-icons/md/looks.d.ts | 2 ++ react-icons/md/loop.d.ts | 2 ++ react-icons/md/loupe.d.ts | 2 ++ react-icons/md/low-priority.d.ts | 2 ++ react-icons/md/loyalty.d.ts | 2 ++ react-icons/md/mail-outline.d.ts | 2 ++ react-icons/md/mail.d.ts | 2 ++ react-icons/md/map.d.ts | 2 ++ react-icons/md/markunread-mailbox.d.ts | 2 ++ react-icons/md/markunread.d.ts | 2 ++ react-icons/md/memory.d.ts | 2 ++ react-icons/md/menu.d.ts | 2 ++ react-icons/md/merge-type.d.ts | 2 ++ react-icons/md/message.d.ts | 2 ++ react-icons/md/mic-none.d.ts | 2 ++ react-icons/md/mic-off.d.ts | 2 ++ react-icons/md/mic.d.ts | 2 ++ react-icons/md/mms.d.ts | 2 ++ react-icons/md/mode-comment.d.ts | 2 ++ react-icons/md/mode-edit.d.ts | 2 ++ react-icons/md/monetization-on.d.ts | 2 ++ react-icons/md/money-off.d.ts | 2 ++ react-icons/md/monochrome-photos.d.ts | 2 ++ react-icons/md/mood-bad.d.ts | 2 ++ react-icons/md/mood.d.ts | 2 ++ react-icons/md/more-horiz.d.ts | 2 ++ react-icons/md/more-vert.d.ts | 2 ++ react-icons/md/more.d.ts | 2 ++ react-icons/md/motorcycle.d.ts | 2 ++ react-icons/md/mouse.d.ts | 2 ++ react-icons/md/move-to-inbox.d.ts | 2 ++ react-icons/md/movie-creation.d.ts | 2 ++ react-icons/md/movie-filter.d.ts | 2 ++ react-icons/md/movie.d.ts | 2 ++ react-icons/md/multiline-chart.d.ts | 2 ++ react-icons/md/music-note.d.ts | 2 ++ react-icons/md/music-video.d.ts | 2 ++ react-icons/md/my-location.d.ts | 2 ++ react-icons/md/nature-people.d.ts | 2 ++ react-icons/md/nature.d.ts | 2 ++ react-icons/md/navigate-before.d.ts | 2 ++ react-icons/md/navigate-next.d.ts | 2 ++ react-icons/md/navigation.d.ts | 2 ++ react-icons/md/near-me.d.ts | 2 ++ react-icons/md/network-cell.d.ts | 2 ++ react-icons/md/network-check.d.ts | 2 ++ react-icons/md/network-locked.d.ts | 2 ++ react-icons/md/network-wifi.d.ts | 2 ++ react-icons/md/new-releases.d.ts | 2 ++ react-icons/md/next-week.d.ts | 2 ++ react-icons/md/nfc.d.ts | 2 ++ react-icons/md/no-encryption.d.ts | 2 ++ react-icons/md/no-sim.d.ts | 2 ++ react-icons/md/not-interested.d.ts | 2 ++ react-icons/md/note-add.d.ts | 2 ++ react-icons/md/note.d.ts | 2 ++ react-icons/md/notifications-active.d.ts | 2 ++ react-icons/md/notifications-none.d.ts | 2 ++ react-icons/md/notifications-off.d.ts | 2 ++ react-icons/md/notifications-paused.d.ts | 2 ++ react-icons/md/notifications.d.ts | 2 ++ react-icons/md/now-wallpaper.d.ts | 2 ++ react-icons/md/now-widgets.d.ts | 2 ++ react-icons/md/offline-pin.d.ts | 2 ++ react-icons/md/ondemand-video.d.ts | 2 ++ react-icons/md/opacity.d.ts | 2 ++ react-icons/md/open-in-browser.d.ts | 2 ++ react-icons/md/open-in-new.d.ts | 2 ++ react-icons/md/open-with.d.ts | 2 ++ react-icons/md/pages.d.ts | 2 ++ react-icons/md/pageview.d.ts | 2 ++ react-icons/md/palette.d.ts | 2 ++ react-icons/md/pan-tool.d.ts | 2 ++ react-icons/md/panorama-fish-eye.d.ts | 2 ++ react-icons/md/panorama-horizontal.d.ts | 2 ++ react-icons/md/panorama-vertical.d.ts | 2 ++ react-icons/md/panorama-wide-angle.d.ts | 2 ++ react-icons/md/panorama.d.ts | 2 ++ react-icons/md/party-mode.d.ts | 2 ++ react-icons/md/pause-circle-filled.d.ts | 2 ++ react-icons/md/pause-circle-outline.d.ts | 2 ++ react-icons/md/pause.d.ts | 2 ++ react-icons/md/payment.d.ts | 2 ++ react-icons/md/people-outline.d.ts | 2 ++ react-icons/md/people.d.ts | 2 ++ react-icons/md/perm-camera-mic.d.ts | 2 ++ react-icons/md/perm-contact-calendar.d.ts | 2 ++ react-icons/md/perm-data-setting.d.ts | 2 ++ react-icons/md/perm-device-information.d.ts | 2 ++ react-icons/md/perm-identity.d.ts | 2 ++ react-icons/md/perm-media.d.ts | 2 ++ react-icons/md/perm-phone-msg.d.ts | 2 ++ react-icons/md/perm-scan-wifi.d.ts | 2 ++ react-icons/md/person-add.d.ts | 2 ++ react-icons/md/person-outline.d.ts | 2 ++ react-icons/md/person-pin-circle.d.ts | 2 ++ react-icons/md/person-pin.d.ts | 2 ++ react-icons/md/person.d.ts | 2 ++ react-icons/md/personal-video.d.ts | 2 ++ react-icons/md/pets.d.ts | 2 ++ react-icons/md/phone-android.d.ts | 2 ++ react-icons/md/phone-bluetooth-speaker.d.ts | 2 ++ react-icons/md/phone-forwarded.d.ts | 2 ++ react-icons/md/phone-in-talk.d.ts | 2 ++ react-icons/md/phone-iphone.d.ts | 2 ++ react-icons/md/phone-locked.d.ts | 2 ++ react-icons/md/phone-missed.d.ts | 2 ++ react-icons/md/phone-paused.d.ts | 2 ++ react-icons/md/phone.d.ts | 2 ++ react-icons/md/phonelink-erase.d.ts | 2 ++ react-icons/md/phonelink-lock.d.ts | 2 ++ react-icons/md/phonelink-off.d.ts | 2 ++ react-icons/md/phonelink-ring.d.ts | 2 ++ react-icons/md/phonelink-setup.d.ts | 2 ++ react-icons/md/phonelink.d.ts | 2 ++ react-icons/md/photo-album.d.ts | 2 ++ react-icons/md/photo-camera.d.ts | 2 ++ react-icons/md/photo-filter.d.ts | 2 ++ react-icons/md/photo-library.d.ts | 2 ++ react-icons/md/photo-size-select-actual.d.ts | 2 ++ react-icons/md/photo-size-select-large.d.ts | 2 ++ react-icons/md/photo-size-select-small.d.ts | 2 ++ react-icons/md/photo.d.ts | 2 ++ react-icons/md/picture-as-pdf.d.ts | 2 ++ react-icons/md/picture-in-picture-alt.d.ts | 2 ++ react-icons/md/picture-in-picture.d.ts | 2 ++ react-icons/md/pie-chart-outlined.d.ts | 2 ++ react-icons/md/pie-chart.d.ts | 2 ++ react-icons/md/pin-drop.d.ts | 2 ++ react-icons/md/place.d.ts | 2 ++ react-icons/md/play-arrow.d.ts | 2 ++ react-icons/md/play-circle-filled.d.ts | 2 ++ react-icons/md/play-circle-outline.d.ts | 2 ++ react-icons/md/play-for-work.d.ts | 2 ++ react-icons/md/playlist-add-check.d.ts | 2 ++ react-icons/md/playlist-add.d.ts | 2 ++ react-icons/md/playlist-play.d.ts | 2 ++ react-icons/md/plus-one.d.ts | 2 ++ react-icons/md/poll.d.ts | 2 ++ react-icons/md/polymer.d.ts | 2 ++ react-icons/md/pool.d.ts | 2 ++ react-icons/md/portable-wifi-off.d.ts | 2 ++ react-icons/md/portrait.d.ts | 2 ++ react-icons/md/power-input.d.ts | 2 ++ react-icons/md/power-settings-new.d.ts | 2 ++ react-icons/md/power.d.ts | 2 ++ react-icons/md/pregnant-woman.d.ts | 2 ++ react-icons/md/present-to-all.d.ts | 2 ++ react-icons/md/print.d.ts | 2 ++ react-icons/md/priority-high.d.ts | 2 ++ react-icons/md/public.d.ts | 2 ++ react-icons/md/publish.d.ts | 2 ++ react-icons/md/query-builder.d.ts | 2 ++ react-icons/md/question-answer.d.ts | 2 ++ react-icons/md/queue-music.d.ts | 2 ++ react-icons/md/queue-play-next.d.ts | 2 ++ react-icons/md/queue.d.ts | 2 ++ react-icons/md/radio-button-checked.d.ts | 2 ++ react-icons/md/radio-button-unchecked.d.ts | 2 ++ react-icons/md/radio.d.ts | 2 ++ react-icons/md/rate-review.d.ts | 2 ++ react-icons/md/receipt.d.ts | 2 ++ react-icons/md/recent-actors.d.ts | 2 ++ react-icons/md/record-voice-over.d.ts | 2 ++ react-icons/md/redeem.d.ts | 2 ++ react-icons/md/redo.d.ts | 2 ++ react-icons/md/refresh.d.ts | 2 ++ react-icons/md/remove-circle-outline.d.ts | 2 ++ react-icons/md/remove-circle.d.ts | 2 ++ react-icons/md/remove-from-queue.d.ts | 2 ++ react-icons/md/remove-red-eye.d.ts | 2 ++ react-icons/md/remove-shopping-cart.d.ts | 2 ++ react-icons/md/remove.d.ts | 2 ++ react-icons/md/reorder.d.ts | 2 ++ react-icons/md/repeat-one.d.ts | 2 ++ react-icons/md/repeat.d.ts | 2 ++ react-icons/md/replay-10.d.ts | 2 ++ react-icons/md/replay-30.d.ts | 2 ++ react-icons/md/replay-5.d.ts | 2 ++ react-icons/md/replay.d.ts | 2 ++ react-icons/md/reply-all.d.ts | 2 ++ react-icons/md/reply.d.ts | 2 ++ react-icons/md/report-problem.d.ts | 2 ++ react-icons/md/report.d.ts | 2 ++ react-icons/md/restaurant-menu.d.ts | 2 ++ react-icons/md/restaurant.d.ts | 2 ++ react-icons/md/restore-page.d.ts | 2 ++ react-icons/md/restore.d.ts | 2 ++ react-icons/md/ring-volume.d.ts | 2 ++ react-icons/md/room-service.d.ts | 2 ++ react-icons/md/room.d.ts | 2 ++ react-icons/md/rotate-90-degrees-ccw.d.ts | 2 ++ react-icons/md/rotate-left.d.ts | 2 ++ react-icons/md/rotate-right.d.ts | 2 ++ react-icons/md/rounded-corner.d.ts | 2 ++ react-icons/md/router.d.ts | 2 ++ react-icons/md/rowing.d.ts | 2 ++ react-icons/md/rss-feed.d.ts | 2 ++ react-icons/md/rv-hookup.d.ts | 2 ++ react-icons/md/satellite.d.ts | 2 ++ react-icons/md/save.d.ts | 2 ++ react-icons/md/scanner.d.ts | 2 ++ react-icons/md/schedule.d.ts | 2 ++ react-icons/md/school.d.ts | 2 ++ react-icons/md/screen-lock-landscape.d.ts | 2 ++ react-icons/md/screen-lock-portrait.d.ts | 2 ++ react-icons/md/screen-lock-rotation.d.ts | 2 ++ react-icons/md/screen-rotation.d.ts | 2 ++ react-icons/md/screen-share.d.ts | 2 ++ react-icons/md/sd-card.d.ts | 2 ++ react-icons/md/sd-storage.d.ts | 2 ++ react-icons/md/search.d.ts | 2 ++ react-icons/md/security.d.ts | 2 ++ react-icons/md/select-all.d.ts | 2 ++ react-icons/md/send.d.ts | 2 ++ react-icons/md/sentiment-dissatisfied.d.ts | 2 ++ react-icons/md/sentiment-neutral.d.ts | 2 ++ react-icons/md/sentiment-satisfied.d.ts | 2 ++ react-icons/md/sentiment-very-dissatisfied.d.ts | 2 ++ react-icons/md/sentiment-very-satisfied.d.ts | 2 ++ react-icons/md/settings-applications.d.ts | 2 ++ react-icons/md/settings-backup-restore.d.ts | 2 ++ react-icons/md/settings-bluetooth.d.ts | 2 ++ react-icons/md/settings-brightness.d.ts | 2 ++ react-icons/md/settings-cell.d.ts | 2 ++ react-icons/md/settings-ethernet.d.ts | 2 ++ react-icons/md/settings-input-antenna.d.ts | 2 ++ react-icons/md/settings-input-component.d.ts | 2 ++ react-icons/md/settings-input-composite.d.ts | 2 ++ react-icons/md/settings-input-hdmi.d.ts | 2 ++ react-icons/md/settings-input-svideo.d.ts | 2 ++ react-icons/md/settings-overscan.d.ts | 2 ++ react-icons/md/settings-phone.d.ts | 2 ++ react-icons/md/settings-power.d.ts | 2 ++ react-icons/md/settings-remote.d.ts | 2 ++ react-icons/md/settings-system-daydream.d.ts | 2 ++ react-icons/md/settings-voice.d.ts | 2 ++ react-icons/md/settings.d.ts | 2 ++ react-icons/md/share.d.ts | 2 ++ react-icons/md/shop-two.d.ts | 2 ++ react-icons/md/shop.d.ts | 2 ++ react-icons/md/shopping-basket.d.ts | 2 ++ react-icons/md/shopping-cart.d.ts | 2 ++ react-icons/md/short-text.d.ts | 2 ++ react-icons/md/show-chart.d.ts | 2 ++ react-icons/md/shuffle.d.ts | 2 ++ react-icons/md/signal-cellular-4-bar.d.ts | 2 ++ .../md/signal-cellular-connected-no-internet-4-bar.d.ts | 2 ++ react-icons/md/signal-cellular-no-sim.d.ts | 2 ++ react-icons/md/signal-cellular-null.d.ts | 2 ++ react-icons/md/signal-cellular-off.d.ts | 2 ++ react-icons/md/signal-wifi-4-bar-lock.d.ts | 2 ++ react-icons/md/signal-wifi-4-bar.d.ts | 2 ++ react-icons/md/signal-wifi-off.d.ts | 2 ++ react-icons/md/sim-card-alert.d.ts | 2 ++ react-icons/md/sim-card.d.ts | 2 ++ react-icons/md/skip-next.d.ts | 2 ++ react-icons/md/skip-previous.d.ts | 2 ++ react-icons/md/slideshow.d.ts | 2 ++ react-icons/md/slow-motion-video.d.ts | 2 ++ react-icons/md/smartphone.d.ts | 2 ++ react-icons/md/smoke-free.d.ts | 2 ++ react-icons/md/smoking-rooms.d.ts | 2 ++ react-icons/md/sms-failed.d.ts | 2 ++ react-icons/md/sms.d.ts | 2 ++ react-icons/md/snooze.d.ts | 2 ++ react-icons/md/sort-by-alpha.d.ts | 2 ++ react-icons/md/sort.d.ts | 2 ++ react-icons/md/spa.d.ts | 2 ++ react-icons/md/space-bar.d.ts | 2 ++ react-icons/md/speaker-group.d.ts | 2 ++ react-icons/md/speaker-notes-off.d.ts | 2 ++ react-icons/md/speaker-notes.d.ts | 2 ++ react-icons/md/speaker-phone.d.ts | 2 ++ react-icons/md/speaker.d.ts | 2 ++ react-icons/md/spellcheck.d.ts | 2 ++ react-icons/md/star-border.d.ts | 2 ++ react-icons/md/star-half.d.ts | 2 ++ react-icons/md/star-outline.d.ts | 2 ++ react-icons/md/star.d.ts | 2 ++ react-icons/md/stars.d.ts | 2 ++ react-icons/md/stay-current-landscape.d.ts | 2 ++ react-icons/md/stay-current-portrait.d.ts | 2 ++ react-icons/md/stay-primary-landscape.d.ts | 2 ++ react-icons/md/stay-primary-portrait.d.ts | 2 ++ react-icons/md/stop-screen-share.d.ts | 2 ++ react-icons/md/stop.d.ts | 2 ++ react-icons/md/storage.d.ts | 2 ++ react-icons/md/store-mall-directory.d.ts | 2 ++ react-icons/md/store.d.ts | 2 ++ react-icons/md/straighten.d.ts | 2 ++ react-icons/md/streetview.d.ts | 2 ++ react-icons/md/strikethrough-s.d.ts | 2 ++ react-icons/md/style.d.ts | 2 ++ react-icons/md/subdirectory-arrow-left.d.ts | 2 ++ react-icons/md/subdirectory-arrow-right.d.ts | 2 ++ react-icons/md/subject.d.ts | 2 ++ react-icons/md/subscriptions.d.ts | 2 ++ react-icons/md/subtitles.d.ts | 2 ++ react-icons/md/subway.d.ts | 2 ++ react-icons/md/supervisor-account.d.ts | 2 ++ react-icons/md/surround-sound.d.ts | 2 ++ react-icons/md/swap-calls.d.ts | 2 ++ react-icons/md/swap-horiz.d.ts | 2 ++ react-icons/md/swap-vert.d.ts | 2 ++ react-icons/md/swap-vertical-circle.d.ts | 2 ++ react-icons/md/switch-camera.d.ts | 2 ++ react-icons/md/switch-video.d.ts | 2 ++ react-icons/md/sync-disabled.d.ts | 2 ++ react-icons/md/sync-problem.d.ts | 2 ++ react-icons/md/sync.d.ts | 2 ++ react-icons/md/system-update-alt.d.ts | 2 ++ react-icons/md/system-update.d.ts | 2 ++ react-icons/md/tab-unselected.d.ts | 2 ++ react-icons/md/tab.d.ts | 2 ++ react-icons/md/tablet-android.d.ts | 2 ++ react-icons/md/tablet-mac.d.ts | 2 ++ react-icons/md/tablet.d.ts | 2 ++ react-icons/md/tag-faces.d.ts | 2 ++ react-icons/md/tap-and-play.d.ts | 2 ++ react-icons/md/terrain.d.ts | 2 ++ react-icons/md/text-fields.d.ts | 2 ++ react-icons/md/text-format.d.ts | 2 ++ react-icons/md/textsms.d.ts | 2 ++ react-icons/md/texture.d.ts | 2 ++ react-icons/md/theaters.d.ts | 2 ++ react-icons/md/thumb-down.d.ts | 2 ++ react-icons/md/thumb-up.d.ts | 2 ++ react-icons/md/thumbs-up-down.d.ts | 2 ++ react-icons/md/time-to-leave.d.ts | 2 ++ react-icons/md/timelapse.d.ts | 2 ++ react-icons/md/timeline.d.ts | 2 ++ react-icons/md/timer-10.d.ts | 2 ++ react-icons/md/timer-3.d.ts | 2 ++ react-icons/md/timer-off.d.ts | 2 ++ react-icons/md/timer.d.ts | 2 ++ react-icons/md/title.d.ts | 2 ++ react-icons/md/toc.d.ts | 2 ++ react-icons/md/today.d.ts | 2 ++ react-icons/md/toll.d.ts | 2 ++ react-icons/md/tonality.d.ts | 2 ++ react-icons/md/touch-app.d.ts | 2 ++ react-icons/md/toys.d.ts | 2 ++ react-icons/md/track-changes.d.ts | 2 ++ react-icons/md/traffic.d.ts | 2 ++ react-icons/md/train.d.ts | 2 ++ react-icons/md/tram.d.ts | 2 ++ react-icons/md/transfer-within-a-station.d.ts | 2 ++ react-icons/md/transform.d.ts | 2 ++ react-icons/md/translate.d.ts | 2 ++ react-icons/md/trending-down.d.ts | 2 ++ react-icons/md/trending-flat.d.ts | 2 ++ react-icons/md/trending-neutral.d.ts | 2 ++ react-icons/md/trending-up.d.ts | 2 ++ react-icons/md/tune.d.ts | 2 ++ react-icons/md/turned-in-not.d.ts | 2 ++ react-icons/md/turned-in.d.ts | 2 ++ react-icons/md/tv.d.ts | 2 ++ react-icons/md/unarchive.d.ts | 2 ++ react-icons/md/undo.d.ts | 2 ++ react-icons/md/unfold-less.d.ts | 2 ++ react-icons/md/unfold-more.d.ts | 2 ++ react-icons/md/update.d.ts | 2 ++ react-icons/md/usb.d.ts | 2 ++ react-icons/md/verified-user.d.ts | 2 ++ react-icons/md/vertical-align-bottom.d.ts | 2 ++ react-icons/md/vertical-align-center.d.ts | 2 ++ react-icons/md/vertical-align-top.d.ts | 2 ++ react-icons/md/vibration.d.ts | 2 ++ react-icons/md/video-call.d.ts | 2 ++ react-icons/md/video-collection.d.ts | 2 ++ react-icons/md/video-label.d.ts | 2 ++ react-icons/md/video-library.d.ts | 2 ++ react-icons/md/videocam-off.d.ts | 2 ++ react-icons/md/videocam.d.ts | 2 ++ react-icons/md/videogame-asset.d.ts | 2 ++ react-icons/md/view-agenda.d.ts | 2 ++ react-icons/md/view-array.d.ts | 2 ++ react-icons/md/view-carousel.d.ts | 2 ++ react-icons/md/view-column.d.ts | 2 ++ react-icons/md/view-comfortable.d.ts | 2 ++ react-icons/md/view-comfy.d.ts | 2 ++ react-icons/md/view-compact.d.ts | 2 ++ react-icons/md/view-day.d.ts | 2 ++ react-icons/md/view-headline.d.ts | 2 ++ react-icons/md/view-list.d.ts | 2 ++ react-icons/md/view-module.d.ts | 2 ++ react-icons/md/view-quilt.d.ts | 2 ++ react-icons/md/view-stream.d.ts | 2 ++ react-icons/md/view-week.d.ts | 2 ++ react-icons/md/vignette.d.ts | 2 ++ react-icons/md/visibility-off.d.ts | 2 ++ react-icons/md/visibility.d.ts | 2 ++ react-icons/md/voice-chat.d.ts | 2 ++ react-icons/md/voicemail.d.ts | 2 ++ react-icons/md/volume-down.d.ts | 2 ++ react-icons/md/volume-mute.d.ts | 2 ++ react-icons/md/volume-off.d.ts | 2 ++ react-icons/md/volume-up.d.ts | 2 ++ react-icons/md/vpn-key.d.ts | 2 ++ react-icons/md/vpn-lock.d.ts | 2 ++ react-icons/md/wallpaper.d.ts | 2 ++ react-icons/md/warning.d.ts | 2 ++ react-icons/md/watch-later.d.ts | 2 ++ react-icons/md/watch.d.ts | 2 ++ react-icons/md/wb-auto.d.ts | 2 ++ react-icons/md/wb-cloudy.d.ts | 2 ++ react-icons/md/wb-incandescent.d.ts | 2 ++ react-icons/md/wb-iridescent.d.ts | 2 ++ react-icons/md/wb-sunny.d.ts | 2 ++ react-icons/md/wc.d.ts | 2 ++ react-icons/md/web-asset.d.ts | 2 ++ react-icons/md/web.d.ts | 2 ++ react-icons/md/weekend.d.ts | 2 ++ react-icons/md/whatshot.d.ts | 2 ++ react-icons/md/widgets.d.ts | 2 ++ react-icons/md/wifi-lock.d.ts | 2 ++ react-icons/md/wifi-tethering.d.ts | 2 ++ react-icons/md/wifi.d.ts | 2 ++ react-icons/md/work.d.ts | 2 ++ react-icons/md/wrap-text.d.ts | 2 ++ react-icons/md/youtube-searched-for.d.ts | 2 ++ react-icons/md/zoom-in.d.ts | 2 ++ react-icons/md/zoom-out-map.d.ts | 2 ++ react-icons/md/zoom-out.d.ts | 2 ++ react-icons/ti/adjust-brightness.d.ts | 2 ++ react-icons/ti/adjust-contrast.d.ts | 2 ++ react-icons/ti/anchor-outline.d.ts | 2 ++ react-icons/ti/anchor.d.ts | 2 ++ react-icons/ti/archive.d.ts | 2 ++ react-icons/ti/arrow-back-outline.d.ts | 2 ++ react-icons/ti/arrow-back.d.ts | 2 ++ react-icons/ti/arrow-down-outline.d.ts | 2 ++ react-icons/ti/arrow-down-thick.d.ts | 2 ++ react-icons/ti/arrow-down.d.ts | 2 ++ react-icons/ti/arrow-forward-outline.d.ts | 2 ++ react-icons/ti/arrow-forward.d.ts | 2 ++ react-icons/ti/arrow-left-outline.d.ts | 2 ++ react-icons/ti/arrow-left-thick.d.ts | 2 ++ react-icons/ti/arrow-left.d.ts | 2 ++ react-icons/ti/arrow-loop-outline.d.ts | 2 ++ react-icons/ti/arrow-loop.d.ts | 2 ++ react-icons/ti/arrow-maximise-outline.d.ts | 2 ++ react-icons/ti/arrow-maximise.d.ts | 2 ++ react-icons/ti/arrow-minimise-outline.d.ts | 2 ++ react-icons/ti/arrow-minimise.d.ts | 2 ++ react-icons/ti/arrow-move-outline.d.ts | 2 ++ react-icons/ti/arrow-move.d.ts | 2 ++ react-icons/ti/arrow-repeat-outline.d.ts | 2 ++ react-icons/ti/arrow-repeat.d.ts | 2 ++ react-icons/ti/arrow-right-outline.d.ts | 2 ++ react-icons/ti/arrow-right-thick.d.ts | 2 ++ react-icons/ti/arrow-right.d.ts | 2 ++ react-icons/ti/arrow-shuffle.d.ts | 2 ++ react-icons/ti/arrow-sorted-down.d.ts | 2 ++ react-icons/ti/arrow-sorted-up.d.ts | 2 ++ react-icons/ti/arrow-sync-outline.d.ts | 2 ++ react-icons/ti/arrow-sync.d.ts | 2 ++ react-icons/ti/arrow-unsorted.d.ts | 2 ++ react-icons/ti/arrow-up-outline.d.ts | 2 ++ react-icons/ti/arrow-up-thick.d.ts | 2 ++ react-icons/ti/arrow-up.d.ts | 2 ++ react-icons/ti/at.d.ts | 2 ++ react-icons/ti/attachment-outline.d.ts | 2 ++ react-icons/ti/attachment.d.ts | 2 ++ react-icons/ti/backspace-outline.d.ts | 2 ++ react-icons/ti/backspace.d.ts | 2 ++ react-icons/ti/battery-charge.d.ts | 2 ++ react-icons/ti/battery-full.d.ts | 2 ++ react-icons/ti/battery-high.d.ts | 2 ++ react-icons/ti/battery-low.d.ts | 2 ++ react-icons/ti/battery-mid.d.ts | 2 ++ react-icons/ti/beaker.d.ts | 2 ++ react-icons/ti/beer.d.ts | 2 ++ react-icons/ti/bell.d.ts | 2 ++ react-icons/ti/book.d.ts | 2 ++ react-icons/ti/bookmark.d.ts | 2 ++ react-icons/ti/briefcase.d.ts | 2 ++ react-icons/ti/brush.d.ts | 2 ++ react-icons/ti/business-card.d.ts | 2 ++ react-icons/ti/calculator.d.ts | 2 ++ react-icons/ti/calendar-outline.d.ts | 2 ++ react-icons/ti/calendar.d.ts | 2 ++ react-icons/ti/calender-outline.d.ts | 2 ++ react-icons/ti/calender.d.ts | 2 ++ react-icons/ti/camera-outline.d.ts | 2 ++ react-icons/ti/camera.d.ts | 2 ++ react-icons/ti/cancel-outline.d.ts | 2 ++ react-icons/ti/cancel.d.ts | 2 ++ react-icons/ti/chart-area-outline.d.ts | 2 ++ react-icons/ti/chart-area.d.ts | 2 ++ react-icons/ti/chart-bar-outline.d.ts | 2 ++ react-icons/ti/chart-bar.d.ts | 2 ++ react-icons/ti/chart-line-outline.d.ts | 2 ++ react-icons/ti/chart-line.d.ts | 2 ++ react-icons/ti/chart-pie-outline.d.ts | 2 ++ react-icons/ti/chart-pie.d.ts | 2 ++ react-icons/ti/chevron-left-outline.d.ts | 2 ++ react-icons/ti/chevron-left.d.ts | 2 ++ react-icons/ti/chevron-right-outline.d.ts | 2 ++ react-icons/ti/chevron-right.d.ts | 2 ++ react-icons/ti/clipboard.d.ts | 2 ++ react-icons/ti/cloud-storage-outline.d.ts | 2 ++ react-icons/ti/cloud-storage.d.ts | 2 ++ react-icons/ti/code-outline.d.ts | 2 ++ react-icons/ti/code.d.ts | 2 ++ react-icons/ti/coffee.d.ts | 2 ++ react-icons/ti/cog-outline.d.ts | 2 ++ react-icons/ti/cog.d.ts | 2 ++ react-icons/ti/compass.d.ts | 2 ++ react-icons/ti/contacts.d.ts | 2 ++ react-icons/ti/credit-card.d.ts | 2 ++ react-icons/ti/cross.d.ts | 2 ++ react-icons/ti/css3.d.ts | 2 ++ react-icons/ti/database.d.ts | 2 ++ react-icons/ti/delete-outline.d.ts | 2 ++ react-icons/ti/delete.d.ts | 2 ++ react-icons/ti/device-desktop.d.ts | 2 ++ react-icons/ti/device-laptop.d.ts | 2 ++ react-icons/ti/device-phone.d.ts | 2 ++ react-icons/ti/device-tablet.d.ts | 2 ++ react-icons/ti/directions.d.ts | 2 ++ react-icons/ti/divide-outline.d.ts | 2 ++ react-icons/ti/divide.d.ts | 2 ++ react-icons/ti/document-add.d.ts | 2 ++ react-icons/ti/document-delete.d.ts | 2 ++ react-icons/ti/document-text.d.ts | 2 ++ react-icons/ti/document.d.ts | 2 ++ react-icons/ti/download-outline.d.ts | 2 ++ react-icons/ti/download.d.ts | 2 ++ react-icons/ti/dropbox.d.ts | 2 ++ react-icons/ti/edit.d.ts | 2 ++ react-icons/ti/eject-outline.d.ts | 2 ++ react-icons/ti/eject.d.ts | 2 ++ react-icons/ti/equals-outline.d.ts | 2 ++ react-icons/ti/equals.d.ts | 2 ++ react-icons/ti/export-outline.d.ts | 2 ++ react-icons/ti/export.d.ts | 2 ++ react-icons/ti/eye-outline.d.ts | 2 ++ react-icons/ti/eye.d.ts | 2 ++ react-icons/ti/feather.d.ts | 2 ++ react-icons/ti/film.d.ts | 2 ++ react-icons/ti/filter.d.ts | 2 ++ react-icons/ti/flag-outline.d.ts | 2 ++ react-icons/ti/flag.d.ts | 2 ++ react-icons/ti/flash-outline.d.ts | 2 ++ react-icons/ti/flash.d.ts | 2 ++ react-icons/ti/flow-children.d.ts | 2 ++ react-icons/ti/flow-merge.d.ts | 2 ++ react-icons/ti/flow-parallel.d.ts | 2 ++ react-icons/ti/flow-switch.d.ts | 2 ++ react-icons/ti/folder-add.d.ts | 2 ++ react-icons/ti/folder-delete.d.ts | 2 ++ react-icons/ti/folder-open.d.ts | 2 ++ react-icons/ti/folder.d.ts | 2 ++ react-icons/ti/gift.d.ts | 2 ++ react-icons/ti/globe-outline.d.ts | 2 ++ react-icons/ti/globe.d.ts | 2 ++ react-icons/ti/group-outline.d.ts | 2 ++ react-icons/ti/group.d.ts | 2 ++ react-icons/ti/headphones.d.ts | 2 ++ react-icons/ti/heart-full-outline.d.ts | 2 ++ react-icons/ti/heart-half-outline.d.ts | 2 ++ react-icons/ti/heart-outline.d.ts | 2 ++ react-icons/ti/heart.d.ts | 2 ++ react-icons/ti/home-outline.d.ts | 2 ++ react-icons/ti/home.d.ts | 2 ++ react-icons/ti/html5.d.ts | 2 ++ react-icons/ti/image-outline.d.ts | 2 ++ react-icons/ti/image.d.ts | 2 ++ react-icons/ti/index.d.ts | 1 + react-icons/ti/infinity-outline.d.ts | 2 ++ react-icons/ti/infinity.d.ts | 2 ++ react-icons/ti/info-large-outline.d.ts | 2 ++ react-icons/ti/info-large.d.ts | 2 ++ react-icons/ti/info-outline.d.ts | 2 ++ react-icons/ti/info.d.ts | 2 ++ react-icons/ti/input-checked-outline.d.ts | 2 ++ react-icons/ti/input-checked.d.ts | 2 ++ react-icons/ti/key-outline.d.ts | 2 ++ react-icons/ti/key.d.ts | 2 ++ react-icons/ti/keyboard.d.ts | 2 ++ react-icons/ti/leaf.d.ts | 2 ++ react-icons/ti/lightbulb.d.ts | 2 ++ react-icons/ti/link-outline.d.ts | 2 ++ react-icons/ti/link.d.ts | 2 ++ react-icons/ti/location-arrow-outline.d.ts | 2 ++ react-icons/ti/location-arrow.d.ts | 2 ++ react-icons/ti/location-outline.d.ts | 2 ++ react-icons/ti/location.d.ts | 2 ++ react-icons/ti/lock-closed-outline.d.ts | 2 ++ react-icons/ti/lock-closed.d.ts | 2 ++ react-icons/ti/lock-open-outline.d.ts | 2 ++ react-icons/ti/lock-open.d.ts | 2 ++ react-icons/ti/mail.d.ts | 2 ++ react-icons/ti/map.d.ts | 2 ++ react-icons/ti/media-eject-outline.d.ts | 2 ++ react-icons/ti/media-eject.d.ts | 2 ++ react-icons/ti/media-fast-forward-outline.d.ts | 2 ++ react-icons/ti/media-fast-forward.d.ts | 2 ++ react-icons/ti/media-pause-outline.d.ts | 2 ++ react-icons/ti/media-pause.d.ts | 2 ++ react-icons/ti/media-play-outline.d.ts | 2 ++ react-icons/ti/media-play-reverse-outline.d.ts | 2 ++ react-icons/ti/media-play-reverse.d.ts | 2 ++ react-icons/ti/media-play.d.ts | 2 ++ react-icons/ti/media-record-outline.d.ts | 2 ++ react-icons/ti/media-record.d.ts | 2 ++ react-icons/ti/media-rewind-outline.d.ts | 2 ++ react-icons/ti/media-rewind.d.ts | 2 ++ react-icons/ti/media-stop-outline.d.ts | 2 ++ react-icons/ti/media-stop.d.ts | 2 ++ react-icons/ti/message-typing.d.ts | 2 ++ react-icons/ti/message.d.ts | 2 ++ react-icons/ti/messages.d.ts | 2 ++ react-icons/ti/microphone-outline.d.ts | 2 ++ react-icons/ti/microphone.d.ts | 2 ++ react-icons/ti/minus-outline.d.ts | 2 ++ react-icons/ti/minus.d.ts | 2 ++ react-icons/ti/mortar-board.d.ts | 2 ++ react-icons/ti/news.d.ts | 2 ++ react-icons/ti/notes-outline.d.ts | 2 ++ react-icons/ti/notes.d.ts | 2 ++ react-icons/ti/pen.d.ts | 2 ++ react-icons/ti/pencil.d.ts | 2 ++ react-icons/ti/phone-outline.d.ts | 2 ++ react-icons/ti/phone.d.ts | 2 ++ react-icons/ti/pi-outline.d.ts | 2 ++ react-icons/ti/pi.d.ts | 2 ++ react-icons/ti/pin-outline.d.ts | 2 ++ react-icons/ti/pin.d.ts | 2 ++ react-icons/ti/pipette.d.ts | 2 ++ react-icons/ti/plane-outline.d.ts | 2 ++ react-icons/ti/plane.d.ts | 2 ++ react-icons/ti/plug.d.ts | 2 ++ react-icons/ti/plus-outline.d.ts | 2 ++ react-icons/ti/plus.d.ts | 2 ++ react-icons/ti/point-of-interest-outline.d.ts | 2 ++ react-icons/ti/point-of-interest.d.ts | 2 ++ react-icons/ti/power-outline.d.ts | 2 ++ react-icons/ti/power.d.ts | 2 ++ react-icons/ti/printer.d.ts | 2 ++ react-icons/ti/puzzle-outline.d.ts | 2 ++ react-icons/ti/puzzle.d.ts | 2 ++ react-icons/ti/radar-outline.d.ts | 2 ++ react-icons/ti/radar.d.ts | 2 ++ react-icons/ti/refresh-outline.d.ts | 2 ++ react-icons/ti/refresh.d.ts | 2 ++ react-icons/ti/rss-outline.d.ts | 2 ++ react-icons/ti/rss.d.ts | 2 ++ react-icons/ti/scissors-outline.d.ts | 2 ++ react-icons/ti/scissors.d.ts | 2 ++ react-icons/ti/shopping-bag.d.ts | 2 ++ react-icons/ti/shopping-cart.d.ts | 2 ++ react-icons/ti/social-at-circular.d.ts | 2 ++ react-icons/ti/social-dribbble-circular.d.ts | 2 ++ react-icons/ti/social-dribbble.d.ts | 2 ++ react-icons/ti/social-facebook-circular.d.ts | 2 ++ react-icons/ti/social-facebook.d.ts | 2 ++ react-icons/ti/social-flickr-circular.d.ts | 2 ++ react-icons/ti/social-flickr.d.ts | 2 ++ react-icons/ti/social-github-circular.d.ts | 2 ++ react-icons/ti/social-github.d.ts | 2 ++ react-icons/ti/social-google-plus-circular.d.ts | 2 ++ react-icons/ti/social-google-plus.d.ts | 2 ++ react-icons/ti/social-instagram-circular.d.ts | 2 ++ react-icons/ti/social-instagram.d.ts | 2 ++ react-icons/ti/social-last-fm-circular.d.ts | 2 ++ react-icons/ti/social-last-fm.d.ts | 2 ++ react-icons/ti/social-linkedin-circular.d.ts | 2 ++ react-icons/ti/social-linkedin.d.ts | 2 ++ react-icons/ti/social-pinterest-circular.d.ts | 2 ++ react-icons/ti/social-pinterest.d.ts | 2 ++ react-icons/ti/social-skype-outline.d.ts | 2 ++ react-icons/ti/social-skype.d.ts | 2 ++ react-icons/ti/social-tumbler-circular.d.ts | 2 ++ react-icons/ti/social-tumbler.d.ts | 2 ++ react-icons/ti/social-twitter-circular.d.ts | 2 ++ react-icons/ti/social-twitter.d.ts | 2 ++ react-icons/ti/social-vimeo-circular.d.ts | 2 ++ react-icons/ti/social-vimeo.d.ts | 2 ++ react-icons/ti/social-youtube-circular.d.ts | 2 ++ react-icons/ti/social-youtube.d.ts | 2 ++ react-icons/ti/sort-alphabetically-outline.d.ts | 2 ++ react-icons/ti/sort-alphabetically.d.ts | 2 ++ react-icons/ti/sort-numerically-outline.d.ts | 2 ++ react-icons/ti/sort-numerically.d.ts | 2 ++ react-icons/ti/spanner-outline.d.ts | 2 ++ react-icons/ti/spanner.d.ts | 2 ++ react-icons/ti/spiral.d.ts | 2 ++ react-icons/ti/star-full-outline.d.ts | 2 ++ react-icons/ti/star-half-outline.d.ts | 2 ++ react-icons/ti/star-half.d.ts | 2 ++ react-icons/ti/star-outline.d.ts | 2 ++ react-icons/ti/star.d.ts | 2 ++ react-icons/ti/starburst-outline.d.ts | 2 ++ react-icons/ti/starburst.d.ts | 2 ++ react-icons/ti/stopwatch.d.ts | 2 ++ react-icons/ti/support.d.ts | 2 ++ react-icons/ti/tabs-outline.d.ts | 2 ++ react-icons/ti/tag.d.ts | 2 ++ react-icons/ti/tags.d.ts | 2 ++ react-icons/ti/th-large-outline.d.ts | 2 ++ react-icons/ti/th-large.d.ts | 2 ++ react-icons/ti/th-list-outline.d.ts | 2 ++ react-icons/ti/th-list.d.ts | 2 ++ react-icons/ti/th-menu-outline.d.ts | 2 ++ react-icons/ti/th-menu.d.ts | 2 ++ react-icons/ti/th-small-outline.d.ts | 2 ++ react-icons/ti/th-small.d.ts | 2 ++ react-icons/ti/thermometer.d.ts | 2 ++ react-icons/ti/thumbs-down.d.ts | 2 ++ react-icons/ti/thumbs-ok.d.ts | 2 ++ react-icons/ti/thumbs-up.d.ts | 2 ++ react-icons/ti/tick-outline.d.ts | 2 ++ react-icons/ti/tick.d.ts | 2 ++ react-icons/ti/ticket.d.ts | 2 ++ react-icons/ti/time.d.ts | 2 ++ react-icons/ti/times-outline.d.ts | 2 ++ react-icons/ti/times.d.ts | 2 ++ react-icons/ti/trash.d.ts | 2 ++ react-icons/ti/tree.d.ts | 2 ++ react-icons/ti/upload-outline.d.ts | 2 ++ react-icons/ti/upload.d.ts | 2 ++ react-icons/ti/user-add-outline.d.ts | 2 ++ react-icons/ti/user-add.d.ts | 2 ++ react-icons/ti/user-delete-outline.d.ts | 2 ++ react-icons/ti/user-delete.d.ts | 2 ++ react-icons/ti/user-outline.d.ts | 2 ++ react-icons/ti/user.d.ts | 2 ++ react-icons/ti/vendor-android.d.ts | 2 ++ react-icons/ti/vendor-apple.d.ts | 2 ++ react-icons/ti/vendor-microsoft.d.ts | 2 ++ react-icons/ti/video-outline.d.ts | 2 ++ react-icons/ti/video.d.ts | 2 ++ react-icons/ti/volume-down.d.ts | 2 ++ react-icons/ti/volume-mute.d.ts | 2 ++ react-icons/ti/volume-up.d.ts | 2 ++ react-icons/ti/volume.d.ts | 2 ++ react-icons/ti/warning-outline.d.ts | 2 ++ react-icons/ti/warning.d.ts | 2 ++ react-icons/ti/watch.d.ts | 2 ++ react-icons/ti/waves-outline.d.ts | 2 ++ react-icons/ti/waves.d.ts | 2 ++ react-icons/ti/weather-cloudy.d.ts | 2 ++ react-icons/ti/weather-downpour.d.ts | 2 ++ react-icons/ti/weather-night.d.ts | 2 ++ react-icons/ti/weather-partly-sunny.d.ts | 2 ++ react-icons/ti/weather-shower.d.ts | 2 ++ react-icons/ti/weather-snow.d.ts | 2 ++ react-icons/ti/weather-stormy.d.ts | 2 ++ react-icons/ti/weather-sunny.d.ts | 2 ++ react-icons/ti/weather-windy-cloudy.d.ts | 2 ++ react-icons/ti/weather-windy.d.ts | 2 ++ react-icons/ti/wi-fi-outline.d.ts | 2 ++ react-icons/ti/wi-fi.d.ts | 2 ++ react-icons/ti/wine.d.ts | 2 ++ react-icons/ti/world-outline.d.ts | 2 ++ react-icons/ti/world.d.ts | 2 ++ react-icons/ti/zoom-in-outline.d.ts | 2 ++ react-icons/ti/zoom-in.d.ts | 2 ++ react-icons/ti/zoom-out-outline.d.ts | 2 ++ react-icons/ti/zoom-out.d.ts | 2 ++ react-icons/ti/zoom-outline.d.ts | 2 ++ react-icons/ti/zoom.d.ts | 2 ++ 2830 files changed, 5654 insertions(+), 1 deletion(-) diff --git a/react-icon-base/index.d.ts b/react-icon-base/index.d.ts index 1db440805e..c0246569f6 100644 --- a/react-icon-base/index.d.ts +++ b/react-icon-base/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/gorangajic/react-icon-base#readme // Definitions by: Alexandre Paré // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 import * as React from 'react'; diff --git a/react-icons/fa/500px.d.ts b/react-icons/fa/500px.d.ts index 6cd775910c..867a4e29d6 100644 --- a/react-icons/fa/500px.d.ts +++ b/react-icons/fa/500px.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class Fa500px extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/adjust.d.ts b/react-icons/fa/adjust.d.ts index 0e4a87e7da..8704a15629 100644 --- a/react-icons/fa/adjust.d.ts +++ b/react-icons/fa/adjust.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAdjust extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/adn.d.ts b/react-icons/fa/adn.d.ts index 2f7f3aa354..e74a778f05 100644 --- a/react-icons/fa/adn.d.ts +++ b/react-icons/fa/adn.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAdn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-center.d.ts b/react-icons/fa/align-center.d.ts index 9b829faed4..089eef8c6e 100644 --- a/react-icons/fa/align-center.d.ts +++ b/react-icons/fa/align-center.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-justify.d.ts b/react-icons/fa/align-justify.d.ts index 60f8ba2b5e..9c3203b5fa 100644 --- a/react-icons/fa/align-justify.d.ts +++ b/react-icons/fa/align-justify.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAlignJustify extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-left.d.ts b/react-icons/fa/align-left.d.ts index b0e9810c70..33ffb7b833 100644 --- a/react-icons/fa/align-left.d.ts +++ b/react-icons/fa/align-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAlignLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/align-right.d.ts b/react-icons/fa/align-right.d.ts index c76cc23e94..cf167f687a 100644 --- a/react-icons/fa/align-right.d.ts +++ b/react-icons/fa/align-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAlignRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/amazon.d.ts b/react-icons/fa/amazon.d.ts index 62ad6f65d4..cf455e25d5 100644 --- a/react-icons/fa/amazon.d.ts +++ b/react-icons/fa/amazon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAmazon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ambulance.d.ts b/react-icons/fa/ambulance.d.ts index c98200e217..f92f9caf66 100644 --- a/react-icons/fa/ambulance.d.ts +++ b/react-icons/fa/ambulance.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAmbulance extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/american-sign-language-interpreting.d.ts b/react-icons/fa/american-sign-language-interpreting.d.ts index 9dbc9abf90..05b8d6d797 100644 --- a/react-icons/fa/american-sign-language-interpreting.d.ts +++ b/react-icons/fa/american-sign-language-interpreting.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAmericanSignLanguageInterpreting extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/anchor.d.ts b/react-icons/fa/anchor.d.ts index 73d2e7f091..12ed581ee6 100644 --- a/react-icons/fa/anchor.d.ts +++ b/react-icons/fa/anchor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAnchor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/android.d.ts b/react-icons/fa/android.d.ts index f465e726fa..abc52a03d0 100644 --- a/react-icons/fa/android.d.ts +++ b/react-icons/fa/android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angellist.d.ts b/react-icons/fa/angellist.d.ts index 8a96a58db6..8d0bcae4ac 100644 --- a/react-icons/fa/angellist.d.ts +++ b/react-icons/fa/angellist.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngellist extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-down.d.ts b/react-icons/fa/angle-double-down.d.ts index 93cdff317c..64f256e161 100644 --- a/react-icons/fa/angle-double-down.d.ts +++ b/react-icons/fa/angle-double-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleDoubleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-left.d.ts b/react-icons/fa/angle-double-left.d.ts index c2787320e9..b5c33859ff 100644 --- a/react-icons/fa/angle-double-left.d.ts +++ b/react-icons/fa/angle-double-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleDoubleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-right.d.ts b/react-icons/fa/angle-double-right.d.ts index 4456e6f242..1bbf095fa5 100644 --- a/react-icons/fa/angle-double-right.d.ts +++ b/react-icons/fa/angle-double-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleDoubleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-double-up.d.ts b/react-icons/fa/angle-double-up.d.ts index 267158ffd0..6c845dec75 100644 --- a/react-icons/fa/angle-double-up.d.ts +++ b/react-icons/fa/angle-double-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleDoubleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-down.d.ts b/react-icons/fa/angle-down.d.ts index 6150f8506c..aeb40ca0f2 100644 --- a/react-icons/fa/angle-down.d.ts +++ b/react-icons/fa/angle-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-left.d.ts b/react-icons/fa/angle-left.d.ts index ae1d06beb4..9b706c4ce1 100644 --- a/react-icons/fa/angle-left.d.ts +++ b/react-icons/fa/angle-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-right.d.ts b/react-icons/fa/angle-right.d.ts index 8980ed305c..e603d8cc8b 100644 --- a/react-icons/fa/angle-right.d.ts +++ b/react-icons/fa/angle-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/angle-up.d.ts b/react-icons/fa/angle-up.d.ts index 7a7bcc8330..b3151e532c 100644 --- a/react-icons/fa/angle-up.d.ts +++ b/react-icons/fa/angle-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAngleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/apple.d.ts b/react-icons/fa/apple.d.ts index 868b275541..3b75c09c8b 100644 --- a/react-icons/fa/apple.d.ts +++ b/react-icons/fa/apple.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/archive.d.ts b/react-icons/fa/archive.d.ts index 661ef707ee..7912034887 100644 --- a/react-icons/fa/archive.d.ts +++ b/react-icons/fa/archive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/area-chart.d.ts b/react-icons/fa/area-chart.d.ts index 98113bccba..1c5b546f4c 100644 --- a/react-icons/fa/area-chart.d.ts +++ b/react-icons/fa/area-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAreaChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-down.d.ts b/react-icons/fa/arrow-circle-down.d.ts index 300f9f1602..a86121eb36 100644 --- a/react-icons/fa/arrow-circle-down.d.ts +++ b/react-icons/fa/arrow-circle-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-left.d.ts b/react-icons/fa/arrow-circle-left.d.ts index d72936b057..2fad87e064 100644 --- a/react-icons/fa/arrow-circle-left.d.ts +++ b/react-icons/fa/arrow-circle-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-down.d.ts b/react-icons/fa/arrow-circle-o-down.d.ts index 56948ff974..8f184d081c 100644 --- a/react-icons/fa/arrow-circle-o-down.d.ts +++ b/react-icons/fa/arrow-circle-o-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-left.d.ts b/react-icons/fa/arrow-circle-o-left.d.ts index f9be513faa..a1e6ec2586 100644 --- a/react-icons/fa/arrow-circle-o-left.d.ts +++ b/react-icons/fa/arrow-circle-o-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-right.d.ts b/react-icons/fa/arrow-circle-o-right.d.ts index d5d61aae64..5d78a23d31 100644 --- a/react-icons/fa/arrow-circle-o-right.d.ts +++ b/react-icons/fa/arrow-circle-o-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-o-up.d.ts b/react-icons/fa/arrow-circle-o-up.d.ts index 17f5c6731c..864f49382c 100644 --- a/react-icons/fa/arrow-circle-o-up.d.ts +++ b/react-icons/fa/arrow-circle-o-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-right.d.ts b/react-icons/fa/arrow-circle-right.d.ts index 7a612f6537..21bfbd60fd 100644 --- a/react-icons/fa/arrow-circle-right.d.ts +++ b/react-icons/fa/arrow-circle-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-circle-up.d.ts b/react-icons/fa/arrow-circle-up.d.ts index fcb3000fdd..e9dad57814 100644 --- a/react-icons/fa/arrow-circle-up.d.ts +++ b/react-icons/fa/arrow-circle-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowCircleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-down.d.ts b/react-icons/fa/arrow-down.d.ts index eeae164d95..5c2d61b150 100644 --- a/react-icons/fa/arrow-down.d.ts +++ b/react-icons/fa/arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-left.d.ts b/react-icons/fa/arrow-left.d.ts index 298c49a23b..e010cc9769 100644 --- a/react-icons/fa/arrow-left.d.ts +++ b/react-icons/fa/arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-right.d.ts b/react-icons/fa/arrow-right.d.ts index 0aa3845323..8f1a167bcf 100644 --- a/react-icons/fa/arrow-right.d.ts +++ b/react-icons/fa/arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrow-up.d.ts b/react-icons/fa/arrow-up.d.ts index d089c3103c..778b94c152 100644 --- a/react-icons/fa/arrow-up.d.ts +++ b/react-icons/fa/arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-alt.d.ts b/react-icons/fa/arrows-alt.d.ts index d156f801c5..5f1b0cbfa8 100644 --- a/react-icons/fa/arrows-alt.d.ts +++ b/react-icons/fa/arrows-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowsAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-h.d.ts b/react-icons/fa/arrows-h.d.ts index 99fa527549..8cec86ccc2 100644 --- a/react-icons/fa/arrows-h.d.ts +++ b/react-icons/fa/arrows-h.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowsH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows-v.d.ts b/react-icons/fa/arrows-v.d.ts index 69c4e269b3..9938462c7d 100644 --- a/react-icons/fa/arrows-v.d.ts +++ b/react-icons/fa/arrows-v.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrowsV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/arrows.d.ts b/react-icons/fa/arrows.d.ts index d598e0db3d..2e409a1a37 100644 --- a/react-icons/fa/arrows.d.ts +++ b/react-icons/fa/arrows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaArrows extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/assistive-listening-systems.d.ts b/react-icons/fa/assistive-listening-systems.d.ts index 55ffe3f911..3b1cb580c6 100644 --- a/react-icons/fa/assistive-listening-systems.d.ts +++ b/react-icons/fa/assistive-listening-systems.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAssistiveListeningSystems extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/asterisk.d.ts b/react-icons/fa/asterisk.d.ts index 01052ec8e5..95a1dbcc88 100644 --- a/react-icons/fa/asterisk.d.ts +++ b/react-icons/fa/asterisk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAsterisk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/at.d.ts b/react-icons/fa/at.d.ts index 4c94b320d7..25715d0a09 100644 --- a/react-icons/fa/at.d.ts +++ b/react-icons/fa/at.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/audio-description.d.ts b/react-icons/fa/audio-description.d.ts index ecd10e5475..b740b28ae7 100644 --- a/react-icons/fa/audio-description.d.ts +++ b/react-icons/fa/audio-description.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAudioDescription extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/automobile.d.ts b/react-icons/fa/automobile.d.ts index c60eb85667..3fa0e60b15 100644 --- a/react-icons/fa/automobile.d.ts +++ b/react-icons/fa/automobile.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaAutomobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/backward.d.ts b/react-icons/fa/backward.d.ts index 8115296c03..500e6ee94b 100644 --- a/react-icons/fa/backward.d.ts +++ b/react-icons/fa/backward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/balance-scale.d.ts b/react-icons/fa/balance-scale.d.ts index 4e9b4e75b0..11fb788b37 100644 --- a/react-icons/fa/balance-scale.d.ts +++ b/react-icons/fa/balance-scale.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBalanceScale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ban.d.ts b/react-icons/fa/ban.d.ts index d8fd4b0d89..7b26dacb76 100644 --- a/react-icons/fa/ban.d.ts +++ b/react-icons/fa/ban.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBan extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bank.d.ts b/react-icons/fa/bank.d.ts index 9046e5effa..7e02dd4dce 100644 --- a/react-icons/fa/bank.d.ts +++ b/react-icons/fa/bank.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBank extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bar-chart.d.ts b/react-icons/fa/bar-chart.d.ts index cba898db53..f0033618f2 100644 --- a/react-icons/fa/bar-chart.d.ts +++ b/react-icons/fa/bar-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBarChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/barcode.d.ts b/react-icons/fa/barcode.d.ts index eea3aaf98a..7df778e493 100644 --- a/react-icons/fa/barcode.d.ts +++ b/react-icons/fa/barcode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBarcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bars.d.ts b/react-icons/fa/bars.d.ts index 4488a732b9..93dada143a 100644 --- a/react-icons/fa/bars.d.ts +++ b/react-icons/fa/bars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-0.d.ts b/react-icons/fa/battery-0.d.ts index c2ea875221..6c94d24f2c 100644 --- a/react-icons/fa/battery-0.d.ts +++ b/react-icons/fa/battery-0.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBattery0 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-1.d.ts b/react-icons/fa/battery-1.d.ts index 21303702b7..5add990044 100644 --- a/react-icons/fa/battery-1.d.ts +++ b/react-icons/fa/battery-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBattery1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-2.d.ts b/react-icons/fa/battery-2.d.ts index 0207db7a4c..1eb7d788a6 100644 --- a/react-icons/fa/battery-2.d.ts +++ b/react-icons/fa/battery-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBattery2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-3.d.ts b/react-icons/fa/battery-3.d.ts index 33c32bbedd..20c5a85452 100644 --- a/react-icons/fa/battery-3.d.ts +++ b/react-icons/fa/battery-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBattery3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/battery-4.d.ts b/react-icons/fa/battery-4.d.ts index 8830be7d8e..24f6d83561 100644 --- a/react-icons/fa/battery-4.d.ts +++ b/react-icons/fa/battery-4.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBattery4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bed.d.ts b/react-icons/fa/bed.d.ts index 0bbfb2c1d5..4da91bdabd 100644 --- a/react-icons/fa/bed.d.ts +++ b/react-icons/fa/bed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBed extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/beer.d.ts b/react-icons/fa/beer.d.ts index 239559f243..6aa883b68c 100644 --- a/react-icons/fa/beer.d.ts +++ b/react-icons/fa/beer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/behance-square.d.ts b/react-icons/fa/behance-square.d.ts index 486d309c32..2ca2c9cece 100644 --- a/react-icons/fa/behance-square.d.ts +++ b/react-icons/fa/behance-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBehanceSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/behance.d.ts b/react-icons/fa/behance.d.ts index bd82cba1b8..9de6682557 100644 --- a/react-icons/fa/behance.d.ts +++ b/react-icons/fa/behance.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBehance extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-o.d.ts b/react-icons/fa/bell-o.d.ts index 30392ecacf..83ab166fe5 100644 --- a/react-icons/fa/bell-o.d.ts +++ b/react-icons/fa/bell-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBellO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-slash-o.d.ts b/react-icons/fa/bell-slash-o.d.ts index 295c567873..b5b3e6ae00 100644 --- a/react-icons/fa/bell-slash-o.d.ts +++ b/react-icons/fa/bell-slash-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBellSlashO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell-slash.d.ts b/react-icons/fa/bell-slash.d.ts index de62f57762..e097315af1 100644 --- a/react-icons/fa/bell-slash.d.ts +++ b/react-icons/fa/bell-slash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBellSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bell.d.ts b/react-icons/fa/bell.d.ts index 39db07e798..969c7256a5 100644 --- a/react-icons/fa/bell.d.ts +++ b/react-icons/fa/bell.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bicycle.d.ts b/react-icons/fa/bicycle.d.ts index 93cd32a9cd..e79aec71f0 100644 --- a/react-icons/fa/bicycle.d.ts +++ b/react-icons/fa/bicycle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBicycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/binoculars.d.ts b/react-icons/fa/binoculars.d.ts index 451d30e1a8..92477f459b 100644 --- a/react-icons/fa/binoculars.d.ts +++ b/react-icons/fa/binoculars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBinoculars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/birthday-cake.d.ts b/react-icons/fa/birthday-cake.d.ts index 8ec6e7a1de..f01a629fe3 100644 --- a/react-icons/fa/birthday-cake.d.ts +++ b/react-icons/fa/birthday-cake.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBirthdayCake extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitbucket-square.d.ts b/react-icons/fa/bitbucket-square.d.ts index df5ba215c6..3bcec4abab 100644 --- a/react-icons/fa/bitbucket-square.d.ts +++ b/react-icons/fa/bitbucket-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBitbucketSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitbucket.d.ts b/react-icons/fa/bitbucket.d.ts index 5a7dee2e5b..f30a5709d5 100644 --- a/react-icons/fa/bitbucket.d.ts +++ b/react-icons/fa/bitbucket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBitbucket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bitcoin.d.ts b/react-icons/fa/bitcoin.d.ts index 2fe99d57a9..fd781d3e1f 100644 --- a/react-icons/fa/bitcoin.d.ts +++ b/react-icons/fa/bitcoin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBitcoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/black-tie.d.ts b/react-icons/fa/black-tie.d.ts index 6cbf29cead..5582eadd19 100644 --- a/react-icons/fa/black-tie.d.ts +++ b/react-icons/fa/black-tie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBlackTie extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/blind.d.ts b/react-icons/fa/blind.d.ts index ecd53b2942..ec3701c99c 100644 --- a/react-icons/fa/blind.d.ts +++ b/react-icons/fa/blind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBlind extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bluetooth-b.d.ts b/react-icons/fa/bluetooth-b.d.ts index ae448bd815..a6561f02c3 100644 --- a/react-icons/fa/bluetooth-b.d.ts +++ b/react-icons/fa/bluetooth-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBluetoothB extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bluetooth.d.ts b/react-icons/fa/bluetooth.d.ts index c2bf2683b9..fc2a2b42c7 100644 --- a/react-icons/fa/bluetooth.d.ts +++ b/react-icons/fa/bluetooth.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bold.d.ts b/react-icons/fa/bold.d.ts index d5565170d0..5175505b71 100644 --- a/react-icons/fa/bold.d.ts +++ b/react-icons/fa/bold.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBold extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bolt.d.ts b/react-icons/fa/bolt.d.ts index fb81630317..d39483bb12 100644 --- a/react-icons/fa/bolt.d.ts +++ b/react-icons/fa/bolt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBolt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bomb.d.ts b/react-icons/fa/bomb.d.ts index a7dc0dd78e..110046ed64 100644 --- a/react-icons/fa/bomb.d.ts +++ b/react-icons/fa/bomb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBomb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/book.d.ts b/react-icons/fa/book.d.ts index 5455d0c3f2..00e1f5d777 100644 --- a/react-icons/fa/book.d.ts +++ b/react-icons/fa/book.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bookmark-o.d.ts b/react-icons/fa/bookmark-o.d.ts index fdd1c67a30..c723d7712c 100644 --- a/react-icons/fa/bookmark-o.d.ts +++ b/react-icons/fa/bookmark-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBookmarkO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bookmark.d.ts b/react-icons/fa/bookmark.d.ts index 77d3a5c964..c547cc17f5 100644 --- a/react-icons/fa/bookmark.d.ts +++ b/react-icons/fa/bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/braille.d.ts b/react-icons/fa/braille.d.ts index 250384d2d1..93d103e1af 100644 --- a/react-icons/fa/braille.d.ts +++ b/react-icons/fa/braille.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBraille extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/briefcase.d.ts b/react-icons/fa/briefcase.d.ts index 92b9dbb0af..27680e99c3 100644 --- a/react-icons/fa/briefcase.d.ts +++ b/react-icons/fa/briefcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bug.d.ts b/react-icons/fa/bug.d.ts index eb2fd775ab..8b1f86fa74 100644 --- a/react-icons/fa/bug.d.ts +++ b/react-icons/fa/bug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/building-o.d.ts b/react-icons/fa/building-o.d.ts index b04346c52e..295fd3b656 100644 --- a/react-icons/fa/building-o.d.ts +++ b/react-icons/fa/building-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBuildingO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/building.d.ts b/react-icons/fa/building.d.ts index cffa304417..6900bd396e 100644 --- a/react-icons/fa/building.d.ts +++ b/react-icons/fa/building.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBuilding extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bullhorn.d.ts b/react-icons/fa/bullhorn.d.ts index cedec475a5..9d693d4a66 100644 --- a/react-icons/fa/bullhorn.d.ts +++ b/react-icons/fa/bullhorn.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBullhorn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bullseye.d.ts b/react-icons/fa/bullseye.d.ts index f259410d32..0da5ce4c69 100644 --- a/react-icons/fa/bullseye.d.ts +++ b/react-icons/fa/bullseye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBullseye extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/bus.d.ts b/react-icons/fa/bus.d.ts index c7e357a168..ff51b8cd66 100644 --- a/react-icons/fa/bus.d.ts +++ b/react-icons/fa/bus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/buysellads.d.ts b/react-icons/fa/buysellads.d.ts index 0a2b6792a7..6a187a34ed 100644 --- a/react-icons/fa/buysellads.d.ts +++ b/react-icons/fa/buysellads.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaBuysellads extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cab.d.ts b/react-icons/fa/cab.d.ts index 909e077bac..5cc857a931 100644 --- a/react-icons/fa/cab.d.ts +++ b/react-icons/fa/cab.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCab extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calculator.d.ts b/react-icons/fa/calculator.d.ts index d32c0bdc8b..4655e57877 100644 --- a/react-icons/fa/calculator.d.ts +++ b/react-icons/fa/calculator.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-check-o.d.ts b/react-icons/fa/calendar-check-o.d.ts index beedb60325..ea9493a06f 100644 --- a/react-icons/fa/calendar-check-o.d.ts +++ b/react-icons/fa/calendar-check-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendarCheckO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-minus-o.d.ts b/react-icons/fa/calendar-minus-o.d.ts index a16cad7990..09f2663de8 100644 --- a/react-icons/fa/calendar-minus-o.d.ts +++ b/react-icons/fa/calendar-minus-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendarMinusO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-o.d.ts b/react-icons/fa/calendar-o.d.ts index c2015e70f0..12b2f4e97e 100644 --- a/react-icons/fa/calendar-o.d.ts +++ b/react-icons/fa/calendar-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendarO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-plus-o.d.ts b/react-icons/fa/calendar-plus-o.d.ts index 3ab949cd61..f8f711ab8f 100644 --- a/react-icons/fa/calendar-plus-o.d.ts +++ b/react-icons/fa/calendar-plus-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendarPlusO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar-times-o.d.ts b/react-icons/fa/calendar-times-o.d.ts index 8135c24609..51bd4f5b28 100644 --- a/react-icons/fa/calendar-times-o.d.ts +++ b/react-icons/fa/calendar-times-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendarTimesO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/calendar.d.ts b/react-icons/fa/calendar.d.ts index 439c3c83dc..51b56f70ed 100644 --- a/react-icons/fa/calendar.d.ts +++ b/react-icons/fa/calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/camera-retro.d.ts b/react-icons/fa/camera-retro.d.ts index f765115846..8ce2e83811 100644 --- a/react-icons/fa/camera-retro.d.ts +++ b/react-icons/fa/camera-retro.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCameraRetro extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/camera.d.ts b/react-icons/fa/camera.d.ts index 602e082bc5..65fbc5ee13 100644 --- a/react-icons/fa/camera.d.ts +++ b/react-icons/fa/camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-down.d.ts b/react-icons/fa/caret-down.d.ts index 0eb1881681..caae65713c 100644 --- a/react-icons/fa/caret-down.d.ts +++ b/react-icons/fa/caret-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-left.d.ts b/react-icons/fa/caret-left.d.ts index 664b91dcff..9af25426b5 100644 --- a/react-icons/fa/caret-left.d.ts +++ b/react-icons/fa/caret-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-right.d.ts b/react-icons/fa/caret-right.d.ts index 3474c09165..4535a907c7 100644 --- a/react-icons/fa/caret-right.d.ts +++ b/react-icons/fa/caret-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-down.d.ts b/react-icons/fa/caret-square-o-down.d.ts index e86bc465c0..21f972f2a6 100644 --- a/react-icons/fa/caret-square-o-down.d.ts +++ b/react-icons/fa/caret-square-o-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretSquareODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-left.d.ts b/react-icons/fa/caret-square-o-left.d.ts index bba60556d1..107ee9cdd6 100644 --- a/react-icons/fa/caret-square-o-left.d.ts +++ b/react-icons/fa/caret-square-o-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretSquareOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-right.d.ts b/react-icons/fa/caret-square-o-right.d.ts index c19fdfc166..79b1bc2f83 100644 --- a/react-icons/fa/caret-square-o-right.d.ts +++ b/react-icons/fa/caret-square-o-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretSquareORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-square-o-up.d.ts b/react-icons/fa/caret-square-o-up.d.ts index 6d8b8085ec..099caca586 100644 --- a/react-icons/fa/caret-square-o-up.d.ts +++ b/react-icons/fa/caret-square-o-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretSquareOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/caret-up.d.ts b/react-icons/fa/caret-up.d.ts index aa5ecc53e1..502347e649 100644 --- a/react-icons/fa/caret-up.d.ts +++ b/react-icons/fa/caret-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCaretUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cart-arrow-down.d.ts b/react-icons/fa/cart-arrow-down.d.ts index 31f3edba30..32d0d7b87a 100644 --- a/react-icons/fa/cart-arrow-down.d.ts +++ b/react-icons/fa/cart-arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCartArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cart-plus.d.ts b/react-icons/fa/cart-plus.d.ts index d36e2cdcdc..38f1860ee4 100644 --- a/react-icons/fa/cart-plus.d.ts +++ b/react-icons/fa/cart-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCartPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-amex.d.ts b/react-icons/fa/cc-amex.d.ts index 0090d590aa..a7e6e5c01a 100644 --- a/react-icons/fa/cc-amex.d.ts +++ b/react-icons/fa/cc-amex.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcAmex extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-diners-club.d.ts b/react-icons/fa/cc-diners-club.d.ts index 9d72d15e26..c71da0c5a0 100644 --- a/react-icons/fa/cc-diners-club.d.ts +++ b/react-icons/fa/cc-diners-club.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcDinersClub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-discover.d.ts b/react-icons/fa/cc-discover.d.ts index c8fcaf657b..90c5e7b0a8 100644 --- a/react-icons/fa/cc-discover.d.ts +++ b/react-icons/fa/cc-discover.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcDiscover extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-jcb.d.ts b/react-icons/fa/cc-jcb.d.ts index 2b888d329d..b24da72873 100644 --- a/react-icons/fa/cc-jcb.d.ts +++ b/react-icons/fa/cc-jcb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcJcb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-mastercard.d.ts b/react-icons/fa/cc-mastercard.d.ts index 8c52f6653f..6a50ca9895 100644 --- a/react-icons/fa/cc-mastercard.d.ts +++ b/react-icons/fa/cc-mastercard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcMastercard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-paypal.d.ts b/react-icons/fa/cc-paypal.d.ts index 9468032f92..4c0fd2dc51 100644 --- a/react-icons/fa/cc-paypal.d.ts +++ b/react-icons/fa/cc-paypal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcPaypal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-stripe.d.ts b/react-icons/fa/cc-stripe.d.ts index 74802ffd36..9157e742f7 100644 --- a/react-icons/fa/cc-stripe.d.ts +++ b/react-icons/fa/cc-stripe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcStripe extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc-visa.d.ts b/react-icons/fa/cc-visa.d.ts index 65e1b3bebb..b7b93afc41 100644 --- a/react-icons/fa/cc-visa.d.ts +++ b/react-icons/fa/cc-visa.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCcVisa extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cc.d.ts b/react-icons/fa/cc.d.ts index a94d3e76de..ea7337f555 100644 --- a/react-icons/fa/cc.d.ts +++ b/react-icons/fa/cc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/certificate.d.ts b/react-icons/fa/certificate.d.ts index 93ce627a49..52079ed4fd 100644 --- a/react-icons/fa/certificate.d.ts +++ b/react-icons/fa/certificate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCertificate extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chain-broken.d.ts b/react-icons/fa/chain-broken.d.ts index 55d8fa9cc8..43fc8030a7 100644 --- a/react-icons/fa/chain-broken.d.ts +++ b/react-icons/fa/chain-broken.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChainBroken extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chain.d.ts b/react-icons/fa/chain.d.ts index d25ab678a4..efc256558a 100644 --- a/react-icons/fa/chain.d.ts +++ b/react-icons/fa/chain.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChain extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-circle-o.d.ts b/react-icons/fa/check-circle-o.d.ts index 402ece4089..6630911a21 100644 --- a/react-icons/fa/check-circle-o.d.ts +++ b/react-icons/fa/check-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCheckCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-circle.d.ts b/react-icons/fa/check-circle.d.ts index 60d0b5d1a2..69b0af42ad 100644 --- a/react-icons/fa/check-circle.d.ts +++ b/react-icons/fa/check-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCheckCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-square-o.d.ts b/react-icons/fa/check-square-o.d.ts index c038e42b66..3897c83bcf 100644 --- a/react-icons/fa/check-square-o.d.ts +++ b/react-icons/fa/check-square-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCheckSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check-square.d.ts b/react-icons/fa/check-square.d.ts index 2312e35871..72fda5e780 100644 --- a/react-icons/fa/check-square.d.ts +++ b/react-icons/fa/check-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCheckSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/check.d.ts b/react-icons/fa/check.d.ts index 79dc8c9c40..9ea5e78bcd 100644 --- a/react-icons/fa/check.d.ts +++ b/react-icons/fa/check.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-down.d.ts b/react-icons/fa/chevron-circle-down.d.ts index b874b80205..937499c532 100644 --- a/react-icons/fa/chevron-circle-down.d.ts +++ b/react-icons/fa/chevron-circle-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronCircleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-left.d.ts b/react-icons/fa/chevron-circle-left.d.ts index bf1e285d9a..3c27689650 100644 --- a/react-icons/fa/chevron-circle-left.d.ts +++ b/react-icons/fa/chevron-circle-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronCircleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-right.d.ts b/react-icons/fa/chevron-circle-right.d.ts index 5ed6d5f153..a9155d4474 100644 --- a/react-icons/fa/chevron-circle-right.d.ts +++ b/react-icons/fa/chevron-circle-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronCircleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-circle-up.d.ts b/react-icons/fa/chevron-circle-up.d.ts index 28607e192e..8d998527e0 100644 --- a/react-icons/fa/chevron-circle-up.d.ts +++ b/react-icons/fa/chevron-circle-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronCircleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-down.d.ts b/react-icons/fa/chevron-down.d.ts index 105899e38e..10c8aa2c72 100644 --- a/react-icons/fa/chevron-down.d.ts +++ b/react-icons/fa/chevron-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-left.d.ts b/react-icons/fa/chevron-left.d.ts index c3e1ebcae5..68bf700f9a 100644 --- a/react-icons/fa/chevron-left.d.ts +++ b/react-icons/fa/chevron-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-right.d.ts b/react-icons/fa/chevron-right.d.ts index 7fa9d7c4de..5271aea081 100644 --- a/react-icons/fa/chevron-right.d.ts +++ b/react-icons/fa/chevron-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chevron-up.d.ts b/react-icons/fa/chevron-up.d.ts index 486d5d11a3..16f50e4033 100644 --- a/react-icons/fa/chevron-up.d.ts +++ b/react-icons/fa/chevron-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/child.d.ts b/react-icons/fa/child.d.ts index a40b619992..98e065ba12 100644 --- a/react-icons/fa/child.d.ts +++ b/react-icons/fa/child.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChild extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/chrome.d.ts b/react-icons/fa/chrome.d.ts index f7506b4575..e856c31773 100644 --- a/react-icons/fa/chrome.d.ts +++ b/react-icons/fa/chrome.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaChrome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-o-notch.d.ts b/react-icons/fa/circle-o-notch.d.ts index 64eb0fd090..1264ffa272 100644 --- a/react-icons/fa/circle-o-notch.d.ts +++ b/react-icons/fa/circle-o-notch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCircleONotch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-o.d.ts b/react-icons/fa/circle-o.d.ts index df045a1a25..0d6050b49d 100644 --- a/react-icons/fa/circle-o.d.ts +++ b/react-icons/fa/circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle-thin.d.ts b/react-icons/fa/circle-thin.d.ts index b104e97a26..f3f16f6bc5 100644 --- a/react-icons/fa/circle-thin.d.ts +++ b/react-icons/fa/circle-thin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCircleThin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/circle.d.ts b/react-icons/fa/circle.d.ts index 8c1df704c4..dcb31f1504 100644 --- a/react-icons/fa/circle.d.ts +++ b/react-icons/fa/circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clipboard.d.ts b/react-icons/fa/clipboard.d.ts index 7b418a8332..5f39170e0a 100644 --- a/react-icons/fa/clipboard.d.ts +++ b/react-icons/fa/clipboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clock-o.d.ts b/react-icons/fa/clock-o.d.ts index 830ef308e5..5c77bcc133 100644 --- a/react-icons/fa/clock-o.d.ts +++ b/react-icons/fa/clock-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaClockO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/clone.d.ts b/react-icons/fa/clone.d.ts index 7aa2d129a0..c3fc421540 100644 --- a/react-icons/fa/clone.d.ts +++ b/react-icons/fa/clone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaClone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/close.d.ts b/react-icons/fa/close.d.ts index 8a687a3abc..0b8331c006 100644 --- a/react-icons/fa/close.d.ts +++ b/react-icons/fa/close.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud-download.d.ts b/react-icons/fa/cloud-download.d.ts index fcca2a8a62..9d5e606535 100644 --- a/react-icons/fa/cloud-download.d.ts +++ b/react-icons/fa/cloud-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud-upload.d.ts b/react-icons/fa/cloud-upload.d.ts index 1b9b81cdfd..bceeef8f39 100644 --- a/react-icons/fa/cloud-upload.d.ts +++ b/react-icons/fa/cloud-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cloud.d.ts b/react-icons/fa/cloud.d.ts index fdb30a4485..b8ddd213d7 100644 --- a/react-icons/fa/cloud.d.ts +++ b/react-icons/fa/cloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cny.d.ts b/react-icons/fa/cny.d.ts index 8182c5a68e..c0f06b0b74 100644 --- a/react-icons/fa/cny.d.ts +++ b/react-icons/fa/cny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCny extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/code-fork.d.ts b/react-icons/fa/code-fork.d.ts index 511a7308aa..07e5bfa6f3 100644 --- a/react-icons/fa/code-fork.d.ts +++ b/react-icons/fa/code-fork.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCodeFork extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/code.d.ts b/react-icons/fa/code.d.ts index dd97b03088..f2bfb42cd4 100644 --- a/react-icons/fa/code.d.ts +++ b/react-icons/fa/code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/codepen.d.ts b/react-icons/fa/codepen.d.ts index afd571d640..2bc3d2adad 100644 --- a/react-icons/fa/codepen.d.ts +++ b/react-icons/fa/codepen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCodepen extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/codiepie.d.ts b/react-icons/fa/codiepie.d.ts index 2c9dc2ef0d..576bb3aa50 100644 --- a/react-icons/fa/codiepie.d.ts +++ b/react-icons/fa/codiepie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCodiepie extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/coffee.d.ts b/react-icons/fa/coffee.d.ts index 05066a79ba..5e515f14c8 100644 --- a/react-icons/fa/coffee.d.ts +++ b/react-icons/fa/coffee.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cog.d.ts b/react-icons/fa/cog.d.ts index ffea2eaeb5..ee5e4aaf50 100644 --- a/react-icons/fa/cog.d.ts +++ b/react-icons/fa/cog.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cogs.d.ts b/react-icons/fa/cogs.d.ts index 389b227b13..410a12fbc9 100644 --- a/react-icons/fa/cogs.d.ts +++ b/react-icons/fa/cogs.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCogs extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/columns.d.ts b/react-icons/fa/columns.d.ts index 7499079d8c..069caa0db8 100644 --- a/react-icons/fa/columns.d.ts +++ b/react-icons/fa/columns.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaColumns extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comment-o.d.ts b/react-icons/fa/comment-o.d.ts index 6b59006c20..b52592e68a 100644 --- a/react-icons/fa/comment-o.d.ts +++ b/react-icons/fa/comment-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCommentO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comment.d.ts b/react-icons/fa/comment.d.ts index bcc529da41..c804008568 100644 --- a/react-icons/fa/comment.d.ts +++ b/react-icons/fa/comment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/commenting-o.d.ts b/react-icons/fa/commenting-o.d.ts index 8a63d2bc1e..abd864036f 100644 --- a/react-icons/fa/commenting-o.d.ts +++ b/react-icons/fa/commenting-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCommentingO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/commenting.d.ts b/react-icons/fa/commenting.d.ts index 154562e43d..6485d1d672 100644 --- a/react-icons/fa/commenting.d.ts +++ b/react-icons/fa/commenting.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCommenting extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comments-o.d.ts b/react-icons/fa/comments-o.d.ts index c9e4fa6d6f..8a9d9bf9c4 100644 --- a/react-icons/fa/comments-o.d.ts +++ b/react-icons/fa/comments-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCommentsO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/comments.d.ts b/react-icons/fa/comments.d.ts index 43a4421335..261770ceaa 100644 --- a/react-icons/fa/comments.d.ts +++ b/react-icons/fa/comments.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaComments extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/compass.d.ts b/react-icons/fa/compass.d.ts index cd21ff62c2..e3bae27053 100644 --- a/react-icons/fa/compass.d.ts +++ b/react-icons/fa/compass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/compress.d.ts b/react-icons/fa/compress.d.ts index 372ed99c97..1ece90f4c4 100644 --- a/react-icons/fa/compress.d.ts +++ b/react-icons/fa/compress.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCompress extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/connectdevelop.d.ts b/react-icons/fa/connectdevelop.d.ts index 75c045e2f8..f8eebfb08d 100644 --- a/react-icons/fa/connectdevelop.d.ts +++ b/react-icons/fa/connectdevelop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaConnectdevelop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/contao.d.ts b/react-icons/fa/contao.d.ts index c0d5cb3fb1..14bf0aa9b7 100644 --- a/react-icons/fa/contao.d.ts +++ b/react-icons/fa/contao.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaContao extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/copy.d.ts b/react-icons/fa/copy.d.ts index 7e5675ffd9..9a233cc309 100644 --- a/react-icons/fa/copy.d.ts +++ b/react-icons/fa/copy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/copyright.d.ts b/react-icons/fa/copyright.d.ts index 122b198053..921fa3da30 100644 --- a/react-icons/fa/copyright.d.ts +++ b/react-icons/fa/copyright.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCopyright extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/creative-commons.d.ts b/react-icons/fa/creative-commons.d.ts index 2767146dc0..bdb6ca2fd4 100644 --- a/react-icons/fa/creative-commons.d.ts +++ b/react-icons/fa/creative-commons.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCreativeCommons extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/credit-card-alt.d.ts b/react-icons/fa/credit-card-alt.d.ts index a7397df53b..f95d713391 100644 --- a/react-icons/fa/credit-card-alt.d.ts +++ b/react-icons/fa/credit-card-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCreditCardAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/credit-card.d.ts b/react-icons/fa/credit-card.d.ts index f585fd3d9e..7a6634a1a3 100644 --- a/react-icons/fa/credit-card.d.ts +++ b/react-icons/fa/credit-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/crop.d.ts b/react-icons/fa/crop.d.ts index 8ecd471b26..ed3542bc9d 100644 --- a/react-icons/fa/crop.d.ts +++ b/react-icons/fa/crop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/crosshairs.d.ts b/react-icons/fa/crosshairs.d.ts index 61e8db8e06..e67dc9d8c3 100644 --- a/react-icons/fa/crosshairs.d.ts +++ b/react-icons/fa/crosshairs.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCrosshairs extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/css3.d.ts b/react-icons/fa/css3.d.ts index 701fd1fe9a..dc51716104 100644 --- a/react-icons/fa/css3.d.ts +++ b/react-icons/fa/css3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cube.d.ts b/react-icons/fa/cube.d.ts index 292e49cac6..daf2b046ea 100644 --- a/react-icons/fa/cube.d.ts +++ b/react-icons/fa/cube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCube extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cubes.d.ts b/react-icons/fa/cubes.d.ts index 3aa97019c2..d53d03640a 100644 --- a/react-icons/fa/cubes.d.ts +++ b/react-icons/fa/cubes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCubes extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cut.d.ts b/react-icons/fa/cut.d.ts index c48a57c62c..d792f9fd16 100644 --- a/react-icons/fa/cut.d.ts +++ b/react-icons/fa/cut.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCut extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/cutlery.d.ts b/react-icons/fa/cutlery.d.ts index 538849b65d..71889db039 100644 --- a/react-icons/fa/cutlery.d.ts +++ b/react-icons/fa/cutlery.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaCutlery extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dashboard.d.ts b/react-icons/fa/dashboard.d.ts index 5d7f761e9f..f45a765fa4 100644 --- a/react-icons/fa/dashboard.d.ts +++ b/react-icons/fa/dashboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dashcube.d.ts b/react-icons/fa/dashcube.d.ts index 22c1f7368d..41daa60409 100644 --- a/react-icons/fa/dashcube.d.ts +++ b/react-icons/fa/dashcube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDashcube extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/database.d.ts b/react-icons/fa/database.d.ts index f0a5a6b184..9f0be760f6 100644 --- a/react-icons/fa/database.d.ts +++ b/react-icons/fa/database.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/deaf.d.ts b/react-icons/fa/deaf.d.ts index cb97bfd09e..645ba097df 100644 --- a/react-icons/fa/deaf.d.ts +++ b/react-icons/fa/deaf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dedent.d.ts b/react-icons/fa/dedent.d.ts index 1e0a02d278..4f74f00643 100644 --- a/react-icons/fa/dedent.d.ts +++ b/react-icons/fa/dedent.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDedent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/delicious.d.ts b/react-icons/fa/delicious.d.ts index f17631f835..65c4998dc6 100644 --- a/react-icons/fa/delicious.d.ts +++ b/react-icons/fa/delicious.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDelicious extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/desktop.d.ts b/react-icons/fa/desktop.d.ts index d6d3ab3ca4..90bb48c9cc 100644 --- a/react-icons/fa/desktop.d.ts +++ b/react-icons/fa/desktop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/deviantart.d.ts b/react-icons/fa/deviantart.d.ts index eb33e3c744..b71411682c 100644 --- a/react-icons/fa/deviantart.d.ts +++ b/react-icons/fa/deviantart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDeviantart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/diamond.d.ts b/react-icons/fa/diamond.d.ts index 0576f656c9..3ab3ec0761 100644 --- a/react-icons/fa/diamond.d.ts +++ b/react-icons/fa/diamond.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDiamond extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/digg.d.ts b/react-icons/fa/digg.d.ts index 006f135878..90d5662254 100644 --- a/react-icons/fa/digg.d.ts +++ b/react-icons/fa/digg.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDigg extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dollar.d.ts b/react-icons/fa/dollar.d.ts index 570bcb1ecc..265000f133 100644 --- a/react-icons/fa/dollar.d.ts +++ b/react-icons/fa/dollar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDollar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dot-circle-o.d.ts b/react-icons/fa/dot-circle-o.d.ts index fe86ad307c..33281fc86e 100644 --- a/react-icons/fa/dot-circle-o.d.ts +++ b/react-icons/fa/dot-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDotCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/download.d.ts b/react-icons/fa/download.d.ts index 3eb831c65d..d727b5a29c 100644 --- a/react-icons/fa/download.d.ts +++ b/react-icons/fa/download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dribbble.d.ts b/react-icons/fa/dribbble.d.ts index 6dba67f8e3..e0cc5e7bf2 100644 --- a/react-icons/fa/dribbble.d.ts +++ b/react-icons/fa/dribbble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/dropbox.d.ts b/react-icons/fa/dropbox.d.ts index c3fff6a008..82807c622f 100644 --- a/react-icons/fa/dropbox.d.ts +++ b/react-icons/fa/dropbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/drupal.d.ts b/react-icons/fa/drupal.d.ts index ef3119bf79..12a0ab8d26 100644 --- a/react-icons/fa/drupal.d.ts +++ b/react-icons/fa/drupal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaDrupal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/edge.d.ts b/react-icons/fa/edge.d.ts index de57d28168..bd9aafe13f 100644 --- a/react-icons/fa/edge.d.ts +++ b/react-icons/fa/edge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEdge extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/edit.d.ts b/react-icons/fa/edit.d.ts index b4e16f8739..7ef398172f 100644 --- a/react-icons/fa/edit.d.ts +++ b/react-icons/fa/edit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eject.d.ts b/react-icons/fa/eject.d.ts index eafd730d99..bd698446e5 100644 --- a/react-icons/fa/eject.d.ts +++ b/react-icons/fa/eject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ellipsis-h.d.ts b/react-icons/fa/ellipsis-h.d.ts index 7b0e55a84f..1ae8ad263d 100644 --- a/react-icons/fa/ellipsis-h.d.ts +++ b/react-icons/fa/ellipsis-h.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEllipsisH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ellipsis-v.d.ts b/react-icons/fa/ellipsis-v.d.ts index bd928577b8..18a7958e4b 100644 --- a/react-icons/fa/ellipsis-v.d.ts +++ b/react-icons/fa/ellipsis-v.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEllipsisV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/empire.d.ts b/react-icons/fa/empire.d.ts index e5211042fe..fc116628e0 100644 --- a/react-icons/fa/empire.d.ts +++ b/react-icons/fa/empire.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEmpire extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope-o.d.ts b/react-icons/fa/envelope-o.d.ts index 587dd6b22c..eb7b1838ea 100644 --- a/react-icons/fa/envelope-o.d.ts +++ b/react-icons/fa/envelope-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEnvelopeO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope-square.d.ts b/react-icons/fa/envelope-square.d.ts index 490b8d70cd..e1d2817a5f 100644 --- a/react-icons/fa/envelope-square.d.ts +++ b/react-icons/fa/envelope-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEnvelopeSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envelope.d.ts b/react-icons/fa/envelope.d.ts index 7d8d3bc3b1..3b810670fa 100644 --- a/react-icons/fa/envelope.d.ts +++ b/react-icons/fa/envelope.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEnvelope extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/envira.d.ts b/react-icons/fa/envira.d.ts index 7292817b1a..0da2d69005 100644 --- a/react-icons/fa/envira.d.ts +++ b/react-icons/fa/envira.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEnvira extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eraser.d.ts b/react-icons/fa/eraser.d.ts index 6906d07b40..1a09e3eb95 100644 --- a/react-icons/fa/eraser.d.ts +++ b/react-icons/fa/eraser.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEraser extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eur.d.ts b/react-icons/fa/eur.d.ts index a16278080f..83890799a8 100644 --- a/react-icons/fa/eur.d.ts +++ b/react-icons/fa/eur.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEur extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exchange.d.ts b/react-icons/fa/exchange.d.ts index 3e0ec8cd2e..06e072c133 100644 --- a/react-icons/fa/exchange.d.ts +++ b/react-icons/fa/exchange.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExchange extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation-circle.d.ts b/react-icons/fa/exclamation-circle.d.ts index 329927d9c9..5c6ccdfb53 100644 --- a/react-icons/fa/exclamation-circle.d.ts +++ b/react-icons/fa/exclamation-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExclamationCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation-triangle.d.ts b/react-icons/fa/exclamation-triangle.d.ts index a94eb7a397..c0c5ca806a 100644 --- a/react-icons/fa/exclamation-triangle.d.ts +++ b/react-icons/fa/exclamation-triangle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExclamationTriangle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/exclamation.d.ts b/react-icons/fa/exclamation.d.ts index b43e140986..52ef8d781d 100644 --- a/react-icons/fa/exclamation.d.ts +++ b/react-icons/fa/exclamation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExclamation extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/expand.d.ts b/react-icons/fa/expand.d.ts index 47fffbb3da..6c6578eb27 100644 --- a/react-icons/fa/expand.d.ts +++ b/react-icons/fa/expand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/expeditedssl.d.ts b/react-icons/fa/expeditedssl.d.ts index dc5969ce61..85cd4fa461 100644 --- a/react-icons/fa/expeditedssl.d.ts +++ b/react-icons/fa/expeditedssl.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExpeditedssl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/external-link-square.d.ts b/react-icons/fa/external-link-square.d.ts index 62fbe81877..f74cf12bc8 100644 --- a/react-icons/fa/external-link-square.d.ts +++ b/react-icons/fa/external-link-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExternalLinkSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/external-link.d.ts b/react-icons/fa/external-link.d.ts index 5cb343a781..881b746c2d 100644 --- a/react-icons/fa/external-link.d.ts +++ b/react-icons/fa/external-link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaExternalLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eye-slash.d.ts b/react-icons/fa/eye-slash.d.ts index 40cc6b3892..d9315752d8 100644 --- a/react-icons/fa/eye-slash.d.ts +++ b/react-icons/fa/eye-slash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEyeSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eye.d.ts b/react-icons/fa/eye.d.ts index eac25bb949..4e0b4ff5ad 100644 --- a/react-icons/fa/eye.d.ts +++ b/react-icons/fa/eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/eyedropper.d.ts b/react-icons/fa/eyedropper.d.ts index 555f3d476b..47b2fa8c9f 100644 --- a/react-icons/fa/eyedropper.d.ts +++ b/react-icons/fa/eyedropper.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaEyedropper extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook-official.d.ts b/react-icons/fa/facebook-official.d.ts index aeee2353c2..042217cc96 100644 --- a/react-icons/fa/facebook-official.d.ts +++ b/react-icons/fa/facebook-official.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFacebookOfficial extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook-square.d.ts b/react-icons/fa/facebook-square.d.ts index 0fe6786ac2..759c6e2143 100644 --- a/react-icons/fa/facebook-square.d.ts +++ b/react-icons/fa/facebook-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFacebookSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/facebook.d.ts b/react-icons/fa/facebook.d.ts index d1df90fd84..1f764ab448 100644 --- a/react-icons/fa/facebook.d.ts +++ b/react-icons/fa/facebook.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fast-backward.d.ts b/react-icons/fa/fast-backward.d.ts index 2823a7cc0f..8fe9be9558 100644 --- a/react-icons/fa/fast-backward.d.ts +++ b/react-icons/fa/fast-backward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFastBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fast-forward.d.ts b/react-icons/fa/fast-forward.d.ts index 8dcc221d53..074f87d34a 100644 --- a/react-icons/fa/fast-forward.d.ts +++ b/react-icons/fa/fast-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fax.d.ts b/react-icons/fa/fax.d.ts index 7240600951..c3c782e2d3 100644 --- a/react-icons/fa/fax.d.ts +++ b/react-icons/fa/fax.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFax extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/feed.d.ts b/react-icons/fa/feed.d.ts index 4578ccbe92..6d1d024095 100644 --- a/react-icons/fa/feed.d.ts +++ b/react-icons/fa/feed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFeed extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/female.d.ts b/react-icons/fa/female.d.ts index fec3471475..80b7ed4b34 100644 --- a/react-icons/fa/female.d.ts +++ b/react-icons/fa/female.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFemale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fighter-jet.d.ts b/react-icons/fa/fighter-jet.d.ts index 2740c9d67c..cfc95428ea 100644 --- a/react-icons/fa/fighter-jet.d.ts +++ b/react-icons/fa/fighter-jet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFighterJet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-archive-o.d.ts b/react-icons/fa/file-archive-o.d.ts index 060f2488e1..b75a479970 100644 --- a/react-icons/fa/file-archive-o.d.ts +++ b/react-icons/fa/file-archive-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileArchiveO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-audio-o.d.ts b/react-icons/fa/file-audio-o.d.ts index 024c8c92d4..15323a89b8 100644 --- a/react-icons/fa/file-audio-o.d.ts +++ b/react-icons/fa/file-audio-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileAudioO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-code-o.d.ts b/react-icons/fa/file-code-o.d.ts index cd9c2b5c6f..37210e4945 100644 --- a/react-icons/fa/file-code-o.d.ts +++ b/react-icons/fa/file-code-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileCodeO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-excel-o.d.ts b/react-icons/fa/file-excel-o.d.ts index 6f6671900f..98608a3dac 100644 --- a/react-icons/fa/file-excel-o.d.ts +++ b/react-icons/fa/file-excel-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileExcelO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-image-o.d.ts b/react-icons/fa/file-image-o.d.ts index acc894cf60..d46c460634 100644 --- a/react-icons/fa/file-image-o.d.ts +++ b/react-icons/fa/file-image-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileImageO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-movie-o.d.ts b/react-icons/fa/file-movie-o.d.ts index 88c0a1a05e..bd0dc885cf 100644 --- a/react-icons/fa/file-movie-o.d.ts +++ b/react-icons/fa/file-movie-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileMovieO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-o.d.ts b/react-icons/fa/file-o.d.ts index 7b1912612f..be4ca691ba 100644 --- a/react-icons/fa/file-o.d.ts +++ b/react-icons/fa/file-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-pdf-o.d.ts b/react-icons/fa/file-pdf-o.d.ts index 44770001e8..580522b0d5 100644 --- a/react-icons/fa/file-pdf-o.d.ts +++ b/react-icons/fa/file-pdf-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFilePdfO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-powerpoint-o.d.ts b/react-icons/fa/file-powerpoint-o.d.ts index f6ac2e95bc..b9aff7c5f0 100644 --- a/react-icons/fa/file-powerpoint-o.d.ts +++ b/react-icons/fa/file-powerpoint-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFilePowerpointO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-text-o.d.ts b/react-icons/fa/file-text-o.d.ts index 03a802b663..4de69a7cca 100644 --- a/react-icons/fa/file-text-o.d.ts +++ b/react-icons/fa/file-text-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileTextO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-text.d.ts b/react-icons/fa/file-text.d.ts index 6f9dd64a49..1b89eef33d 100644 --- a/react-icons/fa/file-text.d.ts +++ b/react-icons/fa/file-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileText extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file-word-o.d.ts b/react-icons/fa/file-word-o.d.ts index 7d037833df..78fbe0e5c0 100644 --- a/react-icons/fa/file-word-o.d.ts +++ b/react-icons/fa/file-word-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFileWordO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/file.d.ts b/react-icons/fa/file.d.ts index 62bf7dc558..726d93a102 100644 --- a/react-icons/fa/file.d.ts +++ b/react-icons/fa/file.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/film.d.ts b/react-icons/fa/film.d.ts index a8b3a00704..2255bd963f 100644 --- a/react-icons/fa/film.d.ts +++ b/react-icons/fa/film.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/filter.d.ts b/react-icons/fa/filter.d.ts index bd0629f06e..17cedcc339 100644 --- a/react-icons/fa/filter.d.ts +++ b/react-icons/fa/filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fire-extinguisher.d.ts b/react-icons/fa/fire-extinguisher.d.ts index 23a1cade88..170c28f691 100644 --- a/react-icons/fa/fire-extinguisher.d.ts +++ b/react-icons/fa/fire-extinguisher.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFireExtinguisher extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fire.d.ts b/react-icons/fa/fire.d.ts index 85b9ccb3fd..06d882b7f3 100644 --- a/react-icons/fa/fire.d.ts +++ b/react-icons/fa/fire.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFire extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/firefox.d.ts b/react-icons/fa/firefox.d.ts index a5244ebfaa..f2ffcf0600 100644 --- a/react-icons/fa/firefox.d.ts +++ b/react-icons/fa/firefox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFirefox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag-checkered.d.ts b/react-icons/fa/flag-checkered.d.ts index 6fb328671b..2db5a3f719 100644 --- a/react-icons/fa/flag-checkered.d.ts +++ b/react-icons/fa/flag-checkered.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFlagCheckered extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag-o.d.ts b/react-icons/fa/flag-o.d.ts index bcdf8320bf..7d756dccbb 100644 --- a/react-icons/fa/flag-o.d.ts +++ b/react-icons/fa/flag-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFlagO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flag.d.ts b/react-icons/fa/flag.d.ts index c7e88d23a4..2e7397b1c6 100644 --- a/react-icons/fa/flag.d.ts +++ b/react-icons/fa/flag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flask.d.ts b/react-icons/fa/flask.d.ts index 2f6f880f77..6ae15938b5 100644 --- a/react-icons/fa/flask.d.ts +++ b/react-icons/fa/flask.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/flickr.d.ts b/react-icons/fa/flickr.d.ts index 897a0e67c0..d83ccc8c7d 100644 --- a/react-icons/fa/flickr.d.ts +++ b/react-icons/fa/flickr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFlickr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/floppy-o.d.ts b/react-icons/fa/floppy-o.d.ts index 97a3fc15f5..aafcf28110 100644 --- a/react-icons/fa/floppy-o.d.ts +++ b/react-icons/fa/floppy-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFloppyO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-o.d.ts b/react-icons/fa/folder-o.d.ts index 316b6942b7..8ef0fd22de 100644 --- a/react-icons/fa/folder-o.d.ts +++ b/react-icons/fa/folder-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFolderO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-open-o.d.ts b/react-icons/fa/folder-open-o.d.ts index b5064b1a2d..08d56314a9 100644 --- a/react-icons/fa/folder-open-o.d.ts +++ b/react-icons/fa/folder-open-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFolderOpenO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder-open.d.ts b/react-icons/fa/folder-open.d.ts index ffc333561c..bdb1da8592 100644 --- a/react-icons/fa/folder-open.d.ts +++ b/react-icons/fa/folder-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/folder.d.ts b/react-icons/fa/folder.d.ts index 678017029a..edc37450e6 100644 --- a/react-icons/fa/folder.d.ts +++ b/react-icons/fa/folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/font.d.ts b/react-icons/fa/font.d.ts index 9e405eb19b..a7dead3799 100644 --- a/react-icons/fa/font.d.ts +++ b/react-icons/fa/font.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFont extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fonticons.d.ts b/react-icons/fa/fonticons.d.ts index 1352450db1..c8ea08cc51 100644 --- a/react-icons/fa/fonticons.d.ts +++ b/react-icons/fa/fonticons.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFonticons extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/fort-awesome.d.ts b/react-icons/fa/fort-awesome.d.ts index cef239531a..e30ef4342e 100644 --- a/react-icons/fa/fort-awesome.d.ts +++ b/react-icons/fa/fort-awesome.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFortAwesome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/forumbee.d.ts b/react-icons/fa/forumbee.d.ts index 26467d0fc0..faddfcb59c 100644 --- a/react-icons/fa/forumbee.d.ts +++ b/react-icons/fa/forumbee.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaForumbee extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/forward.d.ts b/react-icons/fa/forward.d.ts index 8e79812775..d9670fd120 100644 --- a/react-icons/fa/forward.d.ts +++ b/react-icons/fa/forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/foursquare.d.ts b/react-icons/fa/foursquare.d.ts index ccd592e1aa..f586f9353a 100644 --- a/react-icons/fa/foursquare.d.ts +++ b/react-icons/fa/foursquare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFoursquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/frown-o.d.ts b/react-icons/fa/frown-o.d.ts index ef40a25494..9f398e61a8 100644 --- a/react-icons/fa/frown-o.d.ts +++ b/react-icons/fa/frown-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFrownO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/futbol-o.d.ts b/react-icons/fa/futbol-o.d.ts index ad5c2f6e62..45f877e708 100644 --- a/react-icons/fa/futbol-o.d.ts +++ b/react-icons/fa/futbol-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaFutbolO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gamepad.d.ts b/react-icons/fa/gamepad.d.ts index 82e5341505..42ac7901dd 100644 --- a/react-icons/fa/gamepad.d.ts +++ b/react-icons/fa/gamepad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGamepad extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gavel.d.ts b/react-icons/fa/gavel.d.ts index 6a9fae6de9..ab57f51b9e 100644 --- a/react-icons/fa/gavel.d.ts +++ b/react-icons/fa/gavel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGavel extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gbp.d.ts b/react-icons/fa/gbp.d.ts index 03f669a06d..d1e432cdaf 100644 --- a/react-icons/fa/gbp.d.ts +++ b/react-icons/fa/gbp.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGbp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/genderless.d.ts b/react-icons/fa/genderless.d.ts index b0a5c98bd0..e5bb243d49 100644 --- a/react-icons/fa/genderless.d.ts +++ b/react-icons/fa/genderless.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGenderless extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/get-pocket.d.ts b/react-icons/fa/get-pocket.d.ts index 6326e895f3..f8bf7e940d 100644 --- a/react-icons/fa/get-pocket.d.ts +++ b/react-icons/fa/get-pocket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGetPocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gg-circle.d.ts b/react-icons/fa/gg-circle.d.ts index 7d0879a730..da7f47f177 100644 --- a/react-icons/fa/gg-circle.d.ts +++ b/react-icons/fa/gg-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGgCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gg.d.ts b/react-icons/fa/gg.d.ts index 53ea3c32b1..e41cf6b335 100644 --- a/react-icons/fa/gg.d.ts +++ b/react-icons/fa/gg.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGg extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gift.d.ts b/react-icons/fa/gift.d.ts index d53f0c7cb2..624af75dc0 100644 --- a/react-icons/fa/gift.d.ts +++ b/react-icons/fa/gift.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/git-square.d.ts b/react-icons/fa/git-square.d.ts index d25f923ed8..1964daf61b 100644 --- a/react-icons/fa/git-square.d.ts +++ b/react-icons/fa/git-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGitSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/git.d.ts b/react-icons/fa/git.d.ts index 400bd27e64..c7c8debaf1 100644 --- a/react-icons/fa/git.d.ts +++ b/react-icons/fa/git.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github-alt.d.ts b/react-icons/fa/github-alt.d.ts index f70b313edf..fa634dddcb 100644 --- a/react-icons/fa/github-alt.d.ts +++ b/react-icons/fa/github-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGithubAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github-square.d.ts b/react-icons/fa/github-square.d.ts index 7bcf64f7da..effb48df45 100644 --- a/react-icons/fa/github-square.d.ts +++ b/react-icons/fa/github-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGithubSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/github.d.ts b/react-icons/fa/github.d.ts index 22f9eb0edb..1a6e8ca9c8 100644 --- a/react-icons/fa/github.d.ts +++ b/react-icons/fa/github.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gitlab.d.ts b/react-icons/fa/gitlab.d.ts index 61740127ef..43f90a9ffe 100644 --- a/react-icons/fa/gitlab.d.ts +++ b/react-icons/fa/gitlab.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGitlab extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/gittip.d.ts b/react-icons/fa/gittip.d.ts index 69f7342706..3d63897754 100644 --- a/react-icons/fa/gittip.d.ts +++ b/react-icons/fa/gittip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGittip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glass.d.ts b/react-icons/fa/glass.d.ts index cf309cb91c..0d010a8f4c 100644 --- a/react-icons/fa/glass.d.ts +++ b/react-icons/fa/glass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGlass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glide-g.d.ts b/react-icons/fa/glide-g.d.ts index 67bd15b16c..a3c255fd26 100644 --- a/react-icons/fa/glide-g.d.ts +++ b/react-icons/fa/glide-g.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGlideG extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/glide.d.ts b/react-icons/fa/glide.d.ts index 2f37cd0396..06dcac76dd 100644 --- a/react-icons/fa/glide.d.ts +++ b/react-icons/fa/glide.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGlide extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/globe.d.ts b/react-icons/fa/globe.d.ts index c4abca76a1..6e7d88e510 100644 --- a/react-icons/fa/globe.d.ts +++ b/react-icons/fa/globe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-plus-square.d.ts b/react-icons/fa/google-plus-square.d.ts index 6cbec6fb0f..db32fc42d5 100644 --- a/react-icons/fa/google-plus-square.d.ts +++ b/react-icons/fa/google-plus-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGooglePlusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-plus.d.ts b/react-icons/fa/google-plus.d.ts index 7332f4299c..2d007e395f 100644 --- a/react-icons/fa/google-plus.d.ts +++ b/react-icons/fa/google-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGooglePlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google-wallet.d.ts b/react-icons/fa/google-wallet.d.ts index ea0d82eb34..23521ab9ca 100644 --- a/react-icons/fa/google-wallet.d.ts +++ b/react-icons/fa/google-wallet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGoogleWallet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/google.d.ts b/react-icons/fa/google.d.ts index 8d4e78fdb9..3316e73f9a 100644 --- a/react-icons/fa/google.d.ts +++ b/react-icons/fa/google.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGoogle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/graduation-cap.d.ts b/react-icons/fa/graduation-cap.d.ts index 0674575ddc..0208000eb0 100644 --- a/react-icons/fa/graduation-cap.d.ts +++ b/react-icons/fa/graduation-cap.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGraduationCap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/group.d.ts b/react-icons/fa/group.d.ts index bea44128bf..799bf3e4a3 100644 --- a/react-icons/fa/group.d.ts +++ b/react-icons/fa/group.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/h-square.d.ts b/react-icons/fa/h-square.d.ts index f56826d34a..9329a12a37 100644 --- a/react-icons/fa/h-square.d.ts +++ b/react-icons/fa/h-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hacker-news.d.ts b/react-icons/fa/hacker-news.d.ts index 60aac50007..61be5021aa 100644 --- a/react-icons/fa/hacker-news.d.ts +++ b/react-icons/fa/hacker-news.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHackerNews extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-grab-o.d.ts b/react-icons/fa/hand-grab-o.d.ts index 71853e811f..f34ecf5631 100644 --- a/react-icons/fa/hand-grab-o.d.ts +++ b/react-icons/fa/hand-grab-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandGrabO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-lizard-o.d.ts b/react-icons/fa/hand-lizard-o.d.ts index 060c5476e7..510af4ddb1 100644 --- a/react-icons/fa/hand-lizard-o.d.ts +++ b/react-icons/fa/hand-lizard-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandLizardO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-down.d.ts b/react-icons/fa/hand-o-down.d.ts index d2aebb45de..1890d90d0a 100644 --- a/react-icons/fa/hand-o-down.d.ts +++ b/react-icons/fa/hand-o-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-left.d.ts b/react-icons/fa/hand-o-left.d.ts index 161b268148..cb11017a86 100644 --- a/react-icons/fa/hand-o-left.d.ts +++ b/react-icons/fa/hand-o-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandOLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-right.d.ts b/react-icons/fa/hand-o-right.d.ts index f65a69a964..32ed938dfe 100644 --- a/react-icons/fa/hand-o-right.d.ts +++ b/react-icons/fa/hand-o-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandORight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-o-up.d.ts b/react-icons/fa/hand-o-up.d.ts index 318abde664..6118b8f689 100644 --- a/react-icons/fa/hand-o-up.d.ts +++ b/react-icons/fa/hand-o-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-paper-o.d.ts b/react-icons/fa/hand-paper-o.d.ts index 7a64c3821d..94f0f4dece 100644 --- a/react-icons/fa/hand-paper-o.d.ts +++ b/react-icons/fa/hand-paper-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandPaperO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-peace-o.d.ts b/react-icons/fa/hand-peace-o.d.ts index 7ebc332907..1dd78aeab3 100644 --- a/react-icons/fa/hand-peace-o.d.ts +++ b/react-icons/fa/hand-peace-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandPeaceO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-pointer-o.d.ts b/react-icons/fa/hand-pointer-o.d.ts index 75987c4272..7fb08b59ac 100644 --- a/react-icons/fa/hand-pointer-o.d.ts +++ b/react-icons/fa/hand-pointer-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandPointerO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-scissors-o.d.ts b/react-icons/fa/hand-scissors-o.d.ts index a943044eb8..3ea147616e 100644 --- a/react-icons/fa/hand-scissors-o.d.ts +++ b/react-icons/fa/hand-scissors-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandScissorsO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hand-spock-o.d.ts b/react-icons/fa/hand-spock-o.d.ts index e52da306dc..d8ea0b0916 100644 --- a/react-icons/fa/hand-spock-o.d.ts +++ b/react-icons/fa/hand-spock-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHandSpockO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hashtag.d.ts b/react-icons/fa/hashtag.d.ts index e673160f12..ba731c82b4 100644 --- a/react-icons/fa/hashtag.d.ts +++ b/react-icons/fa/hashtag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHashtag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hdd-o.d.ts b/react-icons/fa/hdd-o.d.ts index f773d4881a..e70d08fc72 100644 --- a/react-icons/fa/hdd-o.d.ts +++ b/react-icons/fa/hdd-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHddO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/header.d.ts b/react-icons/fa/header.d.ts index 14f7c0db93..a9622fee81 100644 --- a/react-icons/fa/header.d.ts +++ b/react-icons/fa/header.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHeader extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/headphones.d.ts b/react-icons/fa/headphones.d.ts index ae157eb948..2c2056b480 100644 --- a/react-icons/fa/headphones.d.ts +++ b/react-icons/fa/headphones.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHeadphones extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heart-o.d.ts b/react-icons/fa/heart-o.d.ts index 994eaa53e4..d6a5b1112b 100644 --- a/react-icons/fa/heart-o.d.ts +++ b/react-icons/fa/heart-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHeartO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heart.d.ts b/react-icons/fa/heart.d.ts index 34163f996b..26103c7c89 100644 --- a/react-icons/fa/heart.d.ts +++ b/react-icons/fa/heart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/heartbeat.d.ts b/react-icons/fa/heartbeat.d.ts index cdb67485bc..2e8deb079b 100644 --- a/react-icons/fa/heartbeat.d.ts +++ b/react-icons/fa/heartbeat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHeartbeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/history.d.ts b/react-icons/fa/history.d.ts index 1f8d7f24d4..8df975789f 100644 --- a/react-icons/fa/history.d.ts +++ b/react-icons/fa/history.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/home.d.ts b/react-icons/fa/home.d.ts index 1082739fd9..4f43bbd215 100644 --- a/react-icons/fa/home.d.ts +++ b/react-icons/fa/home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hospital-o.d.ts b/react-icons/fa/hospital-o.d.ts index d03e724a10..33348534ee 100644 --- a/react-icons/fa/hospital-o.d.ts +++ b/react-icons/fa/hospital-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHospitalO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-1.d.ts b/react-icons/fa/hourglass-1.d.ts index b78ac635fe..06ce0e99c9 100644 --- a/react-icons/fa/hourglass-1.d.ts +++ b/react-icons/fa/hourglass-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHourglass1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-2.d.ts b/react-icons/fa/hourglass-2.d.ts index 25efc6ba04..bf5d38ad05 100644 --- a/react-icons/fa/hourglass-2.d.ts +++ b/react-icons/fa/hourglass-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHourglass2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-3.d.ts b/react-icons/fa/hourglass-3.d.ts index 4140eeedcf..5bfdaf800f 100644 --- a/react-icons/fa/hourglass-3.d.ts +++ b/react-icons/fa/hourglass-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHourglass3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass-o.d.ts b/react-icons/fa/hourglass-o.d.ts index 1f63a88221..ddc4c3c5db 100644 --- a/react-icons/fa/hourglass-o.d.ts +++ b/react-icons/fa/hourglass-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHourglassO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/hourglass.d.ts b/react-icons/fa/hourglass.d.ts index 687e3a07b3..9f97ff54db 100644 --- a/react-icons/fa/hourglass.d.ts +++ b/react-icons/fa/hourglass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHourglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/houzz.d.ts b/react-icons/fa/houzz.d.ts index 6f7e0ee6ab..0888c5574e 100644 --- a/react-icons/fa/houzz.d.ts +++ b/react-icons/fa/houzz.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHouzz extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/html5.d.ts b/react-icons/fa/html5.d.ts index 27b2c95835..1eab745bab 100644 --- a/react-icons/fa/html5.d.ts +++ b/react-icons/fa/html5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/i-cursor.d.ts b/react-icons/fa/i-cursor.d.ts index d2f36f9ece..623d078376 100644 --- a/react-icons/fa/i-cursor.d.ts +++ b/react-icons/fa/i-cursor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaICursor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ils.d.ts b/react-icons/fa/ils.d.ts index ffc6dceb91..14b0b81c3c 100644 --- a/react-icons/fa/ils.d.ts +++ b/react-icons/fa/ils.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaIls extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/image.d.ts b/react-icons/fa/image.d.ts index de74651d15..4bc805b234 100644 --- a/react-icons/fa/image.d.ts +++ b/react-icons/fa/image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/inbox.d.ts b/react-icons/fa/inbox.d.ts index e9b7624fa9..b8d18a30f9 100644 --- a/react-icons/fa/inbox.d.ts +++ b/react-icons/fa/inbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/indent.d.ts b/react-icons/fa/indent.d.ts index f292801493..42a92bdf33 100644 --- a/react-icons/fa/indent.d.ts +++ b/react-icons/fa/indent.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaIndent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/index.d.ts b/react-icons/fa/index.d.ts index ec024a8515..0e47d2c7b6 100644 --- a/react-icons/fa/index.d.ts +++ b/react-icons/fa/index.d.ts @@ -1,3 +1,4 @@ +// TypeScript Version: 2.1 import _Fa500px from "./500px"; import _FaAdjust from "./adjust"; import _FaAdn from "./adn"; diff --git a/react-icons/fa/industry.d.ts b/react-icons/fa/industry.d.ts index 065603029d..e8f3a71c39 100644 --- a/react-icons/fa/industry.d.ts +++ b/react-icons/fa/industry.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaIndustry extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/info-circle.d.ts b/react-icons/fa/info-circle.d.ts index 3cdd4ba910..0ae7990657 100644 --- a/react-icons/fa/info-circle.d.ts +++ b/react-icons/fa/info-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInfoCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/info.d.ts b/react-icons/fa/info.d.ts index 12d384346c..63b23295dd 100644 --- a/react-icons/fa/info.d.ts +++ b/react-icons/fa/info.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/inr.d.ts b/react-icons/fa/inr.d.ts index 2a6866f938..e417fb6e0b 100644 --- a/react-icons/fa/inr.d.ts +++ b/react-icons/fa/inr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/instagram.d.ts b/react-icons/fa/instagram.d.ts index 7d7de6bd2a..dfa026fc6f 100644 --- a/react-icons/fa/instagram.d.ts +++ b/react-icons/fa/instagram.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/internet-explorer.d.ts b/react-icons/fa/internet-explorer.d.ts index a8f01ab4b2..23bbe1a7b0 100644 --- a/react-icons/fa/internet-explorer.d.ts +++ b/react-icons/fa/internet-explorer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaInternetExplorer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/intersex.d.ts b/react-icons/fa/intersex.d.ts index dbee84f6ad..57b84d48f5 100644 --- a/react-icons/fa/intersex.d.ts +++ b/react-icons/fa/intersex.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaIntersex extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ioxhost.d.ts b/react-icons/fa/ioxhost.d.ts index 9780683693..fc7351ee08 100644 --- a/react-icons/fa/ioxhost.d.ts +++ b/react-icons/fa/ioxhost.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaIoxhost extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/italic.d.ts b/react-icons/fa/italic.d.ts index 14e917dc7e..6360ef0ef5 100644 --- a/react-icons/fa/italic.d.ts +++ b/react-icons/fa/italic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaItalic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/joomla.d.ts b/react-icons/fa/joomla.d.ts index d8b9aeccab..637ab49291 100644 --- a/react-icons/fa/joomla.d.ts +++ b/react-icons/fa/joomla.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaJoomla extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/jsfiddle.d.ts b/react-icons/fa/jsfiddle.d.ts index 9c639e451e..ab62bf89e3 100644 --- a/react-icons/fa/jsfiddle.d.ts +++ b/react-icons/fa/jsfiddle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaJsfiddle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/key.d.ts b/react-icons/fa/key.d.ts index 3f3dc8582e..3bac6b8d11 100644 --- a/react-icons/fa/key.d.ts +++ b/react-icons/fa/key.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/keyboard-o.d.ts b/react-icons/fa/keyboard-o.d.ts index c0c7868c28..8229afa237 100644 --- a/react-icons/fa/keyboard-o.d.ts +++ b/react-icons/fa/keyboard-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaKeyboardO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/krw.d.ts b/react-icons/fa/krw.d.ts index c992f907af..516baa23c2 100644 --- a/react-icons/fa/krw.d.ts +++ b/react-icons/fa/krw.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaKrw extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/language.d.ts b/react-icons/fa/language.d.ts index df9d7a4f6e..f489fc48f4 100644 --- a/react-icons/fa/language.d.ts +++ b/react-icons/fa/language.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/laptop.d.ts b/react-icons/fa/laptop.d.ts index 82c3b88653..cd963fcd4a 100644 --- a/react-icons/fa/laptop.d.ts +++ b/react-icons/fa/laptop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lastfm-square.d.ts b/react-icons/fa/lastfm-square.d.ts index fb5e99b2c2..abe2993513 100644 --- a/react-icons/fa/lastfm-square.d.ts +++ b/react-icons/fa/lastfm-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLastfmSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lastfm.d.ts b/react-icons/fa/lastfm.d.ts index 7d7e3a6bc9..a12a814e2d 100644 --- a/react-icons/fa/lastfm.d.ts +++ b/react-icons/fa/lastfm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLastfm extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/leaf.d.ts b/react-icons/fa/leaf.d.ts index 5cf93b0df7..19995e5bab 100644 --- a/react-icons/fa/leaf.d.ts +++ b/react-icons/fa/leaf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/leanpub.d.ts b/react-icons/fa/leanpub.d.ts index bf8513f910..c8016a794c 100644 --- a/react-icons/fa/leanpub.d.ts +++ b/react-icons/fa/leanpub.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLeanpub extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lemon-o.d.ts b/react-icons/fa/lemon-o.d.ts index 378c6e4290..28517c5104 100644 --- a/react-icons/fa/lemon-o.d.ts +++ b/react-icons/fa/lemon-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLemonO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/level-down.d.ts b/react-icons/fa/level-down.d.ts index 0ed37125d1..52fb1d523a 100644 --- a/react-icons/fa/level-down.d.ts +++ b/react-icons/fa/level-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLevelDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/level-up.d.ts b/react-icons/fa/level-up.d.ts index a467875d8d..b2e984b268 100644 --- a/react-icons/fa/level-up.d.ts +++ b/react-icons/fa/level-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLevelUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/life-bouy.d.ts b/react-icons/fa/life-bouy.d.ts index a1bc9bb7e7..4754863b05 100644 --- a/react-icons/fa/life-bouy.d.ts +++ b/react-icons/fa/life-bouy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLifeBouy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lightbulb-o.d.ts b/react-icons/fa/lightbulb-o.d.ts index a92e219c42..2086f81c89 100644 --- a/react-icons/fa/lightbulb-o.d.ts +++ b/react-icons/fa/lightbulb-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLightbulbO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/line-chart.d.ts b/react-icons/fa/line-chart.d.ts index e92ad7c28e..597b086804 100644 --- a/react-icons/fa/line-chart.d.ts +++ b/react-icons/fa/line-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLineChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linkedin-square.d.ts b/react-icons/fa/linkedin-square.d.ts index c245a515f1..3bf5af6aa7 100644 --- a/react-icons/fa/linkedin-square.d.ts +++ b/react-icons/fa/linkedin-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLinkedinSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linkedin.d.ts b/react-icons/fa/linkedin.d.ts index 2e3058eb6d..515040ac7d 100644 --- a/react-icons/fa/linkedin.d.ts +++ b/react-icons/fa/linkedin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/linux.d.ts b/react-icons/fa/linux.d.ts index ba1c90215a..e6ff75978e 100644 --- a/react-icons/fa/linux.d.ts +++ b/react-icons/fa/linux.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLinux extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-alt.d.ts b/react-icons/fa/list-alt.d.ts index 8469ec582d..67c809022b 100644 --- a/react-icons/fa/list-alt.d.ts +++ b/react-icons/fa/list-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaListAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-ol.d.ts b/react-icons/fa/list-ol.d.ts index 64d4387b55..2cf4a1dd0b 100644 --- a/react-icons/fa/list-ol.d.ts +++ b/react-icons/fa/list-ol.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaListOl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list-ul.d.ts b/react-icons/fa/list-ul.d.ts index be4fcac55c..e7e2a2cdf3 100644 --- a/react-icons/fa/list-ul.d.ts +++ b/react-icons/fa/list-ul.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaListUl extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/list.d.ts b/react-icons/fa/list.d.ts index 940a3c7e3e..795dbd68cf 100644 --- a/react-icons/fa/list.d.ts +++ b/react-icons/fa/list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaList extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/location-arrow.d.ts b/react-icons/fa/location-arrow.d.ts index 6384a6872e..d599a5c2ec 100644 --- a/react-icons/fa/location-arrow.d.ts +++ b/react-icons/fa/location-arrow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLocationArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/lock.d.ts b/react-icons/fa/lock.d.ts index a0b901cb0f..c3c7beb04b 100644 --- a/react-icons/fa/lock.d.ts +++ b/react-icons/fa/lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-down.d.ts b/react-icons/fa/long-arrow-down.d.ts index 2662b7b62c..7a8b91d812 100644 --- a/react-icons/fa/long-arrow-down.d.ts +++ b/react-icons/fa/long-arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLongArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-left.d.ts b/react-icons/fa/long-arrow-left.d.ts index 70a24fa77e..cd69a8acfd 100644 --- a/react-icons/fa/long-arrow-left.d.ts +++ b/react-icons/fa/long-arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLongArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-right.d.ts b/react-icons/fa/long-arrow-right.d.ts index 49a1e41143..8f98b59ee8 100644 --- a/react-icons/fa/long-arrow-right.d.ts +++ b/react-icons/fa/long-arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLongArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/long-arrow-up.d.ts b/react-icons/fa/long-arrow-up.d.ts index cea0a0e3e1..778d8a3fca 100644 --- a/react-icons/fa/long-arrow-up.d.ts +++ b/react-icons/fa/long-arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLongArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/low-vision.d.ts b/react-icons/fa/low-vision.d.ts index af6de88707..49a05aed36 100644 --- a/react-icons/fa/low-vision.d.ts +++ b/react-icons/fa/low-vision.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaLowVision extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/magic.d.ts b/react-icons/fa/magic.d.ts index 9973e70e3a..246004a8fe 100644 --- a/react-icons/fa/magic.d.ts +++ b/react-icons/fa/magic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMagic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/magnet.d.ts b/react-icons/fa/magnet.d.ts index dae7fb414b..4fcf556fb5 100644 --- a/react-icons/fa/magnet.d.ts +++ b/react-icons/fa/magnet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMagnet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-forward.d.ts b/react-icons/fa/mail-forward.d.ts index 205b2c5186..dc035945c8 100644 --- a/react-icons/fa/mail-forward.d.ts +++ b/react-icons/fa/mail-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMailForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-reply-all.d.ts b/react-icons/fa/mail-reply-all.d.ts index 65488971f1..ef29bd6f96 100644 --- a/react-icons/fa/mail-reply-all.d.ts +++ b/react-icons/fa/mail-reply-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMailReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mail-reply.d.ts b/react-icons/fa/mail-reply.d.ts index 0bf9506f9f..7d44d2edca 100644 --- a/react-icons/fa/mail-reply.d.ts +++ b/react-icons/fa/mail-reply.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMailReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/male.d.ts b/react-icons/fa/male.d.ts index 2021eed6cf..0996b39c1a 100644 --- a/react-icons/fa/male.d.ts +++ b/react-icons/fa/male.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMale extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-marker.d.ts b/react-icons/fa/map-marker.d.ts index 1020a0d962..18d86b09ac 100644 --- a/react-icons/fa/map-marker.d.ts +++ b/react-icons/fa/map-marker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMapMarker extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-o.d.ts b/react-icons/fa/map-o.d.ts index 338425c827..b09e7144dc 100644 --- a/react-icons/fa/map-o.d.ts +++ b/react-icons/fa/map-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMapO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-pin.d.ts b/react-icons/fa/map-pin.d.ts index f24ecf840b..1fa56fd90e 100644 --- a/react-icons/fa/map-pin.d.ts +++ b/react-icons/fa/map-pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMapPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map-signs.d.ts b/react-icons/fa/map-signs.d.ts index 303b1d7255..2dc3ea10e9 100644 --- a/react-icons/fa/map-signs.d.ts +++ b/react-icons/fa/map-signs.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMapSigns extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/map.d.ts b/react-icons/fa/map.d.ts index 32715de18a..37cd618f5f 100644 --- a/react-icons/fa/map.d.ts +++ b/react-icons/fa/map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-double.d.ts b/react-icons/fa/mars-double.d.ts index a703a4b58d..966aacc073 100644 --- a/react-icons/fa/mars-double.d.ts +++ b/react-icons/fa/mars-double.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMarsDouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke-h.d.ts b/react-icons/fa/mars-stroke-h.d.ts index 052359b4ad..920e65c879 100644 --- a/react-icons/fa/mars-stroke-h.d.ts +++ b/react-icons/fa/mars-stroke-h.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMarsStrokeH extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke-v.d.ts b/react-icons/fa/mars-stroke-v.d.ts index a98be26bf3..03bfc5fbdd 100644 --- a/react-icons/fa/mars-stroke-v.d.ts +++ b/react-icons/fa/mars-stroke-v.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMarsStrokeV extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars-stroke.d.ts b/react-icons/fa/mars-stroke.d.ts index ba35e62d87..515312992c 100644 --- a/react-icons/fa/mars-stroke.d.ts +++ b/react-icons/fa/mars-stroke.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMarsStroke extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mars.d.ts b/react-icons/fa/mars.d.ts index 8ad3052cd6..9c54e0b381 100644 --- a/react-icons/fa/mars.d.ts +++ b/react-icons/fa/mars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/maxcdn.d.ts b/react-icons/fa/maxcdn.d.ts index 1980392ee3..5e5334b4b1 100644 --- a/react-icons/fa/maxcdn.d.ts +++ b/react-icons/fa/maxcdn.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMaxcdn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/meanpath.d.ts b/react-icons/fa/meanpath.d.ts index d8e4dc6e68..91df87b30b 100644 --- a/react-icons/fa/meanpath.d.ts +++ b/react-icons/fa/meanpath.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMeanpath extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/medium.d.ts b/react-icons/fa/medium.d.ts index 905ffd3423..6d7d8a352b 100644 --- a/react-icons/fa/medium.d.ts +++ b/react-icons/fa/medium.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/medkit.d.ts b/react-icons/fa/medkit.d.ts index acbdec4234..47abf0a91e 100644 --- a/react-icons/fa/medkit.d.ts +++ b/react-icons/fa/medkit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/meh-o.d.ts b/react-icons/fa/meh-o.d.ts index 4a5cb9cbc8..59b4dffd53 100644 --- a/react-icons/fa/meh-o.d.ts +++ b/react-icons/fa/meh-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMehO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mercury.d.ts b/react-icons/fa/mercury.d.ts index 28b5633f2a..c639af6712 100644 --- a/react-icons/fa/mercury.d.ts +++ b/react-icons/fa/mercury.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMercury extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/microphone-slash.d.ts b/react-icons/fa/microphone-slash.d.ts index 533f4e9011..3eeaead1d7 100644 --- a/react-icons/fa/microphone-slash.d.ts +++ b/react-icons/fa/microphone-slash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMicrophoneSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/microphone.d.ts b/react-icons/fa/microphone.d.ts index 2b16001ed5..cf67cd28a2 100644 --- a/react-icons/fa/microphone.d.ts +++ b/react-icons/fa/microphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-circle.d.ts b/react-icons/fa/minus-circle.d.ts index 5f447e9d3c..11dcd97b9c 100644 --- a/react-icons/fa/minus-circle.d.ts +++ b/react-icons/fa/minus-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMinusCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-square-o.d.ts b/react-icons/fa/minus-square-o.d.ts index 3f214e57c0..a1feec8569 100644 --- a/react-icons/fa/minus-square-o.d.ts +++ b/react-icons/fa/minus-square-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMinusSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus-square.d.ts b/react-icons/fa/minus-square.d.ts index 0df8af13e1..d5da621dd4 100644 --- a/react-icons/fa/minus-square.d.ts +++ b/react-icons/fa/minus-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMinusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/minus.d.ts b/react-icons/fa/minus.d.ts index 7bfdce664a..4b12b0c1a8 100644 --- a/react-icons/fa/minus.d.ts +++ b/react-icons/fa/minus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mixcloud.d.ts b/react-icons/fa/mixcloud.d.ts index 3ebde165ba..a4e3eed159 100644 --- a/react-icons/fa/mixcloud.d.ts +++ b/react-icons/fa/mixcloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMixcloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mobile.d.ts b/react-icons/fa/mobile.d.ts index 5c9b2bb0cf..8b70a03bd9 100644 --- a/react-icons/fa/mobile.d.ts +++ b/react-icons/fa/mobile.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/modx.d.ts b/react-icons/fa/modx.d.ts index 456bc4c2be..84cab2fa69 100644 --- a/react-icons/fa/modx.d.ts +++ b/react-icons/fa/modx.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaModx extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/money.d.ts b/react-icons/fa/money.d.ts index d71ef449fc..3849860fa3 100644 --- a/react-icons/fa/money.d.ts +++ b/react-icons/fa/money.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMoney extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/moon-o.d.ts b/react-icons/fa/moon-o.d.ts index facd689e1d..83f5f71852 100644 --- a/react-icons/fa/moon-o.d.ts +++ b/react-icons/fa/moon-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMoonO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/motorcycle.d.ts b/react-icons/fa/motorcycle.d.ts index 712ccfdc72..4e27c4f1d5 100644 --- a/react-icons/fa/motorcycle.d.ts +++ b/react-icons/fa/motorcycle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMotorcycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/mouse-pointer.d.ts b/react-icons/fa/mouse-pointer.d.ts index e4963a4449..1d3f5efb7a 100644 --- a/react-icons/fa/mouse-pointer.d.ts +++ b/react-icons/fa/mouse-pointer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMousePointer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/music.d.ts b/react-icons/fa/music.d.ts index 95ec220b25..26f1c12373 100644 --- a/react-icons/fa/music.d.ts +++ b/react-icons/fa/music.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/neuter.d.ts b/react-icons/fa/neuter.d.ts index baada6e8a0..2277dc93fe 100644 --- a/react-icons/fa/neuter.d.ts +++ b/react-icons/fa/neuter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaNeuter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/newspaper-o.d.ts b/react-icons/fa/newspaper-o.d.ts index d13977de93..bd34cbb158 100644 --- a/react-icons/fa/newspaper-o.d.ts +++ b/react-icons/fa/newspaper-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaNewspaperO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/object-group.d.ts b/react-icons/fa/object-group.d.ts index fd46228d1e..9ba2a069f4 100644 --- a/react-icons/fa/object-group.d.ts +++ b/react-icons/fa/object-group.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaObjectGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/object-ungroup.d.ts b/react-icons/fa/object-ungroup.d.ts index e1b0ec954d..da00a4e6cf 100644 --- a/react-icons/fa/object-ungroup.d.ts +++ b/react-icons/fa/object-ungroup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaObjectUngroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/odnoklassniki-square.d.ts b/react-icons/fa/odnoklassniki-square.d.ts index 328a8a4549..4eecae443f 100644 --- a/react-icons/fa/odnoklassniki-square.d.ts +++ b/react-icons/fa/odnoklassniki-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOdnoklassnikiSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/odnoklassniki.d.ts b/react-icons/fa/odnoklassniki.d.ts index 20f5993252..5ee1a690b6 100644 --- a/react-icons/fa/odnoklassniki.d.ts +++ b/react-icons/fa/odnoklassniki.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOdnoklassniki extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/opencart.d.ts b/react-icons/fa/opencart.d.ts index 38cd697ea8..9ca2ad25ce 100644 --- a/react-icons/fa/opencart.d.ts +++ b/react-icons/fa/opencart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOpencart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/openid.d.ts b/react-icons/fa/openid.d.ts index ec4f05bb35..b0da49192d 100644 --- a/react-icons/fa/openid.d.ts +++ b/react-icons/fa/openid.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOpenid extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/opera.d.ts b/react-icons/fa/opera.d.ts index f258ccde96..91a21c5487 100644 --- a/react-icons/fa/opera.d.ts +++ b/react-icons/fa/opera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOpera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/optin-monster.d.ts b/react-icons/fa/optin-monster.d.ts index beac65b808..9311cfdae3 100644 --- a/react-icons/fa/optin-monster.d.ts +++ b/react-icons/fa/optin-monster.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaOptinMonster extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pagelines.d.ts b/react-icons/fa/pagelines.d.ts index 207e16391b..1dacf5c783 100644 --- a/react-icons/fa/pagelines.d.ts +++ b/react-icons/fa/pagelines.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPagelines extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paint-brush.d.ts b/react-icons/fa/paint-brush.d.ts index bac6fb90c2..74eb2eb892 100644 --- a/react-icons/fa/paint-brush.d.ts +++ b/react-icons/fa/paint-brush.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaintBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paper-plane-o.d.ts b/react-icons/fa/paper-plane-o.d.ts index dbeff1ec55..586315b13d 100644 --- a/react-icons/fa/paper-plane-o.d.ts +++ b/react-icons/fa/paper-plane-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaperPlaneO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paper-plane.d.ts b/react-icons/fa/paper-plane.d.ts index 2a6d9c2ae0..a2ea475cfb 100644 --- a/react-icons/fa/paper-plane.d.ts +++ b/react-icons/fa/paper-plane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaperPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paperclip.d.ts b/react-icons/fa/paperclip.d.ts index dc5c3f3fa4..450b075c07 100644 --- a/react-icons/fa/paperclip.d.ts +++ b/react-icons/fa/paperclip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaperclip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paragraph.d.ts b/react-icons/fa/paragraph.d.ts index 6a3d0a1c26..7adbb9c636 100644 --- a/react-icons/fa/paragraph.d.ts +++ b/react-icons/fa/paragraph.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaParagraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause-circle-o.d.ts b/react-icons/fa/pause-circle-o.d.ts index a3e92cf0a2..3c7f9833c9 100644 --- a/react-icons/fa/pause-circle-o.d.ts +++ b/react-icons/fa/pause-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPauseCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause-circle.d.ts b/react-icons/fa/pause-circle.d.ts index 19a13c5b7c..0e1d4fd362 100644 --- a/react-icons/fa/pause-circle.d.ts +++ b/react-icons/fa/pause-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPauseCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pause.d.ts b/react-icons/fa/pause.d.ts index 5dbc6cc8f5..7b4c0ab089 100644 --- a/react-icons/fa/pause.d.ts +++ b/react-icons/fa/pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paw.d.ts b/react-icons/fa/paw.d.ts index 43ec45421b..f3023b34ef 100644 --- a/react-icons/fa/paw.d.ts +++ b/react-icons/fa/paw.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/paypal.d.ts b/react-icons/fa/paypal.d.ts index 656ce66d66..7a13de088f 100644 --- a/react-icons/fa/paypal.d.ts +++ b/react-icons/fa/paypal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPaypal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pencil-square.d.ts b/react-icons/fa/pencil-square.d.ts index 7a6ef09d67..030da111ce 100644 --- a/react-icons/fa/pencil-square.d.ts +++ b/react-icons/fa/pencil-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPencilSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pencil.d.ts b/react-icons/fa/pencil.d.ts index 824e32f274..392228be54 100644 --- a/react-icons/fa/pencil.d.ts +++ b/react-icons/fa/pencil.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/percent.d.ts b/react-icons/fa/percent.d.ts index 4e29b9aa8a..7ca1535015 100644 --- a/react-icons/fa/percent.d.ts +++ b/react-icons/fa/percent.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPercent extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/phone-square.d.ts b/react-icons/fa/phone-square.d.ts index 13add3a285..896b00fbd6 100644 --- a/react-icons/fa/phone-square.d.ts +++ b/react-icons/fa/phone-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPhoneSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/phone.d.ts b/react-icons/fa/phone.d.ts index f3e8097ebe..4bee3b631e 100644 --- a/react-icons/fa/phone.d.ts +++ b/react-icons/fa/phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pie-chart.d.ts b/react-icons/fa/pie-chart.d.ts index 4be742a543..f96bc04f11 100644 --- a/react-icons/fa/pie-chart.d.ts +++ b/react-icons/fa/pie-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPieChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pied-piper-alt.d.ts b/react-icons/fa/pied-piper-alt.d.ts index 859eb5b879..1386a961cd 100644 --- a/react-icons/fa/pied-piper-alt.d.ts +++ b/react-icons/fa/pied-piper-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPiedPiperAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pied-piper.d.ts b/react-icons/fa/pied-piper.d.ts index 3ed85cdc58..0c07a58840 100644 --- a/react-icons/fa/pied-piper.d.ts +++ b/react-icons/fa/pied-piper.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPiedPiper extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest-p.d.ts b/react-icons/fa/pinterest-p.d.ts index d5291a5e63..0bba8d4e9f 100644 --- a/react-icons/fa/pinterest-p.d.ts +++ b/react-icons/fa/pinterest-p.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPinterestP extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest-square.d.ts b/react-icons/fa/pinterest-square.d.ts index cb0a5649fb..41fd6bb46a 100644 --- a/react-icons/fa/pinterest-square.d.ts +++ b/react-icons/fa/pinterest-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPinterestSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/pinterest.d.ts b/react-icons/fa/pinterest.d.ts index 9648489719..6a86864bd3 100644 --- a/react-icons/fa/pinterest.d.ts +++ b/react-icons/fa/pinterest.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plane.d.ts b/react-icons/fa/plane.d.ts index 3bba3ad6cd..96d07d06f9 100644 --- a/react-icons/fa/plane.d.ts +++ b/react-icons/fa/plane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play-circle-o.d.ts b/react-icons/fa/play-circle-o.d.ts index a5e06c3bbd..56c7df8ef2 100644 --- a/react-icons/fa/play-circle-o.d.ts +++ b/react-icons/fa/play-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlayCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play-circle.d.ts b/react-icons/fa/play-circle.d.ts index 20d80fdd26..f1a6e280a8 100644 --- a/react-icons/fa/play-circle.d.ts +++ b/react-icons/fa/play-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlayCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/play.d.ts b/react-icons/fa/play.d.ts index 3c7e7f3b2e..624d9f8692 100644 --- a/react-icons/fa/play.d.ts +++ b/react-icons/fa/play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plug.d.ts b/react-icons/fa/plug.d.ts index 0de21392e5..99e00219dc 100644 --- a/react-icons/fa/plug.d.ts +++ b/react-icons/fa/plug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-circle.d.ts b/react-icons/fa/plus-circle.d.ts index dcc8b22b2e..4880829e61 100644 --- a/react-icons/fa/plus-circle.d.ts +++ b/react-icons/fa/plus-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlusCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-square-o.d.ts b/react-icons/fa/plus-square-o.d.ts index 196ced0ab4..8c7b4865b2 100644 --- a/react-icons/fa/plus-square-o.d.ts +++ b/react-icons/fa/plus-square-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlusSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus-square.d.ts b/react-icons/fa/plus-square.d.ts index ac73117f04..fce4a9a7b9 100644 --- a/react-icons/fa/plus-square.d.ts +++ b/react-icons/fa/plus-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlusSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/plus.d.ts b/react-icons/fa/plus.d.ts index 4e33e15df1..0979e4b4ee 100644 --- a/react-icons/fa/plus.d.ts +++ b/react-icons/fa/plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/power-off.d.ts b/react-icons/fa/power-off.d.ts index b16847d0e7..a72295250d 100644 --- a/react-icons/fa/power-off.d.ts +++ b/react-icons/fa/power-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPowerOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/print.d.ts b/react-icons/fa/print.d.ts index 4326176239..cf2a67d131 100644 --- a/react-icons/fa/print.d.ts +++ b/react-icons/fa/print.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/product-hunt.d.ts b/react-icons/fa/product-hunt.d.ts index c819bdd885..43b9df0f5c 100644 --- a/react-icons/fa/product-hunt.d.ts +++ b/react-icons/fa/product-hunt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaProductHunt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/puzzle-piece.d.ts b/react-icons/fa/puzzle-piece.d.ts index b1796b4170..a53253f7c9 100644 --- a/react-icons/fa/puzzle-piece.d.ts +++ b/react-icons/fa/puzzle-piece.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaPuzzlePiece extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/qq.d.ts b/react-icons/fa/qq.d.ts index fbe26d67c1..0e50a82002 100644 --- a/react-icons/fa/qq.d.ts +++ b/react-icons/fa/qq.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQq extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/qrcode.d.ts b/react-icons/fa/qrcode.d.ts index 8c741c9e8b..7fc15f220b 100644 --- a/react-icons/fa/qrcode.d.ts +++ b/react-icons/fa/qrcode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQrcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question-circle-o.d.ts b/react-icons/fa/question-circle-o.d.ts index 5ec089a48b..87b78dbc2b 100644 --- a/react-icons/fa/question-circle-o.d.ts +++ b/react-icons/fa/question-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQuestionCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question-circle.d.ts b/react-icons/fa/question-circle.d.ts index ddb7c6b7ff..0a111a034a 100644 --- a/react-icons/fa/question-circle.d.ts +++ b/react-icons/fa/question-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQuestionCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/question.d.ts b/react-icons/fa/question.d.ts index 5b9bb30f32..fd81baf7f6 100644 --- a/react-icons/fa/question.d.ts +++ b/react-icons/fa/question.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQuestion extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/quote-left.d.ts b/react-icons/fa/quote-left.d.ts index dc5900a86b..237bc50eb3 100644 --- a/react-icons/fa/quote-left.d.ts +++ b/react-icons/fa/quote-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQuoteLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/quote-right.d.ts b/react-icons/fa/quote-right.d.ts index cc9aef7f9d..55e90430c8 100644 --- a/react-icons/fa/quote-right.d.ts +++ b/react-icons/fa/quote-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaQuoteRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ra.d.ts b/react-icons/fa/ra.d.ts index 08a9235683..6bd73998a8 100644 --- a/react-icons/fa/ra.d.ts +++ b/react-icons/fa/ra.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRa extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/random.d.ts b/react-icons/fa/random.d.ts index 291123b83e..2b63393a0c 100644 --- a/react-icons/fa/random.d.ts +++ b/react-icons/fa/random.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRandom extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/recycle.d.ts b/react-icons/fa/recycle.d.ts index 7586a141d5..125f43dff5 100644 --- a/react-icons/fa/recycle.d.ts +++ b/react-icons/fa/recycle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRecycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit-alien.d.ts b/react-icons/fa/reddit-alien.d.ts index 3a1653e106..aec73ee0e6 100644 --- a/react-icons/fa/reddit-alien.d.ts +++ b/react-icons/fa/reddit-alien.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRedditAlien extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit-square.d.ts b/react-icons/fa/reddit-square.d.ts index ccd5cc1941..020e9e6d8b 100644 --- a/react-icons/fa/reddit-square.d.ts +++ b/react-icons/fa/reddit-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRedditSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/reddit.d.ts b/react-icons/fa/reddit.d.ts index 00f3d45e9d..fc5eeaca24 100644 --- a/react-icons/fa/reddit.d.ts +++ b/react-icons/fa/reddit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaReddit extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/refresh.d.ts b/react-icons/fa/refresh.d.ts index 2edcde573f..2d8029496d 100644 --- a/react-icons/fa/refresh.d.ts +++ b/react-icons/fa/refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/registered.d.ts b/react-icons/fa/registered.d.ts index 76fa7a8165..12fff9c9e1 100644 --- a/react-icons/fa/registered.d.ts +++ b/react-icons/fa/registered.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRegistered extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/renren.d.ts b/react-icons/fa/renren.d.ts index f9ca02f601..a1e620cf61 100644 --- a/react-icons/fa/renren.d.ts +++ b/react-icons/fa/renren.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRenren extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/repeat.d.ts b/react-icons/fa/repeat.d.ts index 59c73627d0..44bcf57168 100644 --- a/react-icons/fa/repeat.d.ts +++ b/react-icons/fa/repeat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/retweet.d.ts b/react-icons/fa/retweet.d.ts index a0a699fdf5..23ad8ebfb6 100644 --- a/react-icons/fa/retweet.d.ts +++ b/react-icons/fa/retweet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRetweet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/road.d.ts b/react-icons/fa/road.d.ts index 09a71b92dc..8996faff9b 100644 --- a/react-icons/fa/road.d.ts +++ b/react-icons/fa/road.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRoad extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rocket.d.ts b/react-icons/fa/rocket.d.ts index a68d569858..fc7128fd59 100644 --- a/react-icons/fa/rocket.d.ts +++ b/react-icons/fa/rocket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rotate-left.d.ts b/react-icons/fa/rotate-left.d.ts index 11cb8a6193..3847ef64ce 100644 --- a/react-icons/fa/rotate-left.d.ts +++ b/react-icons/fa/rotate-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRotateLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rouble.d.ts b/react-icons/fa/rouble.d.ts index bb230f5309..53a15eb0e7 100644 --- a/react-icons/fa/rouble.d.ts +++ b/react-icons/fa/rouble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/rss-square.d.ts b/react-icons/fa/rss-square.d.ts index 6beff109a7..49808b3cb3 100644 --- a/react-icons/fa/rss-square.d.ts +++ b/react-icons/fa/rss-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaRssSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/safari.d.ts b/react-icons/fa/safari.d.ts index c351ff45ee..8c0fce8605 100644 --- a/react-icons/fa/safari.d.ts +++ b/react-icons/fa/safari.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSafari extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/scribd.d.ts b/react-icons/fa/scribd.d.ts index 31dc664e43..46d9293e5c 100644 --- a/react-icons/fa/scribd.d.ts +++ b/react-icons/fa/scribd.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaScribd extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search-minus.d.ts b/react-icons/fa/search-minus.d.ts index fd87ffc0e4..8d12a5a76f 100644 --- a/react-icons/fa/search-minus.d.ts +++ b/react-icons/fa/search-minus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSearchMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search-plus.d.ts b/react-icons/fa/search-plus.d.ts index 0955ad79db..eb83eaaa38 100644 --- a/react-icons/fa/search-plus.d.ts +++ b/react-icons/fa/search-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSearchPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/search.d.ts b/react-icons/fa/search.d.ts index ebfb8837b9..62a29228f4 100644 --- a/react-icons/fa/search.d.ts +++ b/react-icons/fa/search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sellsy.d.ts b/react-icons/fa/sellsy.d.ts index 03b1408a6b..96e9275083 100644 --- a/react-icons/fa/sellsy.d.ts +++ b/react-icons/fa/sellsy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSellsy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/server.d.ts b/react-icons/fa/server.d.ts index e61ef69c83..41b8448244 100644 --- a/react-icons/fa/server.d.ts +++ b/react-icons/fa/server.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaServer extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-alt-square.d.ts b/react-icons/fa/share-alt-square.d.ts index ad508bbef5..6f50526769 100644 --- a/react-icons/fa/share-alt-square.d.ts +++ b/react-icons/fa/share-alt-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShareAltSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-alt.d.ts b/react-icons/fa/share-alt.d.ts index 973b8f4c79..2f8780b915 100644 --- a/react-icons/fa/share-alt.d.ts +++ b/react-icons/fa/share-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShareAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-square-o.d.ts b/react-icons/fa/share-square-o.d.ts index a51a0e9eab..502d7f5660 100644 --- a/react-icons/fa/share-square-o.d.ts +++ b/react-icons/fa/share-square-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShareSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/share-square.d.ts b/react-icons/fa/share-square.d.ts index ca49acb9d6..418c284b81 100644 --- a/react-icons/fa/share-square.d.ts +++ b/react-icons/fa/share-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShareSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shield.d.ts b/react-icons/fa/shield.d.ts index 3f65ea39d9..74da2fb8f2 100644 --- a/react-icons/fa/shield.d.ts +++ b/react-icons/fa/shield.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShield extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ship.d.ts b/react-icons/fa/ship.d.ts index fcc289559d..7b932027d6 100644 --- a/react-icons/fa/ship.d.ts +++ b/react-icons/fa/ship.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShip extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shirtsinbulk.d.ts b/react-icons/fa/shirtsinbulk.d.ts index 8cbc4ee804..38c972da97 100644 --- a/react-icons/fa/shirtsinbulk.d.ts +++ b/react-icons/fa/shirtsinbulk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShirtsinbulk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-bag.d.ts b/react-icons/fa/shopping-bag.d.ts index 533fcd80d5..1f09f490c0 100644 --- a/react-icons/fa/shopping-bag.d.ts +++ b/react-icons/fa/shopping-bag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShoppingBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-basket.d.ts b/react-icons/fa/shopping-basket.d.ts index 465aa80127..a5cee9db44 100644 --- a/react-icons/fa/shopping-basket.d.ts +++ b/react-icons/fa/shopping-basket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShoppingBasket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/shopping-cart.d.ts b/react-icons/fa/shopping-cart.d.ts index 97264eb3f0..d8f7051ddf 100644 --- a/react-icons/fa/shopping-cart.d.ts +++ b/react-icons/fa/shopping-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-in.d.ts b/react-icons/fa/sign-in.d.ts index 3ef3761f78..71499c08d0 100644 --- a/react-icons/fa/sign-in.d.ts +++ b/react-icons/fa/sign-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSignIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-language.d.ts b/react-icons/fa/sign-language.d.ts index 6ffeb6e641..f3ce435dd4 100644 --- a/react-icons/fa/sign-language.d.ts +++ b/react-icons/fa/sign-language.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSignLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sign-out.d.ts b/react-icons/fa/sign-out.d.ts index cbc5796b88..b6b59b82fd 100644 --- a/react-icons/fa/sign-out.d.ts +++ b/react-icons/fa/sign-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSignOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/signal.d.ts b/react-icons/fa/signal.d.ts index 9b579f859b..b28c5bde74 100644 --- a/react-icons/fa/signal.d.ts +++ b/react-icons/fa/signal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSignal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/simplybuilt.d.ts b/react-icons/fa/simplybuilt.d.ts index 78b3903dce..de1b885bf0 100644 --- a/react-icons/fa/simplybuilt.d.ts +++ b/react-icons/fa/simplybuilt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSimplybuilt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sitemap.d.ts b/react-icons/fa/sitemap.d.ts index 9fdf514ff9..da0b230748 100644 --- a/react-icons/fa/sitemap.d.ts +++ b/react-icons/fa/sitemap.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSitemap extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/skyatlas.d.ts b/react-icons/fa/skyatlas.d.ts index 07866ff2f8..81d5916b27 100644 --- a/react-icons/fa/skyatlas.d.ts +++ b/react-icons/fa/skyatlas.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSkyatlas extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/skype.d.ts b/react-icons/fa/skype.d.ts index c7c84f8661..c88261d532 100644 --- a/react-icons/fa/skype.d.ts +++ b/react-icons/fa/skype.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/slack.d.ts b/react-icons/fa/slack.d.ts index 018f7152cf..b8180445f1 100644 --- a/react-icons/fa/slack.d.ts +++ b/react-icons/fa/slack.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSlack extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sliders.d.ts b/react-icons/fa/sliders.d.ts index 7b4baf8ec4..0193187dba 100644 --- a/react-icons/fa/sliders.d.ts +++ b/react-icons/fa/sliders.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSliders extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/slideshare.d.ts b/react-icons/fa/slideshare.d.ts index e0901acbe3..7f48c79688 100644 --- a/react-icons/fa/slideshare.d.ts +++ b/react-icons/fa/slideshare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSlideshare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/smile-o.d.ts b/react-icons/fa/smile-o.d.ts index c32482abfe..67295bfb84 100644 --- a/react-icons/fa/smile-o.d.ts +++ b/react-icons/fa/smile-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSmileO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat-ghost.d.ts b/react-icons/fa/snapchat-ghost.d.ts index 70878dc106..45f79398f8 100644 --- a/react-icons/fa/snapchat-ghost.d.ts +++ b/react-icons/fa/snapchat-ghost.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSnapchatGhost extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat-square.d.ts b/react-icons/fa/snapchat-square.d.ts index 1f35c75403..412c376992 100644 --- a/react-icons/fa/snapchat-square.d.ts +++ b/react-icons/fa/snapchat-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSnapchatSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/snapchat.d.ts b/react-icons/fa/snapchat.d.ts index 8725311af1..bed672b8f1 100644 --- a/react-icons/fa/snapchat.d.ts +++ b/react-icons/fa/snapchat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSnapchat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-alpha-asc.d.ts b/react-icons/fa/sort-alpha-asc.d.ts index 8c6d236107..1eda3a533c 100644 --- a/react-icons/fa/sort-alpha-asc.d.ts +++ b/react-icons/fa/sort-alpha-asc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortAlphaAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-alpha-desc.d.ts b/react-icons/fa/sort-alpha-desc.d.ts index d0e10dd71b..0368742f1b 100644 --- a/react-icons/fa/sort-alpha-desc.d.ts +++ b/react-icons/fa/sort-alpha-desc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortAlphaDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-amount-asc.d.ts b/react-icons/fa/sort-amount-asc.d.ts index 2a39b96f11..2804ae1510 100644 --- a/react-icons/fa/sort-amount-asc.d.ts +++ b/react-icons/fa/sort-amount-asc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortAmountAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-amount-desc.d.ts b/react-icons/fa/sort-amount-desc.d.ts index c9b97bbeb4..a0ee7ddc29 100644 --- a/react-icons/fa/sort-amount-desc.d.ts +++ b/react-icons/fa/sort-amount-desc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortAmountDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-asc.d.ts b/react-icons/fa/sort-asc.d.ts index cc031126b4..fb9b5c6d1b 100644 --- a/react-icons/fa/sort-asc.d.ts +++ b/react-icons/fa/sort-asc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-desc.d.ts b/react-icons/fa/sort-desc.d.ts index db873ab0c1..1585ba9f07 100644 --- a/react-icons/fa/sort-desc.d.ts +++ b/react-icons/fa/sort-desc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-numeric-asc.d.ts b/react-icons/fa/sort-numeric-asc.d.ts index d69058f696..a20ca50468 100644 --- a/react-icons/fa/sort-numeric-asc.d.ts +++ b/react-icons/fa/sort-numeric-asc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortNumericAsc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort-numeric-desc.d.ts b/react-icons/fa/sort-numeric-desc.d.ts index 48c3917039..7933db5c9d 100644 --- a/react-icons/fa/sort-numeric-desc.d.ts +++ b/react-icons/fa/sort-numeric-desc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSortNumericDesc extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sort.d.ts b/react-icons/fa/sort.d.ts index 37e66da564..c22901092d 100644 --- a/react-icons/fa/sort.d.ts +++ b/react-icons/fa/sort.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSort extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/soundcloud.d.ts b/react-icons/fa/soundcloud.d.ts index b6236d9fe3..26a082e19d 100644 --- a/react-icons/fa/soundcloud.d.ts +++ b/react-icons/fa/soundcloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSoundcloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/space-shuttle.d.ts b/react-icons/fa/space-shuttle.d.ts index 00fe47d3d5..e617ab6b1a 100644 --- a/react-icons/fa/space-shuttle.d.ts +++ b/react-icons/fa/space-shuttle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSpaceShuttle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spinner.d.ts b/react-icons/fa/spinner.d.ts index 08ba1bde20..b81563aee6 100644 --- a/react-icons/fa/spinner.d.ts +++ b/react-icons/fa/spinner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSpinner extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spoon.d.ts b/react-icons/fa/spoon.d.ts index 88b229054f..e35be77484 100644 --- a/react-icons/fa/spoon.d.ts +++ b/react-icons/fa/spoon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSpoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/spotify.d.ts b/react-icons/fa/spotify.d.ts index 8f9e26ad7c..3b800d02bf 100644 --- a/react-icons/fa/spotify.d.ts +++ b/react-icons/fa/spotify.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSpotify extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/square-o.d.ts b/react-icons/fa/square-o.d.ts index 176d86d568..4ff2011889 100644 --- a/react-icons/fa/square-o.d.ts +++ b/react-icons/fa/square-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSquareO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/square.d.ts b/react-icons/fa/square.d.ts index 27787bbcba..fb442a3960 100644 --- a/react-icons/fa/square.d.ts +++ b/react-icons/fa/square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stack-exchange.d.ts b/react-icons/fa/stack-exchange.d.ts index 49c6aaa883..5ef24014e9 100644 --- a/react-icons/fa/stack-exchange.d.ts +++ b/react-icons/fa/stack-exchange.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStackExchange extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stack-overflow.d.ts b/react-icons/fa/stack-overflow.d.ts index 074d18716c..f7b1305585 100644 --- a/react-icons/fa/stack-overflow.d.ts +++ b/react-icons/fa/stack-overflow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStackOverflow extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-half-empty.d.ts b/react-icons/fa/star-half-empty.d.ts index cf4ee3847a..3ad7e9c811 100644 --- a/react-icons/fa/star-half-empty.d.ts +++ b/react-icons/fa/star-half-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStarHalfEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-half.d.ts b/react-icons/fa/star-half.d.ts index 9d0d22c675..ab5766c298 100644 --- a/react-icons/fa/star-half.d.ts +++ b/react-icons/fa/star-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star-o.d.ts b/react-icons/fa/star-o.d.ts index 9ed2805b5f..d85c01b06f 100644 --- a/react-icons/fa/star-o.d.ts +++ b/react-icons/fa/star-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStarO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/star.d.ts b/react-icons/fa/star.d.ts index 0fb44222a1..368e9886f9 100644 --- a/react-icons/fa/star.d.ts +++ b/react-icons/fa/star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/steam-square.d.ts b/react-icons/fa/steam-square.d.ts index e47279cc4f..279bfccbea 100644 --- a/react-icons/fa/steam-square.d.ts +++ b/react-icons/fa/steam-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSteamSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/steam.d.ts b/react-icons/fa/steam.d.ts index 1a7b5c9566..2c6185bc7f 100644 --- a/react-icons/fa/steam.d.ts +++ b/react-icons/fa/steam.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSteam extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/step-backward.d.ts b/react-icons/fa/step-backward.d.ts index 336711ed00..12af0afaac 100644 --- a/react-icons/fa/step-backward.d.ts +++ b/react-icons/fa/step-backward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStepBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/step-forward.d.ts b/react-icons/fa/step-forward.d.ts index ac5a0275f4..29d1d81a11 100644 --- a/react-icons/fa/step-forward.d.ts +++ b/react-icons/fa/step-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStepForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stethoscope.d.ts b/react-icons/fa/stethoscope.d.ts index 8dbcd4e5d7..b318631708 100644 --- a/react-icons/fa/stethoscope.d.ts +++ b/react-icons/fa/stethoscope.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStethoscope extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sticky-note-o.d.ts b/react-icons/fa/sticky-note-o.d.ts index 04daed6a30..a70c45b364 100644 --- a/react-icons/fa/sticky-note-o.d.ts +++ b/react-icons/fa/sticky-note-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStickyNoteO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sticky-note.d.ts b/react-icons/fa/sticky-note.d.ts index daab8ccbd1..a5e5c343c3 100644 --- a/react-icons/fa/sticky-note.d.ts +++ b/react-icons/fa/sticky-note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStickyNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop-circle-o.d.ts b/react-icons/fa/stop-circle-o.d.ts index 6682099628..36ba3e5a28 100644 --- a/react-icons/fa/stop-circle-o.d.ts +++ b/react-icons/fa/stop-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStopCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop-circle.d.ts b/react-icons/fa/stop-circle.d.ts index 8ee23ccf25..52299f6f2d 100644 --- a/react-icons/fa/stop-circle.d.ts +++ b/react-icons/fa/stop-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStopCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stop.d.ts b/react-icons/fa/stop.d.ts index 5623c65188..4c3209e16e 100644 --- a/react-icons/fa/stop.d.ts +++ b/react-icons/fa/stop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/street-view.d.ts b/react-icons/fa/street-view.d.ts index db37d921ac..d9d2a4491a 100644 --- a/react-icons/fa/street-view.d.ts +++ b/react-icons/fa/street-view.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStreetView extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/strikethrough.d.ts b/react-icons/fa/strikethrough.d.ts index 823115956a..1e6493cdb4 100644 --- a/react-icons/fa/strikethrough.d.ts +++ b/react-icons/fa/strikethrough.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStrikethrough extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stumbleupon-circle.d.ts b/react-icons/fa/stumbleupon-circle.d.ts index 8f15f9da5c..33af5f9449 100644 --- a/react-icons/fa/stumbleupon-circle.d.ts +++ b/react-icons/fa/stumbleupon-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStumbleuponCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/stumbleupon.d.ts b/react-icons/fa/stumbleupon.d.ts index 265e55c750..6a57f4619d 100644 --- a/react-icons/fa/stumbleupon.d.ts +++ b/react-icons/fa/stumbleupon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaStumbleupon extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/subscript.d.ts b/react-icons/fa/subscript.d.ts index 9a82b0ad44..e93726aa4e 100644 --- a/react-icons/fa/subscript.d.ts +++ b/react-icons/fa/subscript.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSubscript extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/subway.d.ts b/react-icons/fa/subway.d.ts index 3635b73eea..6454d75102 100644 --- a/react-icons/fa/subway.d.ts +++ b/react-icons/fa/subway.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/suitcase.d.ts b/react-icons/fa/suitcase.d.ts index bd85bfb912..135db3ada2 100644 --- a/react-icons/fa/suitcase.d.ts +++ b/react-icons/fa/suitcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSuitcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/sun-o.d.ts b/react-icons/fa/sun-o.d.ts index 326c08fdbe..018d67ed85 100644 --- a/react-icons/fa/sun-o.d.ts +++ b/react-icons/fa/sun-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSunO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/superscript.d.ts b/react-icons/fa/superscript.d.ts index 93108912ac..3aaeb5e361 100644 --- a/react-icons/fa/superscript.d.ts +++ b/react-icons/fa/superscript.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaSuperscript extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/table.d.ts b/react-icons/fa/table.d.ts index 729dc71be7..cb918d99a5 100644 --- a/react-icons/fa/table.d.ts +++ b/react-icons/fa/table.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTable extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tablet.d.ts b/react-icons/fa/tablet.d.ts index 6a0af701ec..1d51499aad 100644 --- a/react-icons/fa/tablet.d.ts +++ b/react-icons/fa/tablet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tag.d.ts b/react-icons/fa/tag.d.ts index a2b717b60a..6be2270493 100644 --- a/react-icons/fa/tag.d.ts +++ b/react-icons/fa/tag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tags.d.ts b/react-icons/fa/tags.d.ts index bdfea932a8..0e0ad3c73b 100644 --- a/react-icons/fa/tags.d.ts +++ b/react-icons/fa/tags.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTags extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tasks.d.ts b/react-icons/fa/tasks.d.ts index 53095f89c8..22577c6cc6 100644 --- a/react-icons/fa/tasks.d.ts +++ b/react-icons/fa/tasks.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTasks extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/television.d.ts b/react-icons/fa/television.d.ts index f5bd7fa04c..69721b8145 100644 --- a/react-icons/fa/television.d.ts +++ b/react-icons/fa/television.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTelevision extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tencent-weibo.d.ts b/react-icons/fa/tencent-weibo.d.ts index a5a9cd0a8b..3a3159c5e0 100644 --- a/react-icons/fa/tencent-weibo.d.ts +++ b/react-icons/fa/tencent-weibo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTencentWeibo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/terminal.d.ts b/react-icons/fa/terminal.d.ts index 6765080b39..bcadc57ed1 100644 --- a/react-icons/fa/terminal.d.ts +++ b/react-icons/fa/terminal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTerminal extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/text-height.d.ts b/react-icons/fa/text-height.d.ts index a748212a63..ea73bd9df0 100644 --- a/react-icons/fa/text-height.d.ts +++ b/react-icons/fa/text-height.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTextHeight extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/text-width.d.ts b/react-icons/fa/text-width.d.ts index ffbe193270..9306ea69f8 100644 --- a/react-icons/fa/text-width.d.ts +++ b/react-icons/fa/text-width.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTextWidth extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th-large.d.ts b/react-icons/fa/th-large.d.ts index 28ec80a8be..ec2739ad37 100644 --- a/react-icons/fa/th-large.d.ts +++ b/react-icons/fa/th-large.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th-list.d.ts b/react-icons/fa/th-list.d.ts index f883916eae..fe683c919c 100644 --- a/react-icons/fa/th-list.d.ts +++ b/react-icons/fa/th-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThList extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/th.d.ts b/react-icons/fa/th.d.ts index da425c0e87..4400c91cbf 100644 --- a/react-icons/fa/th.d.ts +++ b/react-icons/fa/th.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTh extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumb-tack.d.ts b/react-icons/fa/thumb-tack.d.ts index 4ce8b60a96..fd86ad6886 100644 --- a/react-icons/fa/thumb-tack.d.ts +++ b/react-icons/fa/thumb-tack.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThumbTack extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-down.d.ts b/react-icons/fa/thumbs-down.d.ts index bafbe1262a..f96a85cfed 100644 --- a/react-icons/fa/thumbs-down.d.ts +++ b/react-icons/fa/thumbs-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThumbsDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-o-down.d.ts b/react-icons/fa/thumbs-o-down.d.ts index c3ad25e41b..7c3c137b86 100644 --- a/react-icons/fa/thumbs-o-down.d.ts +++ b/react-icons/fa/thumbs-o-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThumbsODown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-o-up.d.ts b/react-icons/fa/thumbs-o-up.d.ts index 5ae5db41c5..186ebb1fc3 100644 --- a/react-icons/fa/thumbs-o-up.d.ts +++ b/react-icons/fa/thumbs-o-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThumbsOUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/thumbs-up.d.ts b/react-icons/fa/thumbs-up.d.ts index 48db5340b7..6587ee4f3e 100644 --- a/react-icons/fa/thumbs-up.d.ts +++ b/react-icons/fa/thumbs-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaThumbsUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/ticket.d.ts b/react-icons/fa/ticket.d.ts index f8a4f66318..abcfcc088d 100644 --- a/react-icons/fa/ticket.d.ts +++ b/react-icons/fa/ticket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTicket extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/times-circle-o.d.ts b/react-icons/fa/times-circle-o.d.ts index 63c2d58e08..07bc3bff00 100644 --- a/react-icons/fa/times-circle-o.d.ts +++ b/react-icons/fa/times-circle-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTimesCircleO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/times-circle.d.ts b/react-icons/fa/times-circle.d.ts index 622ae90517..8abe53fe85 100644 --- a/react-icons/fa/times-circle.d.ts +++ b/react-icons/fa/times-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTimesCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tint.d.ts b/react-icons/fa/tint.d.ts index 8203fe5f02..714737d10d 100644 --- a/react-icons/fa/tint.d.ts +++ b/react-icons/fa/tint.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTint extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/toggle-off.d.ts b/react-icons/fa/toggle-off.d.ts index c7ac1e72c2..7fc620c250 100644 --- a/react-icons/fa/toggle-off.d.ts +++ b/react-icons/fa/toggle-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaToggleOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/toggle-on.d.ts b/react-icons/fa/toggle-on.d.ts index 44790ed347..18eef0334a 100644 --- a/react-icons/fa/toggle-on.d.ts +++ b/react-icons/fa/toggle-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaToggleOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trademark.d.ts b/react-icons/fa/trademark.d.ts index 974550bcf4..84013980be 100644 --- a/react-icons/fa/trademark.d.ts +++ b/react-icons/fa/trademark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrademark extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/train.d.ts b/react-icons/fa/train.d.ts index 1a64f74d22..05da75492b 100644 --- a/react-icons/fa/train.d.ts +++ b/react-icons/fa/train.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/transgender-alt.d.ts b/react-icons/fa/transgender-alt.d.ts index 7a76f08ea2..0ea8f5eabb 100644 --- a/react-icons/fa/transgender-alt.d.ts +++ b/react-icons/fa/transgender-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTransgenderAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trash-o.d.ts b/react-icons/fa/trash-o.d.ts index 0a57313fbd..58185339f9 100644 --- a/react-icons/fa/trash-o.d.ts +++ b/react-icons/fa/trash-o.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrashO extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trash.d.ts b/react-icons/fa/trash.d.ts index cc6fb4f2f6..a915ab3036 100644 --- a/react-icons/fa/trash.d.ts +++ b/react-icons/fa/trash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tree.d.ts b/react-icons/fa/tree.d.ts index 81f7891b45..c806f816b4 100644 --- a/react-icons/fa/tree.d.ts +++ b/react-icons/fa/tree.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTree extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trello.d.ts b/react-icons/fa/trello.d.ts index 0061738bb0..3560c3f4e8 100644 --- a/react-icons/fa/trello.d.ts +++ b/react-icons/fa/trello.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrello extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tripadvisor.d.ts b/react-icons/fa/tripadvisor.d.ts index 507eaa6bf0..aaf89ab685 100644 --- a/react-icons/fa/tripadvisor.d.ts +++ b/react-icons/fa/tripadvisor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTripadvisor extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/trophy.d.ts b/react-icons/fa/trophy.d.ts index a6015be958..620645cac8 100644 --- a/react-icons/fa/trophy.d.ts +++ b/react-icons/fa/trophy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTrophy extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/truck.d.ts b/react-icons/fa/truck.d.ts index 821f63db99..3cfc784658 100644 --- a/react-icons/fa/truck.d.ts +++ b/react-icons/fa/truck.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTruck extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/try.d.ts b/react-icons/fa/try.d.ts index 2706937990..55de3a71d2 100644 --- a/react-icons/fa/try.d.ts +++ b/react-icons/fa/try.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTry extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tty.d.ts b/react-icons/fa/tty.d.ts index 27329a14e1..78a5f4b6e7 100644 --- a/react-icons/fa/tty.d.ts +++ b/react-icons/fa/tty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTty extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tumblr-square.d.ts b/react-icons/fa/tumblr-square.d.ts index 87c52bc295..880407565d 100644 --- a/react-icons/fa/tumblr-square.d.ts +++ b/react-icons/fa/tumblr-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTumblrSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/tumblr.d.ts b/react-icons/fa/tumblr.d.ts index 653879122a..90a1a036e4 100644 --- a/react-icons/fa/tumblr.d.ts +++ b/react-icons/fa/tumblr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTumblr extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitch.d.ts b/react-icons/fa/twitch.d.ts index 23cb946b8e..d54eec3e9a 100644 --- a/react-icons/fa/twitch.d.ts +++ b/react-icons/fa/twitch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitter-square.d.ts b/react-icons/fa/twitter-square.d.ts index 882827f900..05da52325b 100644 --- a/react-icons/fa/twitter-square.d.ts +++ b/react-icons/fa/twitter-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTwitterSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/twitter.d.ts b/react-icons/fa/twitter.d.ts index eaa60c0a45..7e0ef17f5a 100644 --- a/react-icons/fa/twitter.d.ts +++ b/react-icons/fa/twitter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/umbrella.d.ts b/react-icons/fa/umbrella.d.ts index e1ad6dbce2..89f84ce215 100644 --- a/react-icons/fa/umbrella.d.ts +++ b/react-icons/fa/umbrella.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUmbrella extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/underline.d.ts b/react-icons/fa/underline.d.ts index 9ec88a5fdd..726e752b3a 100644 --- a/react-icons/fa/underline.d.ts +++ b/react-icons/fa/underline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUnderline extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/universal-access.d.ts b/react-icons/fa/universal-access.d.ts index 008bc1bdbf..d166f32da9 100644 --- a/react-icons/fa/universal-access.d.ts +++ b/react-icons/fa/universal-access.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUniversalAccess extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/unlock-alt.d.ts b/react-icons/fa/unlock-alt.d.ts index 44b5eb6f28..8ad3533f22 100644 --- a/react-icons/fa/unlock-alt.d.ts +++ b/react-icons/fa/unlock-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUnlockAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/unlock.d.ts b/react-icons/fa/unlock.d.ts index 30704e6109..601aa2947d 100644 --- a/react-icons/fa/unlock.d.ts +++ b/react-icons/fa/unlock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUnlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/upload.d.ts b/react-icons/fa/upload.d.ts index 2abcbc51de..a92845baaf 100644 --- a/react-icons/fa/upload.d.ts +++ b/react-icons/fa/upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/usb.d.ts b/react-icons/fa/usb.d.ts index 4058752b75..14aac6ff5b 100644 --- a/react-icons/fa/usb.d.ts +++ b/react-icons/fa/usb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-md.d.ts b/react-icons/fa/user-md.d.ts index 8997388a24..966da1326d 100644 --- a/react-icons/fa/user-md.d.ts +++ b/react-icons/fa/user-md.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUserMd extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-plus.d.ts b/react-icons/fa/user-plus.d.ts index 15e63b2e0a..3e0088d197 100644 --- a/react-icons/fa/user-plus.d.ts +++ b/react-icons/fa/user-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUserPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-secret.d.ts b/react-icons/fa/user-secret.d.ts index 19840f6ee5..adbed0df1b 100644 --- a/react-icons/fa/user-secret.d.ts +++ b/react-icons/fa/user-secret.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUserSecret extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user-times.d.ts b/react-icons/fa/user-times.d.ts index 0a7e325530..af72d6e440 100644 --- a/react-icons/fa/user-times.d.ts +++ b/react-icons/fa/user-times.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUserTimes extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/user.d.ts b/react-icons/fa/user.d.ts index e32e68cca3..6796a6399c 100644 --- a/react-icons/fa/user.d.ts +++ b/react-icons/fa/user.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus-double.d.ts b/react-icons/fa/venus-double.d.ts index 084a381172..323e6e9d23 100644 --- a/react-icons/fa/venus-double.d.ts +++ b/react-icons/fa/venus-double.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVenusDouble extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus-mars.d.ts b/react-icons/fa/venus-mars.d.ts index 49827813d1..034de5a582 100644 --- a/react-icons/fa/venus-mars.d.ts +++ b/react-icons/fa/venus-mars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVenusMars extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/venus.d.ts b/react-icons/fa/venus.d.ts index feea601c7d..5cf6564010 100644 --- a/react-icons/fa/venus.d.ts +++ b/react-icons/fa/venus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVenus extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viacoin.d.ts b/react-icons/fa/viacoin.d.ts index cd48e887c1..7d0460cb7d 100644 --- a/react-icons/fa/viacoin.d.ts +++ b/react-icons/fa/viacoin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaViacoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viadeo-square.d.ts b/react-icons/fa/viadeo-square.d.ts index 732f50a851..69f58b7efe 100644 --- a/react-icons/fa/viadeo-square.d.ts +++ b/react-icons/fa/viadeo-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaViadeoSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/viadeo.d.ts b/react-icons/fa/viadeo.d.ts index 05a7014a9b..37e84b3ecb 100644 --- a/react-icons/fa/viadeo.d.ts +++ b/react-icons/fa/viadeo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaViadeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/video-camera.d.ts b/react-icons/fa/video-camera.d.ts index 4c222391be..1a8a34da7a 100644 --- a/react-icons/fa/video-camera.d.ts +++ b/react-icons/fa/video-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVideoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vimeo-square.d.ts b/react-icons/fa/vimeo-square.d.ts index 94e3a7a0ce..c12940d457 100644 --- a/react-icons/fa/vimeo-square.d.ts +++ b/react-icons/fa/vimeo-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVimeoSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vimeo.d.ts b/react-icons/fa/vimeo.d.ts index 28f16ddc1c..870a57934d 100644 --- a/react-icons/fa/vimeo.d.ts +++ b/react-icons/fa/vimeo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vine.d.ts b/react-icons/fa/vine.d.ts index 2e25da01c8..e4acf01fed 100644 --- a/react-icons/fa/vine.d.ts +++ b/react-icons/fa/vine.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVine extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/vk.d.ts b/react-icons/fa/vk.d.ts index 214919b26d..98087fa2d5 100644 --- a/react-icons/fa/vk.d.ts +++ b/react-icons/fa/vk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVk extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-control-phone.d.ts b/react-icons/fa/volume-control-phone.d.ts index 68db678334..bf193d664e 100644 --- a/react-icons/fa/volume-control-phone.d.ts +++ b/react-icons/fa/volume-control-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVolumeControlPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-down.d.ts b/react-icons/fa/volume-down.d.ts index 5f5821c2a1..46ab97d158 100644 --- a/react-icons/fa/volume-down.d.ts +++ b/react-icons/fa/volume-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-off.d.ts b/react-icons/fa/volume-off.d.ts index 3ffe04d08d..8c9c3b8846 100644 --- a/react-icons/fa/volume-off.d.ts +++ b/react-icons/fa/volume-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/volume-up.d.ts b/react-icons/fa/volume-up.d.ts index d8b324ca4d..5ec35258d4 100644 --- a/react-icons/fa/volume-up.d.ts +++ b/react-icons/fa/volume-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wechat.d.ts b/react-icons/fa/wechat.d.ts index 0db9e9e145..390595463a 100644 --- a/react-icons/fa/wechat.d.ts +++ b/react-icons/fa/wechat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWechat extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/weibo.d.ts b/react-icons/fa/weibo.d.ts index eac4f3e6f0..9095519b6e 100644 --- a/react-icons/fa/weibo.d.ts +++ b/react-icons/fa/weibo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWeibo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/whatsapp.d.ts b/react-icons/fa/whatsapp.d.ts index 1ba1be9fa4..d6ee9fe78f 100644 --- a/react-icons/fa/whatsapp.d.ts +++ b/react-icons/fa/whatsapp.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWhatsapp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wheelchair-alt.d.ts b/react-icons/fa/wheelchair-alt.d.ts index 83fe093731..c9887b1e0e 100644 --- a/react-icons/fa/wheelchair-alt.d.ts +++ b/react-icons/fa/wheelchair-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWheelchairAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wheelchair.d.ts b/react-icons/fa/wheelchair.d.ts index b137d64942..7bab708cb6 100644 --- a/react-icons/fa/wheelchair.d.ts +++ b/react-icons/fa/wheelchair.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWheelchair extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wifi.d.ts b/react-icons/fa/wifi.d.ts index ada4e105c5..00e834fda0 100644 --- a/react-icons/fa/wifi.d.ts +++ b/react-icons/fa/wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wikipedia-w.d.ts b/react-icons/fa/wikipedia-w.d.ts index afe4aa701d..bf3af284a3 100644 --- a/react-icons/fa/wikipedia-w.d.ts +++ b/react-icons/fa/wikipedia-w.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWikipediaW extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/windows.d.ts b/react-icons/fa/windows.d.ts index a501e595a0..6883290298 100644 --- a/react-icons/fa/windows.d.ts +++ b/react-icons/fa/windows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wordpress.d.ts b/react-icons/fa/wordpress.d.ts index 665d72483c..e8b7ca1ad6 100644 --- a/react-icons/fa/wordpress.d.ts +++ b/react-icons/fa/wordpress.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWordpress extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wpbeginner.d.ts b/react-icons/fa/wpbeginner.d.ts index 5c3aa1edcd..23c44f277f 100644 --- a/react-icons/fa/wpbeginner.d.ts +++ b/react-icons/fa/wpbeginner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWpbeginner extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wpforms.d.ts b/react-icons/fa/wpforms.d.ts index 3d6db03ca8..236bd1492a 100644 --- a/react-icons/fa/wpforms.d.ts +++ b/react-icons/fa/wpforms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWpforms extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/wrench.d.ts b/react-icons/fa/wrench.d.ts index ffaf049ab8..420c017165 100644 --- a/react-icons/fa/wrench.d.ts +++ b/react-icons/fa/wrench.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaWrench extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/xing-square.d.ts b/react-icons/fa/xing-square.d.ts index b5563b59dc..bfc1836e9c 100644 --- a/react-icons/fa/xing-square.d.ts +++ b/react-icons/fa/xing-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaXingSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/xing.d.ts b/react-icons/fa/xing.d.ts index f0502b2a48..f3ab3d44ea 100644 --- a/react-icons/fa/xing.d.ts +++ b/react-icons/fa/xing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaXing extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/y-combinator.d.ts b/react-icons/fa/y-combinator.d.ts index 9f717e2b00..6374854e4c 100644 --- a/react-icons/fa/y-combinator.d.ts +++ b/react-icons/fa/y-combinator.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYCombinator extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/yahoo.d.ts b/react-icons/fa/yahoo.d.ts index a9ec96f885..172864c975 100644 --- a/react-icons/fa/yahoo.d.ts +++ b/react-icons/fa/yahoo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYahoo extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/yelp.d.ts b/react-icons/fa/yelp.d.ts index bee4fab313..f69d806c3a 100644 --- a/react-icons/fa/yelp.d.ts +++ b/react-icons/fa/yelp.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube-play.d.ts b/react-icons/fa/youtube-play.d.ts index bf532735b7..e73936bf14 100644 --- a/react-icons/fa/youtube-play.d.ts +++ b/react-icons/fa/youtube-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYoutubePlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube-square.d.ts b/react-icons/fa/youtube-square.d.ts index c4fd6abc7f..a229b19ecc 100644 --- a/react-icons/fa/youtube-square.d.ts +++ b/react-icons/fa/youtube-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYoutubeSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/fa/youtube.d.ts b/react-icons/fa/youtube.d.ts index 8425f93bdb..125b1e1c1f 100644 --- a/react-icons/fa/youtube.d.ts +++ b/react-icons/fa/youtube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class FaYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alert.d.ts b/react-icons/go/alert.d.ts index e3b0898c07..7865173f5b 100644 --- a/react-icons/go/alert.d.ts +++ b/react-icons/go/alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-align.d.ts b/react-icons/go/alignment-align.d.ts index ef5a508031..d5e71f0dd7 100644 --- a/react-icons/go/alignment-align.d.ts +++ b/react-icons/go/alignment-align.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoAlignmentAlign extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-aligned-to.d.ts b/react-icons/go/alignment-aligned-to.d.ts index 58aa30f317..83c9d5f913 100644 --- a/react-icons/go/alignment-aligned-to.d.ts +++ b/react-icons/go/alignment-aligned-to.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoAlignmentAlignedTo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/alignment-unalign.d.ts b/react-icons/go/alignment-unalign.d.ts index 38aab07e1a..f9ddfbb421 100644 --- a/react-icons/go/alignment-unalign.d.ts +++ b/react-icons/go/alignment-unalign.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoAlignmentUnalign extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-down.d.ts b/react-icons/go/arrow-down.d.ts index 2a98e6a1d8..56d087e494 100644 --- a/react-icons/go/arrow-down.d.ts +++ b/react-icons/go/arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-left.d.ts b/react-icons/go/arrow-left.d.ts index fbb8812fee..a20f150769 100644 --- a/react-icons/go/arrow-left.d.ts +++ b/react-icons/go/arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-right.d.ts b/react-icons/go/arrow-right.d.ts index a89290787e..43602d898f 100644 --- a/react-icons/go/arrow-right.d.ts +++ b/react-icons/go/arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-down.d.ts b/react-icons/go/arrow-small-down.d.ts index ce97a63140..8b3956dd8f 100644 --- a/react-icons/go/arrow-small-down.d.ts +++ b/react-icons/go/arrow-small-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowSmallDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-left.d.ts b/react-icons/go/arrow-small-left.d.ts index fe58ea64bc..cf1ed7a5ca 100644 --- a/react-icons/go/arrow-small-left.d.ts +++ b/react-icons/go/arrow-small-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowSmallLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-right.d.ts b/react-icons/go/arrow-small-right.d.ts index edc02ea719..7fe4ec7959 100644 --- a/react-icons/go/arrow-small-right.d.ts +++ b/react-icons/go/arrow-small-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowSmallRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-small-up.d.ts b/react-icons/go/arrow-small-up.d.ts index eda8bfda1a..656fb95760 100644 --- a/react-icons/go/arrow-small-up.d.ts +++ b/react-icons/go/arrow-small-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowSmallUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/arrow-up.d.ts b/react-icons/go/arrow-up.d.ts index bada51205b..394c66b735 100644 --- a/react-icons/go/arrow-up.d.ts +++ b/react-icons/go/arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/beer.d.ts b/react-icons/go/beer.d.ts index 7e5abb15a5..74b016c57e 100644 --- a/react-icons/go/beer.d.ts +++ b/react-icons/go/beer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/book.d.ts b/react-icons/go/book.d.ts index 5e4c7e1f11..02327d7bf0 100644 --- a/react-icons/go/book.d.ts +++ b/react-icons/go/book.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/bookmark.d.ts b/react-icons/go/bookmark.d.ts index 0806416c0d..3d4184adc4 100644 --- a/react-icons/go/bookmark.d.ts +++ b/react-icons/go/bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/briefcase.d.ts b/react-icons/go/briefcase.d.ts index c3e4530b62..c8a6ca6493 100644 --- a/react-icons/go/briefcase.d.ts +++ b/react-icons/go/briefcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/broadcast.d.ts b/react-icons/go/broadcast.d.ts index 2393ca3848..debca6ceeb 100644 --- a/react-icons/go/broadcast.d.ts +++ b/react-icons/go/broadcast.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBroadcast extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/browser.d.ts b/react-icons/go/browser.d.ts index 14bdd59e64..ea5fc9acf2 100644 --- a/react-icons/go/browser.d.ts +++ b/react-icons/go/browser.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBrowser extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/bug.d.ts b/react-icons/go/bug.d.ts index 8ac917f5eb..fc1019da86 100644 --- a/react-icons/go/bug.d.ts +++ b/react-icons/go/bug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/calendar.d.ts b/react-icons/go/calendar.d.ts index 6654d19e34..43c9534b00 100644 --- a/react-icons/go/calendar.d.ts +++ b/react-icons/go/calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/check.d.ts b/react-icons/go/check.d.ts index 9df2476d3d..7a97d48faf 100644 --- a/react-icons/go/check.d.ts +++ b/react-icons/go/check.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/checklist.d.ts b/react-icons/go/checklist.d.ts index 2436e3ed69..1b17ec9252 100644 --- a/react-icons/go/checklist.d.ts +++ b/react-icons/go/checklist.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoChecklist extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-down.d.ts b/react-icons/go/chevron-down.d.ts index 03a27a1e63..44edf6e751 100644 --- a/react-icons/go/chevron-down.d.ts +++ b/react-icons/go/chevron-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-left.d.ts b/react-icons/go/chevron-left.d.ts index 544c803174..47f8462865 100644 --- a/react-icons/go/chevron-left.d.ts +++ b/react-icons/go/chevron-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-right.d.ts b/react-icons/go/chevron-right.d.ts index ead000dec0..ed6f268af3 100644 --- a/react-icons/go/chevron-right.d.ts +++ b/react-icons/go/chevron-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/chevron-up.d.ts b/react-icons/go/chevron-up.d.ts index e2099adf7c..90d53e53da 100644 --- a/react-icons/go/chevron-up.d.ts +++ b/react-icons/go/chevron-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/circle-slash.d.ts b/react-icons/go/circle-slash.d.ts index 2354b62c73..5e28452cb6 100644 --- a/react-icons/go/circle-slash.d.ts +++ b/react-icons/go/circle-slash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCircleSlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/circuit-board.d.ts b/react-icons/go/circuit-board.d.ts index a9f94df043..c296725cd0 100644 --- a/react-icons/go/circuit-board.d.ts +++ b/react-icons/go/circuit-board.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCircuitBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/clippy.d.ts b/react-icons/go/clippy.d.ts index 27df7cbe4c..5d1b5b21bf 100644 --- a/react-icons/go/clippy.d.ts +++ b/react-icons/go/clippy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoClippy extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/clock.d.ts b/react-icons/go/clock.d.ts index 77007fc562..8e2e066aee 100644 --- a/react-icons/go/clock.d.ts +++ b/react-icons/go/clock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/cloud-download.d.ts b/react-icons/go/cloud-download.d.ts index ef68deb01d..5cb1a41fb8 100644 --- a/react-icons/go/cloud-download.d.ts +++ b/react-icons/go/cloud-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/cloud-upload.d.ts b/react-icons/go/cloud-upload.d.ts index 4e47a69aa4..8a89396233 100644 --- a/react-icons/go/cloud-upload.d.ts +++ b/react-icons/go/cloud-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/code.d.ts b/react-icons/go/code.d.ts index f0d98b4025..9c906656ae 100644 --- a/react-icons/go/code.d.ts +++ b/react-icons/go/code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/color-mode.d.ts b/react-icons/go/color-mode.d.ts index ee7d5c1abd..24f48bfb30 100644 --- a/react-icons/go/color-mode.d.ts +++ b/react-icons/go/color-mode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoColorMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/comment-discussion.d.ts b/react-icons/go/comment-discussion.d.ts index b19d9d6a97..f0dcdad193 100644 --- a/react-icons/go/comment-discussion.d.ts +++ b/react-icons/go/comment-discussion.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCommentDiscussion extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/comment.d.ts b/react-icons/go/comment.d.ts index ddc869ebf6..6c5a759b5d 100644 --- a/react-icons/go/comment.d.ts +++ b/react-icons/go/comment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/credit-card.d.ts b/react-icons/go/credit-card.d.ts index ad7b4dddb5..d2dbca2143 100644 --- a/react-icons/go/credit-card.d.ts +++ b/react-icons/go/credit-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/dash.d.ts b/react-icons/go/dash.d.ts index aa86737ff2..5d10677d36 100644 --- a/react-icons/go/dash.d.ts +++ b/react-icons/go/dash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDash extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/dashboard.d.ts b/react-icons/go/dashboard.d.ts index f0bf4b674e..0d749299ae 100644 --- a/react-icons/go/dashboard.d.ts +++ b/react-icons/go/dashboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/database.d.ts b/react-icons/go/database.d.ts index a91d8f3471..c3af05bf69 100644 --- a/react-icons/go/database.d.ts +++ b/react-icons/go/database.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-camera-video.d.ts b/react-icons/go/device-camera-video.d.ts index 34d06ea23a..f39f7c3a63 100644 --- a/react-icons/go/device-camera-video.d.ts +++ b/react-icons/go/device-camera-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDeviceCameraVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-camera.d.ts b/react-icons/go/device-camera.d.ts index 913e545891..ea76d847f2 100644 --- a/react-icons/go/device-camera.d.ts +++ b/react-icons/go/device-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDeviceCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-desktop.d.ts b/react-icons/go/device-desktop.d.ts index dd4475ca10..5d6d0ac030 100644 --- a/react-icons/go/device-desktop.d.ts +++ b/react-icons/go/device-desktop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDeviceDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/device-mobile.d.ts b/react-icons/go/device-mobile.d.ts index 3d9a31fc2c..40e2d36139 100644 --- a/react-icons/go/device-mobile.d.ts +++ b/react-icons/go/device-mobile.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDeviceMobile extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-added.d.ts b/react-icons/go/diff-added.d.ts index e0beb91dc6..f1d8f14a2d 100644 --- a/react-icons/go/diff-added.d.ts +++ b/react-icons/go/diff-added.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiffAdded extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-ignored.d.ts b/react-icons/go/diff-ignored.d.ts index 68e5bb0f5e..5a3c9e9952 100644 --- a/react-icons/go/diff-ignored.d.ts +++ b/react-icons/go/diff-ignored.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiffIgnored extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-modified.d.ts b/react-icons/go/diff-modified.d.ts index 89f7fa5ce2..8e1d5c01a1 100644 --- a/react-icons/go/diff-modified.d.ts +++ b/react-icons/go/diff-modified.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiffModified extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-removed.d.ts b/react-icons/go/diff-removed.d.ts index 1b2e78c3cc..d130e45659 100644 --- a/react-icons/go/diff-removed.d.ts +++ b/react-icons/go/diff-removed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiffRemoved extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff-renamed.d.ts b/react-icons/go/diff-renamed.d.ts index 154fa6623e..80bf67a790 100644 --- a/react-icons/go/diff-renamed.d.ts +++ b/react-icons/go/diff-renamed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiffRenamed extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/diff.d.ts b/react-icons/go/diff.d.ts index ba3007d132..16e9762399 100644 --- a/react-icons/go/diff.d.ts +++ b/react-icons/go/diff.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoDiff extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/ellipsis.d.ts b/react-icons/go/ellipsis.d.ts index 7ee63b2c98..38c75f21be 100644 --- a/react-icons/go/ellipsis.d.ts +++ b/react-icons/go/ellipsis.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoEllipsis extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/eye.d.ts b/react-icons/go/eye.d.ts index b88658ed96..eb1490f12b 100644 --- a/react-icons/go/eye.d.ts +++ b/react-icons/go/eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-binary.d.ts b/react-icons/go/file-binary.d.ts index f802393034..c82df28616 100644 --- a/react-icons/go/file-binary.d.ts +++ b/react-icons/go/file-binary.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileBinary extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-code.d.ts b/react-icons/go/file-code.d.ts index b8cf7ad006..0bdcb31f49 100644 --- a/react-icons/go/file-code.d.ts +++ b/react-icons/go/file-code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-directory.d.ts b/react-icons/go/file-directory.d.ts index 18f7aa4f08..eb4fceebfd 100644 --- a/react-icons/go/file-directory.d.ts +++ b/react-icons/go/file-directory.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-media.d.ts b/react-icons/go/file-media.d.ts index 1c26cfb75d..0e80f1c0a2 100644 --- a/react-icons/go/file-media.d.ts +++ b/react-icons/go/file-media.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileMedia extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-pdf.d.ts b/react-icons/go/file-pdf.d.ts index 27a4e10cea..4fceba3fba 100644 --- a/react-icons/go/file-pdf.d.ts +++ b/react-icons/go/file-pdf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFilePdf extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-submodule.d.ts b/react-icons/go/file-submodule.d.ts index 70ca15a831..99419f1c90 100644 --- a/react-icons/go/file-submodule.d.ts +++ b/react-icons/go/file-submodule.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileSubmodule extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-symlink-directory.d.ts b/react-icons/go/file-symlink-directory.d.ts index e0836c35eb..d1a9851a0b 100644 --- a/react-icons/go/file-symlink-directory.d.ts +++ b/react-icons/go/file-symlink-directory.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileSymlinkDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-symlink-file.d.ts b/react-icons/go/file-symlink-file.d.ts index 164eeb2a92..819c65fa86 100644 --- a/react-icons/go/file-symlink-file.d.ts +++ b/react-icons/go/file-symlink-file.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileSymlinkFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-text.d.ts b/react-icons/go/file-text.d.ts index ac6506096d..d7c9633a69 100644 --- a/react-icons/go/file-text.d.ts +++ b/react-icons/go/file-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileText extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/file-zip.d.ts b/react-icons/go/file-zip.d.ts index 74a207eb49..141bd5c8cc 100644 --- a/react-icons/go/file-zip.d.ts +++ b/react-icons/go/file-zip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFileZip extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/flame.d.ts b/react-icons/go/flame.d.ts index 1073fe069e..f3919d059c 100644 --- a/react-icons/go/flame.d.ts +++ b/react-icons/go/flame.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/fold.d.ts b/react-icons/go/fold.d.ts index 3388aa31c0..28f6025a43 100644 --- a/react-icons/go/fold.d.ts +++ b/react-icons/go/fold.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoFold extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gear.d.ts b/react-icons/go/gear.d.ts index 36741bbd9a..66ff0f8f37 100644 --- a/react-icons/go/gear.d.ts +++ b/react-icons/go/gear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGear extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gift.d.ts b/react-icons/go/gift.d.ts index 361f50a227..c15d6110b0 100644 --- a/react-icons/go/gift.d.ts +++ b/react-icons/go/gift.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gist-secret.d.ts b/react-icons/go/gist-secret.d.ts index bb06848b5a..290c055252 100644 --- a/react-icons/go/gist-secret.d.ts +++ b/react-icons/go/gist-secret.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGistSecret extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/gist.d.ts b/react-icons/go/gist.d.ts index 1aed620bb5..35ccede469 100644 --- a/react-icons/go/gist.d.ts +++ b/react-icons/go/gist.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGist extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-branch.d.ts b/react-icons/go/git-branch.d.ts index 2007fbe986..4984aeff94 100644 --- a/react-icons/go/git-branch.d.ts +++ b/react-icons/go/git-branch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGitBranch extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-commit.d.ts b/react-icons/go/git-commit.d.ts index 60170f451c..e0915469fc 100644 --- a/react-icons/go/git-commit.d.ts +++ b/react-icons/go/git-commit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGitCommit extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-compare.d.ts b/react-icons/go/git-compare.d.ts index 7901bd1527..632f6bbeff 100644 --- a/react-icons/go/git-compare.d.ts +++ b/react-icons/go/git-compare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGitCompare extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-merge.d.ts b/react-icons/go/git-merge.d.ts index 89b492f6d1..1298e78884 100644 --- a/react-icons/go/git-merge.d.ts +++ b/react-icons/go/git-merge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGitMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/git-pull-request.d.ts b/react-icons/go/git-pull-request.d.ts index 227967cf66..48a8689bf9 100644 --- a/react-icons/go/git-pull-request.d.ts +++ b/react-icons/go/git-pull-request.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGitPullRequest extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/globe.d.ts b/react-icons/go/globe.d.ts index fd72d5356e..a5584ec47c 100644 --- a/react-icons/go/globe.d.ts +++ b/react-icons/go/globe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/graph.d.ts b/react-icons/go/graph.d.ts index ee16d661de..3febc59f47 100644 --- a/react-icons/go/graph.d.ts +++ b/react-icons/go/graph.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoGraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/heart.d.ts b/react-icons/go/heart.d.ts index 205127a6b8..e289970aef 100644 --- a/react-icons/go/heart.d.ts +++ b/react-icons/go/heart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/history.d.ts b/react-icons/go/history.d.ts index 8321416f73..b25e383b66 100644 --- a/react-icons/go/history.d.ts +++ b/react-icons/go/history.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/home.d.ts b/react-icons/go/home.d.ts index daf61c56b7..1b877c9ce3 100644 --- a/react-icons/go/home.d.ts +++ b/react-icons/go/home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/horizontal-rule.d.ts b/react-icons/go/horizontal-rule.d.ts index f50b818fcc..11b57abc8c 100644 --- a/react-icons/go/horizontal-rule.d.ts +++ b/react-icons/go/horizontal-rule.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHorizontalRule extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/hourglass.d.ts b/react-icons/go/hourglass.d.ts index 1f2c735f86..3c58f156bd 100644 --- a/react-icons/go/hourglass.d.ts +++ b/react-icons/go/hourglass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHourglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/hubot.d.ts b/react-icons/go/hubot.d.ts index 0ff249f748..c44e5c11a1 100644 --- a/react-icons/go/hubot.d.ts +++ b/react-icons/go/hubot.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoHubot extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/inbox.d.ts b/react-icons/go/inbox.d.ts index 5f60f10ecb..ce834f543d 100644 --- a/react-icons/go/inbox.d.ts +++ b/react-icons/go/inbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/index.d.ts b/react-icons/go/index.d.ts index 93ada39c2b..11baa2351f 100644 --- a/react-icons/go/index.d.ts +++ b/react-icons/go/index.d.ts @@ -1,3 +1,4 @@ +// TypeScript Version: 2.1 import _GoAlert from "./alert"; import _GoAlignmentAlign from "./alignment-align"; import _GoAlignmentAlignedTo from "./alignment-aligned-to"; diff --git a/react-icons/go/info.d.ts b/react-icons/go/info.d.ts index 64996130cf..cf01eba764 100644 --- a/react-icons/go/info.d.ts +++ b/react-icons/go/info.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-closed.d.ts b/react-icons/go/issue-closed.d.ts index 80f7dd2f7c..0fe28a2ab0 100644 --- a/react-icons/go/issue-closed.d.ts +++ b/react-icons/go/issue-closed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoIssueClosed extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-opened.d.ts b/react-icons/go/issue-opened.d.ts index 1f0b7d1b01..e662a33e89 100644 --- a/react-icons/go/issue-opened.d.ts +++ b/react-icons/go/issue-opened.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoIssueOpened extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/issue-reopened.d.ts b/react-icons/go/issue-reopened.d.ts index c724b3447b..3ec7cef0c2 100644 --- a/react-icons/go/issue-reopened.d.ts +++ b/react-icons/go/issue-reopened.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoIssueReopened extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jersey.d.ts b/react-icons/go/jersey.d.ts index f2daefb8e3..149b6a66d7 100644 --- a/react-icons/go/jersey.d.ts +++ b/react-icons/go/jersey.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoJersey extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-down.d.ts b/react-icons/go/jump-down.d.ts index 75bdcf7e91..07c402c235 100644 --- a/react-icons/go/jump-down.d.ts +++ b/react-icons/go/jump-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoJumpDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-left.d.ts b/react-icons/go/jump-left.d.ts index 1357710e07..58bd414e4e 100644 --- a/react-icons/go/jump-left.d.ts +++ b/react-icons/go/jump-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoJumpLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-right.d.ts b/react-icons/go/jump-right.d.ts index 07b9c18fcd..a76fa2dad9 100644 --- a/react-icons/go/jump-right.d.ts +++ b/react-icons/go/jump-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoJumpRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/jump-up.d.ts b/react-icons/go/jump-up.d.ts index 2b9cdc939d..fded0b0842 100644 --- a/react-icons/go/jump-up.d.ts +++ b/react-icons/go/jump-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoJumpUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/key.d.ts b/react-icons/go/key.d.ts index 59c06906c8..a8455c37da 100644 --- a/react-icons/go/key.d.ts +++ b/react-icons/go/key.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/keyboard.d.ts b/react-icons/go/keyboard.d.ts index 661906ee7d..6dcf30efa3 100644 --- a/react-icons/go/keyboard.d.ts +++ b/react-icons/go/keyboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/law.d.ts b/react-icons/go/law.d.ts index 2cffbfc93a..3c5bd28bc0 100644 --- a/react-icons/go/law.d.ts +++ b/react-icons/go/law.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/light-bulb.d.ts b/react-icons/go/light-bulb.d.ts index 510edd36d4..02f82c3794 100644 --- a/react-icons/go/light-bulb.d.ts +++ b/react-icons/go/light-bulb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLightBulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/link-external.d.ts b/react-icons/go/link-external.d.ts index 7b9a7ae2e9..d0a57059b1 100644 --- a/react-icons/go/link-external.d.ts +++ b/react-icons/go/link-external.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLinkExternal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/link.d.ts b/react-icons/go/link.d.ts index 0042a8b472..3b37d2ec24 100644 --- a/react-icons/go/link.d.ts +++ b/react-icons/go/link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/list-ordered.d.ts b/react-icons/go/list-ordered.d.ts index 9f4c179d8e..2c99911071 100644 --- a/react-icons/go/list-ordered.d.ts +++ b/react-icons/go/list-ordered.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoListOrdered extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/list-unordered.d.ts b/react-icons/go/list-unordered.d.ts index 97518ae8f5..f060eae218 100644 --- a/react-icons/go/list-unordered.d.ts +++ b/react-icons/go/list-unordered.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoListUnordered extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/location.d.ts b/react-icons/go/location.d.ts index 364c0c3b97..946415db31 100644 --- a/react-icons/go/location.d.ts +++ b/react-icons/go/location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/lock.d.ts b/react-icons/go/lock.d.ts index 892b825a7f..2d36edefb4 100644 --- a/react-icons/go/lock.d.ts +++ b/react-icons/go/lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/logo-github.d.ts b/react-icons/go/logo-github.d.ts index dd0db3759e..478ccc7640 100644 --- a/react-icons/go/logo-github.d.ts +++ b/react-icons/go/logo-github.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoLogoGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail-read.d.ts b/react-icons/go/mail-read.d.ts index 752b16077c..baf9ad74f5 100644 --- a/react-icons/go/mail-read.d.ts +++ b/react-icons/go/mail-read.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMailRead extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail-reply.d.ts b/react-icons/go/mail-reply.d.ts index 1dad821128..a677ac1f8e 100644 --- a/react-icons/go/mail-reply.d.ts +++ b/react-icons/go/mail-reply.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMailReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mail.d.ts b/react-icons/go/mail.d.ts index 54bb23cbab..f781e8c73d 100644 --- a/react-icons/go/mail.d.ts +++ b/react-icons/go/mail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mark-github.d.ts b/react-icons/go/mark-github.d.ts index 6baf32ff14..4dc9870ed7 100644 --- a/react-icons/go/mark-github.d.ts +++ b/react-icons/go/mark-github.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMarkGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/markdown.d.ts b/react-icons/go/markdown.d.ts index bbe3db8c4a..6ac1ab06e1 100644 --- a/react-icons/go/markdown.d.ts +++ b/react-icons/go/markdown.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMarkdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/megaphone.d.ts b/react-icons/go/megaphone.d.ts index afb75c1c2a..e29d3a3587 100644 --- a/react-icons/go/megaphone.d.ts +++ b/react-icons/go/megaphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMegaphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mention.d.ts b/react-icons/go/mention.d.ts index f8a61d7ec5..b46247592d 100644 --- a/react-icons/go/mention.d.ts +++ b/react-icons/go/mention.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMention extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/microscope.d.ts b/react-icons/go/microscope.d.ts index a5d21edb27..3636981bd2 100644 --- a/react-icons/go/microscope.d.ts +++ b/react-icons/go/microscope.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMicroscope extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/milestone.d.ts b/react-icons/go/milestone.d.ts index 3a4da83497..7e5f55f1ca 100644 --- a/react-icons/go/milestone.d.ts +++ b/react-icons/go/milestone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMilestone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mirror.d.ts b/react-icons/go/mirror.d.ts index 441363fe1e..6dbf5ec3ac 100644 --- a/react-icons/go/mirror.d.ts +++ b/react-icons/go/mirror.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMirror extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mortar-board.d.ts b/react-icons/go/mortar-board.d.ts index 53922393e9..d40d296a94 100644 --- a/react-icons/go/mortar-board.d.ts +++ b/react-icons/go/mortar-board.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMortarBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-down.d.ts b/react-icons/go/move-down.d.ts index 1c6ffd674f..270e0a1189 100644 --- a/react-icons/go/move-down.d.ts +++ b/react-icons/go/move-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMoveDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-left.d.ts b/react-icons/go/move-left.d.ts index 16c0597440..65c3b93349 100644 --- a/react-icons/go/move-left.d.ts +++ b/react-icons/go/move-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMoveLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-right.d.ts b/react-icons/go/move-right.d.ts index 8902ab82d7..ae04d230ba 100644 --- a/react-icons/go/move-right.d.ts +++ b/react-icons/go/move-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMoveRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/move-up.d.ts b/react-icons/go/move-up.d.ts index 234c0b1ce0..75236e2e57 100644 --- a/react-icons/go/move-up.d.ts +++ b/react-icons/go/move-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMoveUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/mute.d.ts b/react-icons/go/mute.d.ts index 796749c1d0..abf12ce479 100644 --- a/react-icons/go/mute.d.ts +++ b/react-icons/go/mute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/no-newline.d.ts b/react-icons/go/no-newline.d.ts index c80469ea8c..44154249ac 100644 --- a/react-icons/go/no-newline.d.ts +++ b/react-icons/go/no-newline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoNoNewline extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/octoface.d.ts b/react-icons/go/octoface.d.ts index d568614cff..6e13d16263 100644 --- a/react-icons/go/octoface.d.ts +++ b/react-icons/go/octoface.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoOctoface extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/organization.d.ts b/react-icons/go/organization.d.ts index 908f01dfbc..b1100fa1c6 100644 --- a/react-icons/go/organization.d.ts +++ b/react-icons/go/organization.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoOrganization extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/package.d.ts b/react-icons/go/package.d.ts index 4b8b3edab3..58e921d772 100644 --- a/react-icons/go/package.d.ts +++ b/react-icons/go/package.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPackage extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/paintcan.d.ts b/react-icons/go/paintcan.d.ts index ad64f2208b..38a4986d82 100644 --- a/react-icons/go/paintcan.d.ts +++ b/react-icons/go/paintcan.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPaintcan extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pencil.d.ts b/react-icons/go/pencil.d.ts index cb69b1856e..69fa342fd4 100644 --- a/react-icons/go/pencil.d.ts +++ b/react-icons/go/pencil.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/person.d.ts b/react-icons/go/person.d.ts index 58de6b2fef..234289b5c2 100644 --- a/react-icons/go/person.d.ts +++ b/react-icons/go/person.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pin.d.ts b/react-icons/go/pin.d.ts index 19ac4c65d1..da972a1191 100644 --- a/react-icons/go/pin.d.ts +++ b/react-icons/go/pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-fast-forward.d.ts b/react-icons/go/playback-fast-forward.d.ts index 499c29c52a..57e39b6632 100644 --- a/react-icons/go/playback-fast-forward.d.ts +++ b/react-icons/go/playback-fast-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlaybackFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-pause.d.ts b/react-icons/go/playback-pause.d.ts index b169dbdba1..f6d44ae931 100644 --- a/react-icons/go/playback-pause.d.ts +++ b/react-icons/go/playback-pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlaybackPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-play.d.ts b/react-icons/go/playback-play.d.ts index 068a3afbe3..cf0b41766c 100644 --- a/react-icons/go/playback-play.d.ts +++ b/react-icons/go/playback-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlaybackPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/playback-rewind.d.ts b/react-icons/go/playback-rewind.d.ts index 1e799a4c9b..b78fd47d40 100644 --- a/react-icons/go/playback-rewind.d.ts +++ b/react-icons/go/playback-rewind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlaybackRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/plug.d.ts b/react-icons/go/plug.d.ts index 3d159a3b7c..2f81b90138 100644 --- a/react-icons/go/plug.d.ts +++ b/react-icons/go/plug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/plus.d.ts b/react-icons/go/plus.d.ts index 9a4ec51d53..7e1e5e89b2 100644 --- a/react-icons/go/plus.d.ts +++ b/react-icons/go/plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/podium.d.ts b/react-icons/go/podium.d.ts index e9658fb6a6..af91f78b5f 100644 --- a/react-icons/go/podium.d.ts +++ b/react-icons/go/podium.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPodium extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/primitive-dot.d.ts b/react-icons/go/primitive-dot.d.ts index 35df7f982d..492e6ce6fd 100644 --- a/react-icons/go/primitive-dot.d.ts +++ b/react-icons/go/primitive-dot.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPrimitiveDot extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/primitive-square.d.ts b/react-icons/go/primitive-square.d.ts index 1950723171..e8501e4691 100644 --- a/react-icons/go/primitive-square.d.ts +++ b/react-icons/go/primitive-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPrimitiveSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/pulse.d.ts b/react-icons/go/pulse.d.ts index c0504a243b..4f0f335b82 100644 --- a/react-icons/go/pulse.d.ts +++ b/react-icons/go/pulse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPulse extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/puzzle.d.ts b/react-icons/go/puzzle.d.ts index c880f0cd54..9728000052 100644 --- a/react-icons/go/puzzle.d.ts +++ b/react-icons/go/puzzle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoPuzzle extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/question.d.ts b/react-icons/go/question.d.ts index 5457ec638b..9041ec8911 100644 --- a/react-icons/go/question.d.ts +++ b/react-icons/go/question.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoQuestion extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/quote.d.ts b/react-icons/go/quote.d.ts index 1d15a8df93..0102022349 100644 --- a/react-icons/go/quote.d.ts +++ b/react-icons/go/quote.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/radio-tower.d.ts b/react-icons/go/radio-tower.d.ts index 46a1a6155e..3415405dc3 100644 --- a/react-icons/go/radio-tower.d.ts +++ b/react-icons/go/radio-tower.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRadioTower extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-clone.d.ts b/react-icons/go/repo-clone.d.ts index dc9bfafa35..9ea93bf3a2 100644 --- a/react-icons/go/repo-clone.d.ts +++ b/react-icons/go/repo-clone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepoClone extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-force-push.d.ts b/react-icons/go/repo-force-push.d.ts index 29f11743a9..7fad1647c3 100644 --- a/react-icons/go/repo-force-push.d.ts +++ b/react-icons/go/repo-force-push.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepoForcePush extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-forked.d.ts b/react-icons/go/repo-forked.d.ts index 5c0b370827..d336c5ba9d 100644 --- a/react-icons/go/repo-forked.d.ts +++ b/react-icons/go/repo-forked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepoForked extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-pull.d.ts b/react-icons/go/repo-pull.d.ts index 733a3365a0..69c8af8146 100644 --- a/react-icons/go/repo-pull.d.ts +++ b/react-icons/go/repo-pull.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepoPull extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo-push.d.ts b/react-icons/go/repo-push.d.ts index 446a9b91e4..bf82b4b516 100644 --- a/react-icons/go/repo-push.d.ts +++ b/react-icons/go/repo-push.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepoPush extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/repo.d.ts b/react-icons/go/repo.d.ts index fd5f76ede7..95a7591dcb 100644 --- a/react-icons/go/repo.d.ts +++ b/react-icons/go/repo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRepo extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/rocket.d.ts b/react-icons/go/rocket.d.ts index f37282178e..4063759c97 100644 --- a/react-icons/go/rocket.d.ts +++ b/react-icons/go/rocket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRocket extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/rss.d.ts b/react-icons/go/rss.d.ts index a5fdf86c69..a93ceaa18c 100644 --- a/react-icons/go/rss.d.ts +++ b/react-icons/go/rss.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/ruby.d.ts b/react-icons/go/ruby.d.ts index 23237942f1..b186aa5f37 100644 --- a/react-icons/go/ruby.d.ts +++ b/react-icons/go/ruby.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoRuby extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/screen-full.d.ts b/react-icons/go/screen-full.d.ts index b204307751..a47cce385b 100644 --- a/react-icons/go/screen-full.d.ts +++ b/react-icons/go/screen-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoScreenFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/screen-normal.d.ts b/react-icons/go/screen-normal.d.ts index d6425302a7..8b51ed6f1a 100644 --- a/react-icons/go/screen-normal.d.ts +++ b/react-icons/go/screen-normal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoScreenNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/search.d.ts b/react-icons/go/search.d.ts index 8bdc1606d0..d44822fbc4 100644 --- a/react-icons/go/search.d.ts +++ b/react-icons/go/search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/server.d.ts b/react-icons/go/server.d.ts index 289aeb6736..df39674150 100644 --- a/react-icons/go/server.d.ts +++ b/react-icons/go/server.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoServer extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/settings.d.ts b/react-icons/go/settings.d.ts index cd5e2b9c6f..8413b823be 100644 --- a/react-icons/go/settings.d.ts +++ b/react-icons/go/settings.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sign-in.d.ts b/react-icons/go/sign-in.d.ts index 625403d73c..700db96895 100644 --- a/react-icons/go/sign-in.d.ts +++ b/react-icons/go/sign-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSignIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sign-out.d.ts b/react-icons/go/sign-out.d.ts index bcb90cf9b9..5ea47cb48a 100644 --- a/react-icons/go/sign-out.d.ts +++ b/react-icons/go/sign-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSignOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/split.d.ts b/react-icons/go/split.d.ts index ee2ce21671..888f075b27 100644 --- a/react-icons/go/split.d.ts +++ b/react-icons/go/split.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSplit extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/squirrel.d.ts b/react-icons/go/squirrel.d.ts index 5c8e89a2e6..482c5b14d6 100644 --- a/react-icons/go/squirrel.d.ts +++ b/react-icons/go/squirrel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSquirrel extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/star.d.ts b/react-icons/go/star.d.ts index 534b1c89d7..16e162eab6 100644 --- a/react-icons/go/star.d.ts +++ b/react-icons/go/star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/steps.d.ts b/react-icons/go/steps.d.ts index b10dd6ff8c..05e5670e29 100644 --- a/react-icons/go/steps.d.ts +++ b/react-icons/go/steps.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSteps extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/stop.d.ts b/react-icons/go/stop.d.ts index 7aa216371b..ebc500e47a 100644 --- a/react-icons/go/stop.d.ts +++ b/react-icons/go/stop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/sync.d.ts b/react-icons/go/sync.d.ts index dd3929203b..90076b522c 100644 --- a/react-icons/go/sync.d.ts +++ b/react-icons/go/sync.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/tag.d.ts b/react-icons/go/tag.d.ts index 7c052129fb..37a1c8c565 100644 --- a/react-icons/go/tag.d.ts +++ b/react-icons/go/tag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/telescope.d.ts b/react-icons/go/telescope.d.ts index feac7a05c8..6d6ed212dc 100644 --- a/react-icons/go/telescope.d.ts +++ b/react-icons/go/telescope.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTelescope extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/terminal.d.ts b/react-icons/go/terminal.d.ts index 3cd1379b1e..6bc5c0d441 100644 --- a/react-icons/go/terminal.d.ts +++ b/react-icons/go/terminal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTerminal extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/three-bars.d.ts b/react-icons/go/three-bars.d.ts index 7ef14ccc55..b6a4110ea4 100644 --- a/react-icons/go/three-bars.d.ts +++ b/react-icons/go/three-bars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoThreeBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/tools.d.ts b/react-icons/go/tools.d.ts index 288bd5601e..603dffd11b 100644 --- a/react-icons/go/tools.d.ts +++ b/react-icons/go/tools.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTools extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/trashcan.d.ts b/react-icons/go/trashcan.d.ts index a1a1911db4..dfce096cb7 100644 --- a/react-icons/go/trashcan.d.ts +++ b/react-icons/go/trashcan.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTrashcan extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-down.d.ts b/react-icons/go/triangle-down.d.ts index a3b1ce34f7..4625828b17 100644 --- a/react-icons/go/triangle-down.d.ts +++ b/react-icons/go/triangle-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTriangleDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-left.d.ts b/react-icons/go/triangle-left.d.ts index adac6298cd..49df844479 100644 --- a/react-icons/go/triangle-left.d.ts +++ b/react-icons/go/triangle-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTriangleLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-right.d.ts b/react-icons/go/triangle-right.d.ts index b910ce3d25..a83399a202 100644 --- a/react-icons/go/triangle-right.d.ts +++ b/react-icons/go/triangle-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTriangleRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/triangle-up.d.ts b/react-icons/go/triangle-up.d.ts index a108802217..3becf43e4e 100644 --- a/react-icons/go/triangle-up.d.ts +++ b/react-icons/go/triangle-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoTriangleUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/unfold.d.ts b/react-icons/go/unfold.d.ts index 60d0118c0b..948b806f41 100644 --- a/react-icons/go/unfold.d.ts +++ b/react-icons/go/unfold.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoUnfold extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/unmute.d.ts b/react-icons/go/unmute.d.ts index bdfc514140..773176c9c9 100644 --- a/react-icons/go/unmute.d.ts +++ b/react-icons/go/unmute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoUnmute extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/versions.d.ts b/react-icons/go/versions.d.ts index 6b0b7d1459..e60362a28b 100644 --- a/react-icons/go/versions.d.ts +++ b/react-icons/go/versions.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoVersions extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/x.d.ts b/react-icons/go/x.d.ts index 4ffdd863c4..64c44dc375 100644 --- a/react-icons/go/x.d.ts +++ b/react-icons/go/x.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoX extends React.Component { } \ No newline at end of file diff --git a/react-icons/go/zap.d.ts b/react-icons/go/zap.d.ts index 3e0f7c9bfa..396625aae6 100644 --- a/react-icons/go/zap.d.ts +++ b/react-icons/go/zap.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class GoZap extends React.Component { } \ No newline at end of file diff --git a/react-icons/index.d.ts b/react-icons/index.d.ts index 1225532e1c..1d8b8573cb 100644 --- a/react-icons/index.d.ts +++ b/react-icons/index.d.ts @@ -1,4 +1,5 @@ // Type definitions for react-icons 2.2 // Project: https://github.com/gorangajic/react-icons#readme // Definitions by: Alexandre Paré -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped \ No newline at end of file +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 diff --git a/react-icons/io/alert-circled.d.ts b/react-icons/io/alert-circled.d.ts index a43b5ae635..07a9e8c6d6 100644 --- a/react-icons/io/alert-circled.d.ts +++ b/react-icons/io/alert-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAlertCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/alert.d.ts b/react-icons/io/alert.d.ts index 82c0652d87..b3d7bdece9 100644 --- a/react-icons/io/alert.d.ts +++ b/react-icons/io/alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-add-circle.d.ts b/react-icons/io/android-add-circle.d.ts index 1ef9872cf2..ac285b018d 100644 --- a/react-icons/io/android-add-circle.d.ts +++ b/react-icons/io/android-add-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidAddCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-add.d.ts b/react-icons/io/android-add.d.ts index 181c704029..41c4fad080 100644 --- a/react-icons/io/android-add.d.ts +++ b/react-icons/io/android-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-alarm-clock.d.ts b/react-icons/io/android-alarm-clock.d.ts index 14f1cf8764..3c9b791f1a 100644 --- a/react-icons/io/android-alarm-clock.d.ts +++ b/react-icons/io/android-alarm-clock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidAlarmClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-alert.d.ts b/react-icons/io/android-alert.d.ts index 92d7c9ce54..831bed7940 100644 --- a/react-icons/io/android-alert.d.ts +++ b/react-icons/io/android-alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-apps.d.ts b/react-icons/io/android-apps.d.ts index c1807a5c1d..f44ab088a4 100644 --- a/react-icons/io/android-apps.d.ts +++ b/react-icons/io/android-apps.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidApps extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-archive.d.ts b/react-icons/io/android-archive.d.ts index a635c490e7..8a5d79ec46 100644 --- a/react-icons/io/android-archive.d.ts +++ b/react-icons/io/android-archive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-back.d.ts b/react-icons/io/android-arrow-back.d.ts index 5b2cc0dd3a..968f0cf115 100644 --- a/react-icons/io/android-arrow-back.d.ts +++ b/react-icons/io/android-arrow-back.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-down.d.ts b/react-icons/io/android-arrow-down.d.ts index 7b5381555b..8456ba0187 100644 --- a/react-icons/io/android-arrow-down.d.ts +++ b/react-icons/io/android-arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropdown-circle.d.ts b/react-icons/io/android-arrow-dropdown-circle.d.ts index b61e6a6742..29ba2a5b41 100644 --- a/react-icons/io/android-arrow-dropdown-circle.d.ts +++ b/react-icons/io/android-arrow-dropdown-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropdownCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropdown.d.ts b/react-icons/io/android-arrow-dropdown.d.ts index b044d78ee6..1750806746 100644 --- a/react-icons/io/android-arrow-dropdown.d.ts +++ b/react-icons/io/android-arrow-dropdown.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropleft-circle.d.ts b/react-icons/io/android-arrow-dropleft-circle.d.ts index 5bdfb3d037..7d8c1061c2 100644 --- a/react-icons/io/android-arrow-dropleft-circle.d.ts +++ b/react-icons/io/android-arrow-dropleft-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropleftCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropleft.d.ts b/react-icons/io/android-arrow-dropleft.d.ts index 21916fd2e7..4b22a1b1b0 100644 --- a/react-icons/io/android-arrow-dropleft.d.ts +++ b/react-icons/io/android-arrow-dropleft.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropleft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropright-circle.d.ts b/react-icons/io/android-arrow-dropright-circle.d.ts index 520d74fcf2..a7e8e19449 100644 --- a/react-icons/io/android-arrow-dropright-circle.d.ts +++ b/react-icons/io/android-arrow-dropright-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDroprightCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropright.d.ts b/react-icons/io/android-arrow-dropright.d.ts index e1a0afa684..63b8bb9df0 100644 --- a/react-icons/io/android-arrow-dropright.d.ts +++ b/react-icons/io/android-arrow-dropright.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropright extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropup-circle.d.ts b/react-icons/io/android-arrow-dropup-circle.d.ts index cede04b720..6fe43fb4a1 100644 --- a/react-icons/io/android-arrow-dropup-circle.d.ts +++ b/react-icons/io/android-arrow-dropup-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropupCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-dropup.d.ts b/react-icons/io/android-arrow-dropup.d.ts index 2eaa26691b..fdf097d289 100644 --- a/react-icons/io/android-arrow-dropup.d.ts +++ b/react-icons/io/android-arrow-dropup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowDropup extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-forward.d.ts b/react-icons/io/android-arrow-forward.d.ts index 5a0f09249c..e7ded9f1a8 100644 --- a/react-icons/io/android-arrow-forward.d.ts +++ b/react-icons/io/android-arrow-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-arrow-up.d.ts b/react-icons/io/android-arrow-up.d.ts index fe22447527..9e7ee29074 100644 --- a/react-icons/io/android-arrow-up.d.ts +++ b/react-icons/io/android-arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-attach.d.ts b/react-icons/io/android-attach.d.ts index 0ebda55093..7f8905a794 100644 --- a/react-icons/io/android-attach.d.ts +++ b/react-icons/io/android-attach.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidAttach extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bar.d.ts b/react-icons/io/android-bar.d.ts index 4c35002f1d..fbf23dbfa6 100644 --- a/react-icons/io/android-bar.d.ts +++ b/react-icons/io/android-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bicycle.d.ts b/react-icons/io/android-bicycle.d.ts index 04992767c6..46f1322c96 100644 --- a/react-icons/io/android-bicycle.d.ts +++ b/react-icons/io/android-bicycle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBicycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-boat.d.ts b/react-icons/io/android-boat.d.ts index 8764bc69af..4bf746843c 100644 --- a/react-icons/io/android-boat.d.ts +++ b/react-icons/io/android-boat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bookmark.d.ts b/react-icons/io/android-bookmark.d.ts index 21dfd2a67d..159b965c51 100644 --- a/react-icons/io/android-bookmark.d.ts +++ b/react-icons/io/android-bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bulb.d.ts b/react-icons/io/android-bulb.d.ts index b907535d4f..a2516bb9f5 100644 --- a/react-icons/io/android-bulb.d.ts +++ b/react-icons/io/android-bulb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-bus.d.ts b/react-icons/io/android-bus.d.ts index 2185efdf4e..11ed2e9042 100644 --- a/react-icons/io/android-bus.d.ts +++ b/react-icons/io/android-bus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-calendar.d.ts b/react-icons/io/android-calendar.d.ts index 892a8bb304..4dd1f36e64 100644 --- a/react-icons/io/android-calendar.d.ts +++ b/react-icons/io/android-calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-call.d.ts b/react-icons/io/android-call.d.ts index 2c4f272d58..f9a4b59ea3 100644 --- a/react-icons/io/android-call.d.ts +++ b/react-icons/io/android-call.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-camera.d.ts b/react-icons/io/android-camera.d.ts index b071f21e26..f603bf146e 100644 --- a/react-icons/io/android-camera.d.ts +++ b/react-icons/io/android-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cancel.d.ts b/react-icons/io/android-cancel.d.ts index f0897dae5d..ab71551fcf 100644 --- a/react-icons/io/android-cancel.d.ts +++ b/react-icons/io/android-cancel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-car.d.ts b/react-icons/io/android-car.d.ts index 3d8517f830..b5381854a4 100644 --- a/react-icons/io/android-car.d.ts +++ b/react-icons/io/android-car.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cart.d.ts b/react-icons/io/android-cart.d.ts index 53aa5b73e2..15a69b5914 100644 --- a/react-icons/io/android-cart.d.ts +++ b/react-icons/io/android-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-chat.d.ts b/react-icons/io/android-chat.d.ts index a8153e8535..e66f6edca0 100644 --- a/react-icons/io/android-chat.d.ts +++ b/react-icons/io/android-chat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-blank.d.ts b/react-icons/io/android-checkbox-blank.d.ts index cc0c092564..217ada2863 100644 --- a/react-icons/io/android-checkbox-blank.d.ts +++ b/react-icons/io/android-checkbox-blank.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCheckboxBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-outline-blank.d.ts b/react-icons/io/android-checkbox-outline-blank.d.ts index 9dd2f75e2e..14cd972b16 100644 --- a/react-icons/io/android-checkbox-outline-blank.d.ts +++ b/react-icons/io/android-checkbox-outline-blank.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCheckboxOutlineBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox-outline.d.ts b/react-icons/io/android-checkbox-outline.d.ts index efe703d1c0..38b57ee5dd 100644 --- a/react-icons/io/android-checkbox-outline.d.ts +++ b/react-icons/io/android-checkbox-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCheckboxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkbox.d.ts b/react-icons/io/android-checkbox.d.ts index ee8667f980..1b003cb903 100644 --- a/react-icons/io/android-checkbox.d.ts +++ b/react-icons/io/android-checkbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCheckbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-checkmark-circle.d.ts b/react-icons/io/android-checkmark-circle.d.ts index 0d159b7f6b..833662cd83 100644 --- a/react-icons/io/android-checkmark-circle.d.ts +++ b/react-icons/io/android-checkmark-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCheckmarkCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-clipboard.d.ts b/react-icons/io/android-clipboard.d.ts index a953fd87df..622834f3cd 100644 --- a/react-icons/io/android-clipboard.d.ts +++ b/react-icons/io/android-clipboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-close.d.ts b/react-icons/io/android-close.d.ts index eb3cbd0f79..5bbd99b6f3 100644 --- a/react-icons/io/android-close.d.ts +++ b/react-icons/io/android-close.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-circle.d.ts b/react-icons/io/android-cloud-circle.d.ts index 72dd9b9e5b..b7d9fa1289 100644 --- a/react-icons/io/android-cloud-circle.d.ts +++ b/react-icons/io/android-cloud-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCloudCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-done.d.ts b/react-icons/io/android-cloud-done.d.ts index 0de54d7f34..b5d0302284 100644 --- a/react-icons/io/android-cloud-done.d.ts +++ b/react-icons/io/android-cloud-done.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCloudDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud-outline.d.ts b/react-icons/io/android-cloud-outline.d.ts index 5246b56474..ae0bcdffb2 100644 --- a/react-icons/io/android-cloud-outline.d.ts +++ b/react-icons/io/android-cloud-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCloudOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-cloud.d.ts b/react-icons/io/android-cloud.d.ts index e25bb1be8c..617ffc970f 100644 --- a/react-icons/io/android-cloud.d.ts +++ b/react-icons/io/android-cloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-color-palette.d.ts b/react-icons/io/android-color-palette.d.ts index eb53e983db..79703865d3 100644 --- a/react-icons/io/android-color-palette.d.ts +++ b/react-icons/io/android-color-palette.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidColorPalette extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-compass.d.ts b/react-icons/io/android-compass.d.ts index b5fa5b0618..66e0ea6652 100644 --- a/react-icons/io/android-compass.d.ts +++ b/react-icons/io/android-compass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contact.d.ts b/react-icons/io/android-contact.d.ts index a2176659a5..65de6efebf 100644 --- a/react-icons/io/android-contact.d.ts +++ b/react-icons/io/android-contact.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidContact extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contacts.d.ts b/react-icons/io/android-contacts.d.ts index b998747e17..a1e64d78cf 100644 --- a/react-icons/io/android-contacts.d.ts +++ b/react-icons/io/android-contacts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-contract.d.ts b/react-icons/io/android-contract.d.ts index f607d8d7ee..2acd71e8d5 100644 --- a/react-icons/io/android-contract.d.ts +++ b/react-icons/io/android-contract.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidContract extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-create.d.ts b/react-icons/io/android-create.d.ts index e15c015aa0..b1138d8ff8 100644 --- a/react-icons/io/android-create.d.ts +++ b/react-icons/io/android-create.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidCreate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-delete.d.ts b/react-icons/io/android-delete.d.ts index 2a9520991f..aa391d8b7a 100644 --- a/react-icons/io/android-delete.d.ts +++ b/react-icons/io/android-delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-desktop.d.ts b/react-icons/io/android-desktop.d.ts index 1fef239b28..a514bf6797 100644 --- a/react-icons/io/android-desktop.d.ts +++ b/react-icons/io/android-desktop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-document.d.ts b/react-icons/io/android-document.d.ts index 9b6de410c4..53918b3cd0 100644 --- a/react-icons/io/android-document.d.ts +++ b/react-icons/io/android-document.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-done-all.d.ts b/react-icons/io/android-done-all.d.ts index f376b7216a..20b37b9b43 100644 --- a/react-icons/io/android-done-all.d.ts +++ b/react-icons/io/android-done-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDoneAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-done.d.ts b/react-icons/io/android-done.d.ts index 32e2071533..23604cdf01 100644 --- a/react-icons/io/android-done.d.ts +++ b/react-icons/io/android-done.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-download.d.ts b/react-icons/io/android-download.d.ts index 8ed919e782..756053ee06 100644 --- a/react-icons/io/android-download.d.ts +++ b/react-icons/io/android-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-drafts.d.ts b/react-icons/io/android-drafts.d.ts index 3616f37d29..b7ff235b6a 100644 --- a/react-icons/io/android-drafts.d.ts +++ b/react-icons/io/android-drafts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidDrafts extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-exit.d.ts b/react-icons/io/android-exit.d.ts index b608f070d4..47e85d287b 100644 --- a/react-icons/io/android-exit.d.ts +++ b/react-icons/io/android-exit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidExit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-expand.d.ts b/react-icons/io/android-expand.d.ts index 590a351623..69357b1238 100644 --- a/react-icons/io/android-expand.d.ts +++ b/react-icons/io/android-expand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-favorite-outline.d.ts b/react-icons/io/android-favorite-outline.d.ts index 0d70d0d05f..e42c0d351c 100644 --- a/react-icons/io/android-favorite-outline.d.ts +++ b/react-icons/io/android-favorite-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFavoriteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-favorite.d.ts b/react-icons/io/android-favorite.d.ts index 3734d0d383..8b35513449 100644 --- a/react-icons/io/android-favorite.d.ts +++ b/react-icons/io/android-favorite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFavorite extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-film.d.ts b/react-icons/io/android-film.d.ts index cc9fc259f0..a82ed989d0 100644 --- a/react-icons/io/android-film.d.ts +++ b/react-icons/io/android-film.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-folder-open.d.ts b/react-icons/io/android-folder-open.d.ts index dc7ac8fb0f..525290636e 100644 --- a/react-icons/io/android-folder-open.d.ts +++ b/react-icons/io/android-folder-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-folder.d.ts b/react-icons/io/android-folder.d.ts index fa2435a9fb..4c67058e6b 100644 --- a/react-icons/io/android-folder.d.ts +++ b/react-icons/io/android-folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-funnel.d.ts b/react-icons/io/android-funnel.d.ts index 6a65c30125..0dcdaf94e1 100644 --- a/react-icons/io/android-funnel.d.ts +++ b/react-icons/io/android-funnel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidFunnel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-globe.d.ts b/react-icons/io/android-globe.d.ts index 04f3dc1853..8b3b55ad07 100644 --- a/react-icons/io/android-globe.d.ts +++ b/react-icons/io/android-globe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-hand.d.ts b/react-icons/io/android-hand.d.ts index 310d56716f..58ba1fc0ce 100644 --- a/react-icons/io/android-hand.d.ts +++ b/react-icons/io/android-hand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidHand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-hangout.d.ts b/react-icons/io/android-hangout.d.ts index 2de7eaa886..a293f73190 100644 --- a/react-icons/io/android-hangout.d.ts +++ b/react-icons/io/android-hangout.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidHangout extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-happy.d.ts b/react-icons/io/android-happy.d.ts index e7565a0962..388a3d9c67 100644 --- a/react-icons/io/android-happy.d.ts +++ b/react-icons/io/android-happy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidHappy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-home.d.ts b/react-icons/io/android-home.d.ts index d6ff3a72f6..f000f6c9b6 100644 --- a/react-icons/io/android-home.d.ts +++ b/react-icons/io/android-home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-image.d.ts b/react-icons/io/android-image.d.ts index 234a34200f..605696ee06 100644 --- a/react-icons/io/android-image.d.ts +++ b/react-icons/io/android-image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-laptop.d.ts b/react-icons/io/android-laptop.d.ts index 8f3a514189..78e48f594a 100644 --- a/react-icons/io/android-laptop.d.ts +++ b/react-icons/io/android-laptop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-list.d.ts b/react-icons/io/android-list.d.ts index 4eaecd910c..f0ab0eab7c 100644 --- a/react-icons/io/android-list.d.ts +++ b/react-icons/io/android-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidList extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-locate.d.ts b/react-icons/io/android-locate.d.ts index 3266555433..d150d7ec81 100644 --- a/react-icons/io/android-locate.d.ts +++ b/react-icons/io/android-locate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidLocate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-lock.d.ts b/react-icons/io/android-lock.d.ts index d73bb76011..2d8806bc2d 100644 --- a/react-icons/io/android-lock.d.ts +++ b/react-icons/io/android-lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-mail.d.ts b/react-icons/io/android-mail.d.ts index a460d9347d..59899e90db 100644 --- a/react-icons/io/android-mail.d.ts +++ b/react-icons/io/android-mail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-map.d.ts b/react-icons/io/android-map.d.ts index bd05edba2e..9fdbef0c87 100644 --- a/react-icons/io/android-map.d.ts +++ b/react-icons/io/android-map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-menu.d.ts b/react-icons/io/android-menu.d.ts index d7362c3142..7c9b6bdcd0 100644 --- a/react-icons/io/android-menu.d.ts +++ b/react-icons/io/android-menu.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-microphone-off.d.ts b/react-icons/io/android-microphone-off.d.ts index 4b2307dc68..b447b5df2f 100644 --- a/react-icons/io/android-microphone-off.d.ts +++ b/react-icons/io/android-microphone-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMicrophoneOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-microphone.d.ts b/react-icons/io/android-microphone.d.ts index 3596331d65..f307b79fea 100644 --- a/react-icons/io/android-microphone.d.ts +++ b/react-icons/io/android-microphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-more-horizontal.d.ts b/react-icons/io/android-more-horizontal.d.ts index 34ecb26ae4..44c1655d89 100644 --- a/react-icons/io/android-more-horizontal.d.ts +++ b/react-icons/io/android-more-horizontal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMoreHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-more-vertical.d.ts b/react-icons/io/android-more-vertical.d.ts index c67fd53e56..62d8f2f6d7 100644 --- a/react-icons/io/android-more-vertical.d.ts +++ b/react-icons/io/android-more-vertical.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidMoreVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-navigate.d.ts b/react-icons/io/android-navigate.d.ts index 075f8caa05..9a6938e581 100644 --- a/react-icons/io/android-navigate.d.ts +++ b/react-icons/io/android-navigate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications-none.d.ts b/react-icons/io/android-notifications-none.d.ts index f92977a171..3a2639e709 100644 --- a/react-icons/io/android-notifications-none.d.ts +++ b/react-icons/io/android-notifications-none.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidNotificationsNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications-off.d.ts b/react-icons/io/android-notifications-off.d.ts index 9152b8b8c6..103ec4190f 100644 --- a/react-icons/io/android-notifications-off.d.ts +++ b/react-icons/io/android-notifications-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidNotificationsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-notifications.d.ts b/react-icons/io/android-notifications.d.ts index 397d38bce8..2ebd7abdbe 100644 --- a/react-icons/io/android-notifications.d.ts +++ b/react-icons/io/android-notifications.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidNotifications extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-open.d.ts b/react-icons/io/android-open.d.ts index e11840cf8b..9c8bca914e 100644 --- a/react-icons/io/android-open.d.ts +++ b/react-icons/io/android-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-options.d.ts b/react-icons/io/android-options.d.ts index a3970fbf30..914219ccfd 100644 --- a/react-icons/io/android-options.d.ts +++ b/react-icons/io/android-options.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidOptions extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-people.d.ts b/react-icons/io/android-people.d.ts index 55042c3d62..e9b72164e5 100644 --- a/react-icons/io/android-people.d.ts +++ b/react-icons/io/android-people.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-person-add.d.ts b/react-icons/io/android-person-add.d.ts index b012eb35a4..ed0e4d4a36 100644 --- a/react-icons/io/android-person-add.d.ts +++ b/react-icons/io/android-person-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-person.d.ts b/react-icons/io/android-person.d.ts index 38a6ff034e..8e8b15815b 100644 --- a/react-icons/io/android-person.d.ts +++ b/react-icons/io/android-person.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-phone-landscape.d.ts b/react-icons/io/android-phone-landscape.d.ts index 98fb905b92..fe765139b3 100644 --- a/react-icons/io/android-phone-landscape.d.ts +++ b/react-icons/io/android-phone-landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPhoneLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-phone-portrait.d.ts b/react-icons/io/android-phone-portrait.d.ts index 19d594e5cc..ec896b9e09 100644 --- a/react-icons/io/android-phone-portrait.d.ts +++ b/react-icons/io/android-phone-portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPhonePortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-pin.d.ts b/react-icons/io/android-pin.d.ts index 847d1aa932..6256ae7595 100644 --- a/react-icons/io/android-pin.d.ts +++ b/react-icons/io/android-pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-plane.d.ts b/react-icons/io/android-plane.d.ts index 73523e363f..d8dae6a4d3 100644 --- a/react-icons/io/android-plane.d.ts +++ b/react-icons/io/android-plane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-playstore.d.ts b/react-icons/io/android-playstore.d.ts index 5d4bed6904..0b17fb21aa 100644 --- a/react-icons/io/android-playstore.d.ts +++ b/react-icons/io/android-playstore.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPlaystore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-print.d.ts b/react-icons/io/android-print.d.ts index b898bcd5d7..40bb1c29b6 100644 --- a/react-icons/io/android-print.d.ts +++ b/react-icons/io/android-print.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-radio-button-off.d.ts b/react-icons/io/android-radio-button-off.d.ts index d26ae44fba..cd6ee4ee22 100644 --- a/react-icons/io/android-radio-button-off.d.ts +++ b/react-icons/io/android-radio-button-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRadioButtonOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-radio-button-on.d.ts b/react-icons/io/android-radio-button-on.d.ts index a590507c7f..7c06a25bb7 100644 --- a/react-icons/io/android-radio-button-on.d.ts +++ b/react-icons/io/android-radio-button-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRadioButtonOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-refresh.d.ts b/react-icons/io/android-refresh.d.ts index 6496993708..410cb95cec 100644 --- a/react-icons/io/android-refresh.d.ts +++ b/react-icons/io/android-refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-remove-circle.d.ts b/react-icons/io/android-remove-circle.d.ts index 13753addf6..5497448ccc 100644 --- a/react-icons/io/android-remove-circle.d.ts +++ b/react-icons/io/android-remove-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRemoveCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-remove.d.ts b/react-icons/io/android-remove.d.ts index 757d7d4069..0771566550 100644 --- a/react-icons/io/android-remove.d.ts +++ b/react-icons/io/android-remove.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-restaurant.d.ts b/react-icons/io/android-restaurant.d.ts index 402f3dcbe9..90eb94dea5 100644 --- a/react-icons/io/android-restaurant.d.ts +++ b/react-icons/io/android-restaurant.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sad.d.ts b/react-icons/io/android-sad.d.ts index e15bdd3ee5..e83078dffd 100644 --- a/react-icons/io/android-sad.d.ts +++ b/react-icons/io/android-sad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-search.d.ts b/react-icons/io/android-search.d.ts index f83770a888..25470f2ff8 100644 --- a/react-icons/io/android-search.d.ts +++ b/react-icons/io/android-search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-send.d.ts b/react-icons/io/android-send.d.ts index 2594494bce..4d90363e68 100644 --- a/react-icons/io/android-send.d.ts +++ b/react-icons/io/android-send.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSend extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-settings.d.ts b/react-icons/io/android-settings.d.ts index 67b1287744..448a8ddc18 100644 --- a/react-icons/io/android-settings.d.ts +++ b/react-icons/io/android-settings.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-share-alt.d.ts b/react-icons/io/android-share-alt.d.ts index 6ca634ea27..b00f5320f3 100644 --- a/react-icons/io/android-share-alt.d.ts +++ b/react-icons/io/android-share-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidShareAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-share.d.ts b/react-icons/io/android-share.d.ts index 1624115637..ce3187db9b 100644 --- a/react-icons/io/android-share.d.ts +++ b/react-icons/io/android-share.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star-half.d.ts b/react-icons/io/android-star-half.d.ts index 8eaa9b49c3..a3b26b539f 100644 --- a/react-icons/io/android-star-half.d.ts +++ b/react-icons/io/android-star-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star-outline.d.ts b/react-icons/io/android-star-outline.d.ts index 82cf2dfd07..2d979cb236 100644 --- a/react-icons/io/android-star-outline.d.ts +++ b/react-icons/io/android-star-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-star.d.ts b/react-icons/io/android-star.d.ts index 6ce5994948..b312107d7a 100644 --- a/react-icons/io/android-star.d.ts +++ b/react-icons/io/android-star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-stopwatch.d.ts b/react-icons/io/android-stopwatch.d.ts index c78609cbec..5b6ddf2caf 100644 --- a/react-icons/io/android-stopwatch.d.ts +++ b/react-icons/io/android-stopwatch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-subway.d.ts b/react-icons/io/android-subway.d.ts index 927100e826..ed20cbe1f3 100644 --- a/react-icons/io/android-subway.d.ts +++ b/react-icons/io/android-subway.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sunny.d.ts b/react-icons/io/android-sunny.d.ts index c1baf81f2b..2ef91532e8 100644 --- a/react-icons/io/android-sunny.d.ts +++ b/react-icons/io/android-sunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-sync.d.ts b/react-icons/io/android-sync.d.ts index 9f39b3ca1a..2e9b19ff31 100644 --- a/react-icons/io/android-sync.d.ts +++ b/react-icons/io/android-sync.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-textsms.d.ts b/react-icons/io/android-textsms.d.ts index aef70c3543..026cf3df84 100644 --- a/react-icons/io/android-textsms.d.ts +++ b/react-icons/io/android-textsms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidTextsms extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-time.d.ts b/react-icons/io/android-time.d.ts index 0e75b302ca..718f32a889 100644 --- a/react-icons/io/android-time.d.ts +++ b/react-icons/io/android-time.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-train.d.ts b/react-icons/io/android-train.d.ts index 6df033c7ab..3b6227d3fb 100644 --- a/react-icons/io/android-train.d.ts +++ b/react-icons/io/android-train.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-unlock.d.ts b/react-icons/io/android-unlock.d.ts index 5ca174216d..9789ab7f07 100644 --- a/react-icons/io/android-unlock.d.ts +++ b/react-icons/io/android-unlock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidUnlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-upload.d.ts b/react-icons/io/android-upload.d.ts index a44eb717d2..423de4a5fb 100644 --- a/react-icons/io/android-upload.d.ts +++ b/react-icons/io/android-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-down.d.ts b/react-icons/io/android-volume-down.d.ts index 61ddda0408..9b1f08c120 100644 --- a/react-icons/io/android-volume-down.d.ts +++ b/react-icons/io/android-volume-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-mute.d.ts b/react-icons/io/android-volume-mute.d.ts index 3904911d77..359757636b 100644 --- a/react-icons/io/android-volume-mute.d.ts +++ b/react-icons/io/android-volume-mute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-off.d.ts b/react-icons/io/android-volume-off.d.ts index b35887e8f2..9f53fe2f38 100644 --- a/react-icons/io/android-volume-off.d.ts +++ b/react-icons/io/android-volume-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-volume-up.d.ts b/react-icons/io/android-volume-up.d.ts index 2b33721165..dffd12cc1c 100644 --- a/react-icons/io/android-volume-up.d.ts +++ b/react-icons/io/android-volume-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-walk.d.ts b/react-icons/io/android-walk.d.ts index 4044521602..a66affde9f 100644 --- a/react-icons/io/android-walk.d.ts +++ b/react-icons/io/android-walk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidWalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-warning.d.ts b/react-icons/io/android-warning.d.ts index 6eb55c23b8..4a63539735 100644 --- a/react-icons/io/android-warning.d.ts +++ b/react-icons/io/android-warning.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-watch.d.ts b/react-icons/io/android-watch.d.ts index 5808d17040..eaf8400398 100644 --- a/react-icons/io/android-watch.d.ts +++ b/react-icons/io/android-watch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/android-wifi.d.ts b/react-icons/io/android-wifi.d.ts index fb9e7f68ff..c9527a96dc 100644 --- a/react-icons/io/android-wifi.d.ts +++ b/react-icons/io/android-wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAndroidWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/aperture.d.ts b/react-icons/io/aperture.d.ts index 0f6757e511..baff06b577 100644 --- a/react-icons/io/aperture.d.ts +++ b/react-icons/io/aperture.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAperture extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/archive.d.ts b/react-icons/io/archive.d.ts index 8e43c86ef0..be19b6ff72 100644 --- a/react-icons/io/archive.d.ts +++ b/react-icons/io/archive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-a.d.ts b/react-icons/io/arrow-down-a.d.ts index e129600672..22eb32ad8d 100644 --- a/react-icons/io/arrow-down-a.d.ts +++ b/react-icons/io/arrow-down-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowDownA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-b.d.ts b/react-icons/io/arrow-down-b.d.ts index 2b1c4641fb..93cfbad605 100644 --- a/react-icons/io/arrow-down-b.d.ts +++ b/react-icons/io/arrow-down-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowDownB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-down-c.d.ts b/react-icons/io/arrow-down-c.d.ts index 12b128d44f..d3bb89e87f 100644 --- a/react-icons/io/arrow-down-c.d.ts +++ b/react-icons/io/arrow-down-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowDownC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-expand.d.ts b/react-icons/io/arrow-expand.d.ts index 39a0ed20f8..126d2adbea 100644 --- a/react-icons/io/arrow-expand.d.ts +++ b/react-icons/io/arrow-expand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowExpand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-down-left.d.ts b/react-icons/io/arrow-graph-down-left.d.ts index 8c7cf60e6a..91f94a4d2e 100644 --- a/react-icons/io/arrow-graph-down-left.d.ts +++ b/react-icons/io/arrow-graph-down-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowGraphDownLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-down-right.d.ts b/react-icons/io/arrow-graph-down-right.d.ts index 00fa9e4c80..d3c24ab6cf 100644 --- a/react-icons/io/arrow-graph-down-right.d.ts +++ b/react-icons/io/arrow-graph-down-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowGraphDownRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-up-left.d.ts b/react-icons/io/arrow-graph-up-left.d.ts index a647eaa771..55ea5567b6 100644 --- a/react-icons/io/arrow-graph-up-left.d.ts +++ b/react-icons/io/arrow-graph-up-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowGraphUpLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-graph-up-right.d.ts b/react-icons/io/arrow-graph-up-right.d.ts index 9ef13b190a..bbc159b1ce 100644 --- a/react-icons/io/arrow-graph-up-right.d.ts +++ b/react-icons/io/arrow-graph-up-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowGraphUpRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-a.d.ts b/react-icons/io/arrow-left-a.d.ts index 9855db5540..c94eb6b292 100644 --- a/react-icons/io/arrow-left-a.d.ts +++ b/react-icons/io/arrow-left-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowLeftA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-b.d.ts b/react-icons/io/arrow-left-b.d.ts index db42f717f7..b7a6806e18 100644 --- a/react-icons/io/arrow-left-b.d.ts +++ b/react-icons/io/arrow-left-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowLeftB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-left-c.d.ts b/react-icons/io/arrow-left-c.d.ts index d1d7a3b816..b406e0ef6c 100644 --- a/react-icons/io/arrow-left-c.d.ts +++ b/react-icons/io/arrow-left-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowLeftC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-move.d.ts b/react-icons/io/arrow-move.d.ts index 1f01191993..44c24566ca 100644 --- a/react-icons/io/arrow-move.d.ts +++ b/react-icons/io/arrow-move.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowMove extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-resize.d.ts b/react-icons/io/arrow-resize.d.ts index 5978c04079..1deb17b54a 100644 --- a/react-icons/io/arrow-resize.d.ts +++ b/react-icons/io/arrow-resize.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowResize extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-return-left.d.ts b/react-icons/io/arrow-return-left.d.ts index b6af1ca1e4..1292aed723 100644 --- a/react-icons/io/arrow-return-left.d.ts +++ b/react-icons/io/arrow-return-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowReturnLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-return-right.d.ts b/react-icons/io/arrow-return-right.d.ts index a25afc5117..61ca0b4889 100644 --- a/react-icons/io/arrow-return-right.d.ts +++ b/react-icons/io/arrow-return-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowReturnRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-a.d.ts b/react-icons/io/arrow-right-a.d.ts index 069b3190e3..d1fcbd04c6 100644 --- a/react-icons/io/arrow-right-a.d.ts +++ b/react-icons/io/arrow-right-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowRightA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-b.d.ts b/react-icons/io/arrow-right-b.d.ts index 30f4d3ffdb..db91720278 100644 --- a/react-icons/io/arrow-right-b.d.ts +++ b/react-icons/io/arrow-right-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowRightB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-right-c.d.ts b/react-icons/io/arrow-right-c.d.ts index 23fd4da1c2..7688a7759c 100644 --- a/react-icons/io/arrow-right-c.d.ts +++ b/react-icons/io/arrow-right-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowRightC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-shrink.d.ts b/react-icons/io/arrow-shrink.d.ts index bd96dfc102..7b36eb34e8 100644 --- a/react-icons/io/arrow-shrink.d.ts +++ b/react-icons/io/arrow-shrink.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowShrink extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-swap.d.ts b/react-icons/io/arrow-swap.d.ts index 2f2c71d0ad..884fdef163 100644 --- a/react-icons/io/arrow-swap.d.ts +++ b/react-icons/io/arrow-swap.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowSwap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-a.d.ts b/react-icons/io/arrow-up-a.d.ts index 3edd4915d4..1701b1adf8 100644 --- a/react-icons/io/arrow-up-a.d.ts +++ b/react-icons/io/arrow-up-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowUpA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-b.d.ts b/react-icons/io/arrow-up-b.d.ts index ddf288dcfc..f82ef0449e 100644 --- a/react-icons/io/arrow-up-b.d.ts +++ b/react-icons/io/arrow-up-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowUpB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/arrow-up-c.d.ts b/react-icons/io/arrow-up-c.d.ts index 24baab9e4d..c3c6141f69 100644 --- a/react-icons/io/arrow-up-c.d.ts +++ b/react-icons/io/arrow-up-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoArrowUpC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/asterisk.d.ts b/react-icons/io/asterisk.d.ts index d6d7812590..2637671f5e 100644 --- a/react-icons/io/asterisk.d.ts +++ b/react-icons/io/asterisk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAsterisk extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/at.d.ts b/react-icons/io/at.d.ts index 0f529669e1..9d9e2dc890 100644 --- a/react-icons/io/at.d.ts +++ b/react-icons/io/at.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/backspace-outline.d.ts b/react-icons/io/backspace-outline.d.ts index c8dc87e35d..71845373f2 100644 --- a/react-icons/io/backspace-outline.d.ts +++ b/react-icons/io/backspace-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBackspaceOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/backspace.d.ts b/react-icons/io/backspace.d.ts index dee0a1a0e1..2c86fd5a91 100644 --- a/react-icons/io/backspace.d.ts +++ b/react-icons/io/backspace.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bag.d.ts b/react-icons/io/bag.d.ts index d7c6a70f34..aea2eabbec 100644 --- a/react-icons/io/bag.d.ts +++ b/react-icons/io/bag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-charging.d.ts b/react-icons/io/battery-charging.d.ts index 7bec82b21a..1a90d052d7 100644 --- a/react-icons/io/battery-charging.d.ts +++ b/react-icons/io/battery-charging.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBatteryCharging extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-empty.d.ts b/react-icons/io/battery-empty.d.ts index 399c37b871..24a3047bba 100644 --- a/react-icons/io/battery-empty.d.ts +++ b/react-icons/io/battery-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBatteryEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-full.d.ts b/react-icons/io/battery-full.d.ts index 8f47508e40..540613a25d 100644 --- a/react-icons/io/battery-full.d.ts +++ b/react-icons/io/battery-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-half.d.ts b/react-icons/io/battery-half.d.ts index b059376e1a..3f673cd1c2 100644 --- a/react-icons/io/battery-half.d.ts +++ b/react-icons/io/battery-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBatteryHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/battery-low.d.ts b/react-icons/io/battery-low.d.ts index e354f3f94c..f028be5691 100644 --- a/react-icons/io/battery-low.d.ts +++ b/react-icons/io/battery-low.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBatteryLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/beaker.d.ts b/react-icons/io/beaker.d.ts index f2a480bc1b..4eeac4da8d 100644 --- a/react-icons/io/beaker.d.ts +++ b/react-icons/io/beaker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/beer.d.ts b/react-icons/io/beer.d.ts index 36a176f79f..d40ef6efb8 100644 --- a/react-icons/io/beer.d.ts +++ b/react-icons/io/beer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bluetooth.d.ts b/react-icons/io/bluetooth.d.ts index 02ff26a4f0..7ed9f9d82b 100644 --- a/react-icons/io/bluetooth.d.ts +++ b/react-icons/io/bluetooth.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bonfire.d.ts b/react-icons/io/bonfire.d.ts index b2f0e0cdc4..7077e26394 100644 --- a/react-icons/io/bonfire.d.ts +++ b/react-icons/io/bonfire.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBonfire extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bookmark.d.ts b/react-icons/io/bookmark.d.ts index 9705b6f86b..ed827430c7 100644 --- a/react-icons/io/bookmark.d.ts +++ b/react-icons/io/bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bowtie.d.ts b/react-icons/io/bowtie.d.ts index db6a2b50c1..501b273437 100644 --- a/react-icons/io/bowtie.d.ts +++ b/react-icons/io/bowtie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBowtie extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/briefcase.d.ts b/react-icons/io/briefcase.d.ts index 726556b2c4..9c6eb1905d 100644 --- a/react-icons/io/briefcase.d.ts +++ b/react-icons/io/briefcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/bug.d.ts b/react-icons/io/bug.d.ts index 582bb196b4..4b17f5983f 100644 --- a/react-icons/io/bug.d.ts +++ b/react-icons/io/bug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoBug extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/calculator.d.ts b/react-icons/io/calculator.d.ts index 55bdb52c59..7558922b1c 100644 --- a/react-icons/io/calculator.d.ts +++ b/react-icons/io/calculator.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/calendar.d.ts b/react-icons/io/calendar.d.ts index e87c6b4705..5107896105 100644 --- a/react-icons/io/calendar.d.ts +++ b/react-icons/io/calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/camera.d.ts b/react-icons/io/camera.d.ts index b8092ca087..e0a13b4545 100644 --- a/react-icons/io/camera.d.ts +++ b/react-icons/io/camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/card.d.ts b/react-icons/io/card.d.ts index 3222ae3c43..a4570c4982 100644 --- a/react-icons/io/card.d.ts +++ b/react-icons/io/card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cash.d.ts b/react-icons/io/cash.d.ts index 7bd4da34ee..7ec79b6503 100644 --- a/react-icons/io/cash.d.ts +++ b/react-icons/io/cash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbox-working.d.ts b/react-icons/io/chatbox-working.d.ts index e3ff38d29d..3fa1b09802 100644 --- a/react-icons/io/chatbox-working.d.ts +++ b/react-icons/io/chatbox-working.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatboxWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbox.d.ts b/react-icons/io/chatbox.d.ts index c900e72a12..b695029821 100644 --- a/react-icons/io/chatbox.d.ts +++ b/react-icons/io/chatbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatboxes.d.ts b/react-icons/io/chatboxes.d.ts index 9bd61d2b56..a8423c8926 100644 --- a/react-icons/io/chatboxes.d.ts +++ b/react-icons/io/chatboxes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatboxes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubble-working.d.ts b/react-icons/io/chatbubble-working.d.ts index 11bbc83f49..fbc3020185 100644 --- a/react-icons/io/chatbubble-working.d.ts +++ b/react-icons/io/chatbubble-working.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatbubbleWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubble.d.ts b/react-icons/io/chatbubble.d.ts index f38f78bf7d..cab891cbca 100644 --- a/react-icons/io/chatbubble.d.ts +++ b/react-icons/io/chatbubble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatbubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chatbubbles.d.ts b/react-icons/io/chatbubbles.d.ts index e4620f3ae5..1e8d6e3e8b 100644 --- a/react-icons/io/chatbubbles.d.ts +++ b/react-icons/io/chatbubbles.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChatbubbles extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark-circled.d.ts b/react-icons/io/checkmark-circled.d.ts index 545c5dc316..763a394628 100644 --- a/react-icons/io/checkmark-circled.d.ts +++ b/react-icons/io/checkmark-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCheckmarkCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark-round.d.ts b/react-icons/io/checkmark-round.d.ts index 54b9845bc8..443b8ed212 100644 --- a/react-icons/io/checkmark-round.d.ts +++ b/react-icons/io/checkmark-round.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCheckmarkRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/checkmark.d.ts b/react-icons/io/checkmark.d.ts index 58a4235b5e..b9f92f7c0e 100644 --- a/react-icons/io/checkmark.d.ts +++ b/react-icons/io/checkmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCheckmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-down.d.ts b/react-icons/io/chevron-down.d.ts index 5fa87ad42a..0afcc5a2e0 100644 --- a/react-icons/io/chevron-down.d.ts +++ b/react-icons/io/chevron-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChevronDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-left.d.ts b/react-icons/io/chevron-left.d.ts index f8d29748fb..dfd4817933 100644 --- a/react-icons/io/chevron-left.d.ts +++ b/react-icons/io/chevron-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-right.d.ts b/react-icons/io/chevron-right.d.ts index 3d127240f6..5d852f0276 100644 --- a/react-icons/io/chevron-right.d.ts +++ b/react-icons/io/chevron-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/chevron-up.d.ts b/react-icons/io/chevron-up.d.ts index 37958eb35a..ab5124cf7e 100644 --- a/react-icons/io/chevron-up.d.ts +++ b/react-icons/io/chevron-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoChevronUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/clipboard.d.ts b/react-icons/io/clipboard.d.ts index 215eb099e3..037abe5bd3 100644 --- a/react-icons/io/clipboard.d.ts +++ b/react-icons/io/clipboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/clock.d.ts b/react-icons/io/clock.d.ts index c0da4be925..615a54fad3 100644 --- a/react-icons/io/clock.d.ts +++ b/react-icons/io/clock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close-circled.d.ts b/react-icons/io/close-circled.d.ts index 8abb4b2530..2f762ace06 100644 --- a/react-icons/io/close-circled.d.ts +++ b/react-icons/io/close-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCloseCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close-round.d.ts b/react-icons/io/close-round.d.ts index b8fb0387ff..42fbc62ba6 100644 --- a/react-icons/io/close-round.d.ts +++ b/react-icons/io/close-round.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCloseRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/close.d.ts b/react-icons/io/close.d.ts index a3ee6bcb51..6c886d54b2 100644 --- a/react-icons/io/close.d.ts +++ b/react-icons/io/close.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/closed-captioning.d.ts b/react-icons/io/closed-captioning.d.ts index 89b555c8ae..351766d110 100644 --- a/react-icons/io/closed-captioning.d.ts +++ b/react-icons/io/closed-captioning.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoClosedCaptioning extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cloud.d.ts b/react-icons/io/cloud.d.ts index 62b49dea82..acb72124e7 100644 --- a/react-icons/io/cloud.d.ts +++ b/react-icons/io/cloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code-download.d.ts b/react-icons/io/code-download.d.ts index aaef3255b8..a0a4352891 100644 --- a/react-icons/io/code-download.d.ts +++ b/react-icons/io/code-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCodeDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code-working.d.ts b/react-icons/io/code-working.d.ts index 28d0fd7138..fa6a1b837e 100644 --- a/react-icons/io/code-working.d.ts +++ b/react-icons/io/code-working.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCodeWorking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/code.d.ts b/react-icons/io/code.d.ts index 708bccfde6..87ca1a6933 100644 --- a/react-icons/io/code.d.ts +++ b/react-icons/io/code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/coffee.d.ts b/react-icons/io/coffee.d.ts index f0e8702589..9e4578ece0 100644 --- a/react-icons/io/coffee.d.ts +++ b/react-icons/io/coffee.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/compass.d.ts b/react-icons/io/compass.d.ts index fc5c3e8bda..6ea7598744 100644 --- a/react-icons/io/compass.d.ts +++ b/react-icons/io/compass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/compose.d.ts b/react-icons/io/compose.d.ts index f0b29565b0..3f79bc1c60 100644 --- a/react-icons/io/compose.d.ts +++ b/react-icons/io/compose.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCompose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/connectbars.d.ts b/react-icons/io/connectbars.d.ts index fd8d54de4a..39512ba8a3 100644 --- a/react-icons/io/connectbars.d.ts +++ b/react-icons/io/connectbars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoConnectbars extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/contrast.d.ts b/react-icons/io/contrast.d.ts index 928bda459e..525038a517 100644 --- a/react-icons/io/contrast.d.ts +++ b/react-icons/io/contrast.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoContrast extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/crop.d.ts b/react-icons/io/crop.d.ts index 8979954d33..61e05e3951 100644 --- a/react-icons/io/crop.d.ts +++ b/react-icons/io/crop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/cube.d.ts b/react-icons/io/cube.d.ts index 3e058d833a..5dcbca4930 100644 --- a/react-icons/io/cube.d.ts +++ b/react-icons/io/cube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoCube extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/disc.d.ts b/react-icons/io/disc.d.ts index ae0002dd6e..eee0510388 100644 --- a/react-icons/io/disc.d.ts +++ b/react-icons/io/disc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoDisc extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/document-text.d.ts b/react-icons/io/document-text.d.ts index 9e0914a471..9c1c4f519c 100644 --- a/react-icons/io/document-text.d.ts +++ b/react-icons/io/document-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoDocumentText extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/document.d.ts b/react-icons/io/document.d.ts index 143e60dfc4..d1a734222a 100644 --- a/react-icons/io/document.d.ts +++ b/react-icons/io/document.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/drag.d.ts b/react-icons/io/drag.d.ts index 99a34947ac..ce65a1c477 100644 --- a/react-icons/io/drag.d.ts +++ b/react-icons/io/drag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoDrag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/earth.d.ts b/react-icons/io/earth.d.ts index b518edd828..a6a7303666 100644 --- a/react-icons/io/earth.d.ts +++ b/react-icons/io/earth.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEarth extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/easel.d.ts b/react-icons/io/easel.d.ts index f36855e74d..eefb014e3f 100644 --- a/react-icons/io/easel.d.ts +++ b/react-icons/io/easel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEasel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/edit.d.ts b/react-icons/io/edit.d.ts index 8868ebddfd..37e99cbddc 100644 --- a/react-icons/io/edit.d.ts +++ b/react-icons/io/edit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/egg.d.ts b/react-icons/io/egg.d.ts index e037ec6695..bdd8b5104a 100644 --- a/react-icons/io/egg.d.ts +++ b/react-icons/io/egg.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEgg extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eject.d.ts b/react-icons/io/eject.d.ts index 5352cfaab7..fd2423ffa2 100644 --- a/react-icons/io/eject.d.ts +++ b/react-icons/io/eject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/email-unread.d.ts b/react-icons/io/email-unread.d.ts index d76ddc77a8..8cb797ee9b 100644 --- a/react-icons/io/email-unread.d.ts +++ b/react-icons/io/email-unread.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEmailUnread extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/email.d.ts b/react-icons/io/email.d.ts index bae7c21977..6adf29e881 100644 --- a/react-icons/io/email.d.ts +++ b/react-icons/io/email.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/erlenmeyer-flask-bubbles.d.ts b/react-icons/io/erlenmeyer-flask-bubbles.d.ts index 0e14bb61b7..03be0a605c 100644 --- a/react-icons/io/erlenmeyer-flask-bubbles.d.ts +++ b/react-icons/io/erlenmeyer-flask-bubbles.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoErlenmeyerFlaskBubbles extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/erlenmeyer-flask.d.ts b/react-icons/io/erlenmeyer-flask.d.ts index e6d115470c..1b80374814 100644 --- a/react-icons/io/erlenmeyer-flask.d.ts +++ b/react-icons/io/erlenmeyer-flask.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoErlenmeyerFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eye-disabled.d.ts b/react-icons/io/eye-disabled.d.ts index dccba3f98d..6d6303f36d 100644 --- a/react-icons/io/eye-disabled.d.ts +++ b/react-icons/io/eye-disabled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEyeDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/eye.d.ts b/react-icons/io/eye.d.ts index ecd639a2e9..46d18eadae 100644 --- a/react-icons/io/eye.d.ts +++ b/react-icons/io/eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/female.d.ts b/react-icons/io/female.d.ts index cb4f74e804..aa90b5787d 100644 --- a/react-icons/io/female.d.ts +++ b/react-icons/io/female.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFemale extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/filing.d.ts b/react-icons/io/filing.d.ts index 1d23754e3d..ad1e2b3bd4 100644 --- a/react-icons/io/filing.d.ts +++ b/react-icons/io/filing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFiling extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/film-marker.d.ts b/react-icons/io/film-marker.d.ts index 0a7028d46d..fccde618e9 100644 --- a/react-icons/io/film-marker.d.ts +++ b/react-icons/io/film-marker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFilmMarker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fireball.d.ts b/react-icons/io/fireball.d.ts index 4d05bb27d9..3975ebe29c 100644 --- a/react-icons/io/fireball.d.ts +++ b/react-icons/io/fireball.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFireball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flag.d.ts b/react-icons/io/flag.d.ts index 48cd7635c8..9d45966d3a 100644 --- a/react-icons/io/flag.d.ts +++ b/react-icons/io/flag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flame.d.ts b/react-icons/io/flame.d.ts index 0f826a74c5..6d5727abcd 100644 --- a/react-icons/io/flame.d.ts +++ b/react-icons/io/flame.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flash-off.d.ts b/react-icons/io/flash-off.d.ts index 060b72368a..f724d26993 100644 --- a/react-icons/io/flash-off.d.ts +++ b/react-icons/io/flash-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFlashOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/flash.d.ts b/react-icons/io/flash.d.ts index 1bbfde2db9..88179ee38a 100644 --- a/react-icons/io/flash.d.ts +++ b/react-icons/io/flash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/folder.d.ts b/react-icons/io/folder.d.ts index b6107a96a7..54f03251fd 100644 --- a/react-icons/io/folder.d.ts +++ b/react-icons/io/folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fork-repo.d.ts b/react-icons/io/fork-repo.d.ts index d45323575e..da8ff131fa 100644 --- a/react-icons/io/fork-repo.d.ts +++ b/react-icons/io/fork-repo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoForkRepo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/fork.d.ts b/react-icons/io/fork.d.ts index 4ca36cbfc8..87a8114732 100644 --- a/react-icons/io/fork.d.ts +++ b/react-icons/io/fork.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFork extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/forward.d.ts b/react-icons/io/forward.d.ts index 7ded6be006..b08f7ad93f 100644 --- a/react-icons/io/forward.d.ts +++ b/react-icons/io/forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/funnel.d.ts b/react-icons/io/funnel.d.ts index c0fe6368d4..4b7ec5c4e6 100644 --- a/react-icons/io/funnel.d.ts +++ b/react-icons/io/funnel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoFunnel extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/gear-a.d.ts b/react-icons/io/gear-a.d.ts index 2a63ea948a..2dac676b52 100644 --- a/react-icons/io/gear-a.d.ts +++ b/react-icons/io/gear-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoGearA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/gear-b.d.ts b/react-icons/io/gear-b.d.ts index c76bd647e7..52096c55e9 100644 --- a/react-icons/io/gear-b.d.ts +++ b/react-icons/io/gear-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoGearB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/grid.d.ts b/react-icons/io/grid.d.ts index 2f46673e4a..2f3c9e5007 100644 --- a/react-icons/io/grid.d.ts +++ b/react-icons/io/grid.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoGrid extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/hammer.d.ts b/react-icons/io/hammer.d.ts index f91f4b5f8b..0f26ad0af4 100644 --- a/react-icons/io/hammer.d.ts +++ b/react-icons/io/hammer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHammer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/happy-outline.d.ts b/react-icons/io/happy-outline.d.ts index cd7b48f32e..2706ce0cdf 100644 --- a/react-icons/io/happy-outline.d.ts +++ b/react-icons/io/happy-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHappyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/happy.d.ts b/react-icons/io/happy.d.ts index 40cd43fa16..45cf2f9e61 100644 --- a/react-icons/io/happy.d.ts +++ b/react-icons/io/happy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHappy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/headphone.d.ts b/react-icons/io/headphone.d.ts index 286c10772a..cfd1d1dc10 100644 --- a/react-icons/io/headphone.d.ts +++ b/react-icons/io/headphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHeadphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/heart-broken.d.ts b/react-icons/io/heart-broken.d.ts index 2c83b5735e..aea0a10b20 100644 --- a/react-icons/io/heart-broken.d.ts +++ b/react-icons/io/heart-broken.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHeartBroken extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/heart.d.ts b/react-icons/io/heart.d.ts index 61113e789a..b54984abcb 100644 --- a/react-icons/io/heart.d.ts +++ b/react-icons/io/heart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help-buoy.d.ts b/react-icons/io/help-buoy.d.ts index 8d147f0297..556708723f 100644 --- a/react-icons/io/help-buoy.d.ts +++ b/react-icons/io/help-buoy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHelpBuoy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help-circled.d.ts b/react-icons/io/help-circled.d.ts index 4925dd1bc1..82d6ec774a 100644 --- a/react-icons/io/help-circled.d.ts +++ b/react-icons/io/help-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHelpCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/help.d.ts b/react-icons/io/help.d.ts index 5a2b0e72e7..3d5cf89264 100644 --- a/react-icons/io/help.d.ts +++ b/react-icons/io/help.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/home.d.ts b/react-icons/io/home.d.ts index 6e195bfd26..100ac3ffcf 100644 --- a/react-icons/io/home.d.ts +++ b/react-icons/io/home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/icecream.d.ts b/react-icons/io/icecream.d.ts index 9d209cb184..4bd18bbd59 100644 --- a/react-icons/io/icecream.d.ts +++ b/react-icons/io/icecream.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIcecream extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/image.d.ts b/react-icons/io/image.d.ts index 0e7743c010..de825af034 100644 --- a/react-icons/io/image.d.ts +++ b/react-icons/io/image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/images.d.ts b/react-icons/io/images.d.ts index b0718cc542..6e8ecdd358 100644 --- a/react-icons/io/images.d.ts +++ b/react-icons/io/images.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoImages extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/index.d.ts b/react-icons/io/index.d.ts index 132c43e88c..a1e2fc97c9 100644 --- a/react-icons/io/index.d.ts +++ b/react-icons/io/index.d.ts @@ -1,3 +1,4 @@ +// TypeScript Version: 2.1 import _IoAlertCircled from "./alert-circled"; import _IoAlert from "./alert"; import _IoAndroidAddCircle from "./android-add-circle"; diff --git a/react-icons/io/informatcircled.d.ts b/react-icons/io/informatcircled.d.ts index ab04338a8f..5eb52f803a 100644 --- a/react-icons/io/informatcircled.d.ts +++ b/react-icons/io/informatcircled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoInformatcircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/information.d.ts b/react-icons/io/information.d.ts index b545d42318..fa466c2745 100644 --- a/react-icons/io/information.d.ts +++ b/react-icons/io/information.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ionic.d.ts b/react-icons/io/ionic.d.ts index 0b2dc2cfca..c3f2af80c8 100644 --- a/react-icons/io/ionic.d.ts +++ b/react-icons/io/ionic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIonic extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-alarm-outline.d.ts b/react-icons/io/ios-alarm-outline.d.ts index 05381f223e..32bc2b87e7 100644 --- a/react-icons/io/ios-alarm-outline.d.ts +++ b/react-icons/io/ios-alarm-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAlarmOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-alarm.d.ts b/react-icons/io/ios-alarm.d.ts index 7d14bf53e6..250ec1ca66 100644 --- a/react-icons/io/ios-alarm.d.ts +++ b/react-icons/io/ios-alarm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-albums-outline.d.ts b/react-icons/io/ios-albums-outline.d.ts index fc303428bf..2d5f7f6338 100644 --- a/react-icons/io/ios-albums-outline.d.ts +++ b/react-icons/io/ios-albums-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAlbumsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-albums.d.ts b/react-icons/io/ios-albums.d.ts index 2c4d125c6a..7af11ddf4a 100644 --- a/react-icons/io/ios-albums.d.ts +++ b/react-icons/io/ios-albums.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAlbums extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-americanfootball-outline.d.ts b/react-icons/io/ios-americanfootball-outline.d.ts index 6497f04a7b..c699fee71e 100644 --- a/react-icons/io/ios-americanfootball-outline.d.ts +++ b/react-icons/io/ios-americanfootball-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAmericanfootballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-americanfootball.d.ts b/react-icons/io/ios-americanfootball.d.ts index db75f86008..f77e933b29 100644 --- a/react-icons/io/ios-americanfootball.d.ts +++ b/react-icons/io/ios-americanfootball.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAmericanfootball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-analytics-outline.d.ts b/react-icons/io/ios-analytics-outline.d.ts index 6838f1fdf0..7a2f06005c 100644 --- a/react-icons/io/ios-analytics-outline.d.ts +++ b/react-icons/io/ios-analytics-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAnalyticsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-analytics.d.ts b/react-icons/io/ios-analytics.d.ts index 38da48e2df..8419a20108 100644 --- a/react-icons/io/ios-analytics.d.ts +++ b/react-icons/io/ios-analytics.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAnalytics extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-back.d.ts b/react-icons/io/ios-arrow-back.d.ts index b8db810c70..319149c1ee 100644 --- a/react-icons/io/ios-arrow-back.d.ts +++ b/react-icons/io/ios-arrow-back.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-down.d.ts b/react-icons/io/ios-arrow-down.d.ts index 35688809ae..13da321d62 100644 --- a/react-icons/io/ios-arrow-down.d.ts +++ b/react-icons/io/ios-arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-forward.d.ts b/react-icons/io/ios-arrow-forward.d.ts index 001d6ad101..be2204d582 100644 --- a/react-icons/io/ios-arrow-forward.d.ts +++ b/react-icons/io/ios-arrow-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-left.d.ts b/react-icons/io/ios-arrow-left.d.ts index 5af68f52f9..8791e6ca77 100644 --- a/react-icons/io/ios-arrow-left.d.ts +++ b/react-icons/io/ios-arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-right.d.ts b/react-icons/io/ios-arrow-right.d.ts index 874578e411..d791d8188d 100644 --- a/react-icons/io/ios-arrow-right.d.ts +++ b/react-icons/io/ios-arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-down.d.ts b/react-icons/io/ios-arrow-thin-down.d.ts index 2743a58fc9..7b0b4a4045 100644 --- a/react-icons/io/ios-arrow-thin-down.d.ts +++ b/react-icons/io/ios-arrow-thin-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowThinDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-left.d.ts b/react-icons/io/ios-arrow-thin-left.d.ts index e1dceedf83..4ecd0873bd 100644 --- a/react-icons/io/ios-arrow-thin-left.d.ts +++ b/react-icons/io/ios-arrow-thin-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowThinLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-right.d.ts b/react-icons/io/ios-arrow-thin-right.d.ts index 15bdb17478..71f9c6a3a8 100644 --- a/react-icons/io/ios-arrow-thin-right.d.ts +++ b/react-icons/io/ios-arrow-thin-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowThinRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-thin-up.d.ts b/react-icons/io/ios-arrow-thin-up.d.ts index b9c508a30d..aea76ffe6f 100644 --- a/react-icons/io/ios-arrow-thin-up.d.ts +++ b/react-icons/io/ios-arrow-thin-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowThinUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-arrow-up.d.ts b/react-icons/io/ios-arrow-up.d.ts index 8a96c65dd3..dfff322fe4 100644 --- a/react-icons/io/ios-arrow-up.d.ts +++ b/react-icons/io/ios-arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-at-outline.d.ts b/react-icons/io/ios-at-outline.d.ts index eddc80eaad..241907680e 100644 --- a/react-icons/io/ios-at-outline.d.ts +++ b/react-icons/io/ios-at-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAtOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-at.d.ts b/react-icons/io/ios-at.d.ts index 3a78d364cc..631080b229 100644 --- a/react-icons/io/ios-at.d.ts +++ b/react-icons/io/ios-at.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-barcode-outline.d.ts b/react-icons/io/ios-barcode-outline.d.ts index 2cea5d81ce..18108c5fd0 100644 --- a/react-icons/io/ios-barcode-outline.d.ts +++ b/react-icons/io/ios-barcode-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBarcodeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-barcode.d.ts b/react-icons/io/ios-barcode.d.ts index 4993f1c958..8dc9f74027 100644 --- a/react-icons/io/ios-barcode.d.ts +++ b/react-icons/io/ios-barcode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBarcode extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-baseball-outline.d.ts b/react-icons/io/ios-baseball-outline.d.ts index eb50d2a9b1..7f4e7df719 100644 --- a/react-icons/io/ios-baseball-outline.d.ts +++ b/react-icons/io/ios-baseball-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBaseballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-baseball.d.ts b/react-icons/io/ios-baseball.d.ts index f9f477dbd4..141044bb3e 100644 --- a/react-icons/io/ios-baseball.d.ts +++ b/react-icons/io/ios-baseball.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBaseball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-basketball-outline.d.ts b/react-icons/io/ios-basketball-outline.d.ts index 27664c74db..684cadee2d 100644 --- a/react-icons/io/ios-basketball-outline.d.ts +++ b/react-icons/io/ios-basketball-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBasketballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-basketball.d.ts b/react-icons/io/ios-basketball.d.ts index 57574ef310..5a5f56a855 100644 --- a/react-icons/io/ios-basketball.d.ts +++ b/react-icons/io/ios-basketball.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBasketball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bell-outline.d.ts b/react-icons/io/ios-bell-outline.d.ts index a90032a31b..96b50fd5bb 100644 --- a/react-icons/io/ios-bell-outline.d.ts +++ b/react-icons/io/ios-bell-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBellOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bell.d.ts b/react-icons/io/ios-bell.d.ts index 20da45c195..d8147f4893 100644 --- a/react-icons/io/ios-bell.d.ts +++ b/react-icons/io/ios-bell.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-body-outline.d.ts b/react-icons/io/ios-body-outline.d.ts index ec29b008a5..3198148cfe 100644 --- a/react-icons/io/ios-body-outline.d.ts +++ b/react-icons/io/ios-body-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBodyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-body.d.ts b/react-icons/io/ios-body.d.ts index 505adb1518..ed0e234129 100644 --- a/react-icons/io/ios-body.d.ts +++ b/react-icons/io/ios-body.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBody extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bolt-outline.d.ts b/react-icons/io/ios-bolt-outline.d.ts index 2e3e26ff63..71c14223a9 100644 --- a/react-icons/io/ios-bolt-outline.d.ts +++ b/react-icons/io/ios-bolt-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBoltOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bolt.d.ts b/react-icons/io/ios-bolt.d.ts index ec1d766f8c..0c217e18ec 100644 --- a/react-icons/io/ios-bolt.d.ts +++ b/react-icons/io/ios-bolt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBolt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-book-outline.d.ts b/react-icons/io/ios-book-outline.d.ts index cc43158fe5..3d66a38d86 100644 --- a/react-icons/io/ios-book-outline.d.ts +++ b/react-icons/io/ios-book-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBookOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-book.d.ts b/react-icons/io/ios-book.d.ts index 93297da3b7..a3c80d6485 100644 --- a/react-icons/io/ios-book.d.ts +++ b/react-icons/io/ios-book.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bookmarks-outline.d.ts b/react-icons/io/ios-bookmarks-outline.d.ts index 92c45a79f1..43964ee899 100644 --- a/react-icons/io/ios-bookmarks-outline.d.ts +++ b/react-icons/io/ios-bookmarks-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBookmarksOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-bookmarks.d.ts b/react-icons/io/ios-bookmarks.d.ts index 8a146b468d..b62ed6aecd 100644 --- a/react-icons/io/ios-bookmarks.d.ts +++ b/react-icons/io/ios-bookmarks.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBookmarks extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-box-outline.d.ts b/react-icons/io/ios-box-outline.d.ts index d50a27e0ec..f0c6696e37 100644 --- a/react-icons/io/ios-box-outline.d.ts +++ b/react-icons/io/ios-box-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBoxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-box.d.ts b/react-icons/io/ios-box.d.ts index 298caebbf0..8efdc3accd 100644 --- a/react-icons/io/ios-box.d.ts +++ b/react-icons/io/ios-box.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-briefcase-outline.d.ts b/react-icons/io/ios-briefcase-outline.d.ts index e125419faa..80596543fb 100644 --- a/react-icons/io/ios-briefcase-outline.d.ts +++ b/react-icons/io/ios-briefcase-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBriefcaseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-briefcase.d.ts b/react-icons/io/ios-briefcase.d.ts index 906dbcdc06..843ef382d5 100644 --- a/react-icons/io/ios-briefcase.d.ts +++ b/react-icons/io/ios-briefcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-browsers-outline.d.ts b/react-icons/io/ios-browsers-outline.d.ts index 982e88d876..3342eee229 100644 --- a/react-icons/io/ios-browsers-outline.d.ts +++ b/react-icons/io/ios-browsers-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBrowsersOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-browsers.d.ts b/react-icons/io/ios-browsers.d.ts index a596fe517b..5355c8e902 100644 --- a/react-icons/io/ios-browsers.d.ts +++ b/react-icons/io/ios-browsers.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosBrowsers extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calculator-outline.d.ts b/react-icons/io/ios-calculator-outline.d.ts index 517dd1d7a9..e5322b6caa 100644 --- a/react-icons/io/ios-calculator-outline.d.ts +++ b/react-icons/io/ios-calculator-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCalculatorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calculator.d.ts b/react-icons/io/ios-calculator.d.ts index 8acf9b67ec..f67e339acd 100644 --- a/react-icons/io/ios-calculator.d.ts +++ b/react-icons/io/ios-calculator.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calendar-outline.d.ts b/react-icons/io/ios-calendar-outline.d.ts index 321a1a81b6..84513df4ee 100644 --- a/react-icons/io/ios-calendar-outline.d.ts +++ b/react-icons/io/ios-calendar-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCalendarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-calendar.d.ts b/react-icons/io/ios-calendar.d.ts index 28a5c2b6a5..dc5db9e76e 100644 --- a/react-icons/io/ios-calendar.d.ts +++ b/react-icons/io/ios-calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-camera-outline.d.ts b/react-icons/io/ios-camera-outline.d.ts index 679029959e..c456832a67 100644 --- a/react-icons/io/ios-camera-outline.d.ts +++ b/react-icons/io/ios-camera-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-camera.d.ts b/react-icons/io/ios-camera.d.ts index 00819a7187..003c44f6c8 100644 --- a/react-icons/io/ios-camera.d.ts +++ b/react-icons/io/ios-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cart-outline.d.ts b/react-icons/io/ios-cart-outline.d.ts index 2ba771fce8..4ccb98f9d5 100644 --- a/react-icons/io/ios-cart-outline.d.ts +++ b/react-icons/io/ios-cart-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cart.d.ts b/react-icons/io/ios-cart.d.ts index 24a1805236..1bfefa0e80 100644 --- a/react-icons/io/ios-cart.d.ts +++ b/react-icons/io/ios-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatboxes-outline.d.ts b/react-icons/io/ios-chatboxes-outline.d.ts index 204b3f4e60..4183cd026e 100644 --- a/react-icons/io/ios-chatboxes-outline.d.ts +++ b/react-icons/io/ios-chatboxes-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosChatboxesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatboxes.d.ts b/react-icons/io/ios-chatboxes.d.ts index aac92357df..2d3e2faee3 100644 --- a/react-icons/io/ios-chatboxes.d.ts +++ b/react-icons/io/ios-chatboxes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosChatboxes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatbubble-outline.d.ts b/react-icons/io/ios-chatbubble-outline.d.ts index 9d89dc48dc..f9e0153997 100644 --- a/react-icons/io/ios-chatbubble-outline.d.ts +++ b/react-icons/io/ios-chatbubble-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosChatbubbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-chatbubble.d.ts b/react-icons/io/ios-chatbubble.d.ts index e83268b99f..d4bdb74ca2 100644 --- a/react-icons/io/ios-chatbubble.d.ts +++ b/react-icons/io/ios-chatbubble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosChatbubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark-empty.d.ts b/react-icons/io/ios-checkmark-empty.d.ts index 3da789bc4f..f57fd4d74d 100644 --- a/react-icons/io/ios-checkmark-empty.d.ts +++ b/react-icons/io/ios-checkmark-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCheckmarkEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark-outline.d.ts b/react-icons/io/ios-checkmark-outline.d.ts index 2c34d62fea..f6841d0672 100644 --- a/react-icons/io/ios-checkmark-outline.d.ts +++ b/react-icons/io/ios-checkmark-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCheckmarkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-checkmark.d.ts b/react-icons/io/ios-checkmark.d.ts index 9f2d14ef02..556e39f5af 100644 --- a/react-icons/io/ios-checkmark.d.ts +++ b/react-icons/io/ios-checkmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCheckmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-circle-filled.d.ts b/react-icons/io/ios-circle-filled.d.ts index 58aea8cd6f..867f01cdc4 100644 --- a/react-icons/io/ios-circle-filled.d.ts +++ b/react-icons/io/ios-circle-filled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-circle-outline.d.ts b/react-icons/io/ios-circle-outline.d.ts index 747776ec11..92e64dc90a 100644 --- a/react-icons/io/ios-circle-outline.d.ts +++ b/react-icons/io/ios-circle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-clock-outline.d.ts b/react-icons/io/ios-clock-outline.d.ts index 58944da63d..bfcb14dcc3 100644 --- a/react-icons/io/ios-clock-outline.d.ts +++ b/react-icons/io/ios-clock-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosClockOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-clock.d.ts b/react-icons/io/ios-clock.d.ts index cb35aa0c6c..59891a7d57 100644 --- a/react-icons/io/ios-clock.d.ts +++ b/react-icons/io/ios-clock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosClock extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close-empty.d.ts b/react-icons/io/ios-close-empty.d.ts index 6f3bfd0f69..5672c62660 100644 --- a/react-icons/io/ios-close-empty.d.ts +++ b/react-icons/io/ios-close-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloseEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close-outline.d.ts b/react-icons/io/ios-close-outline.d.ts index 9c8c8a02d4..4eed17342b 100644 --- a/react-icons/io/ios-close-outline.d.ts +++ b/react-icons/io/ios-close-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-close.d.ts b/react-icons/io/ios-close.d.ts index 5b1c27bbb1..a36698c53b 100644 --- a/react-icons/io/ios-close.d.ts +++ b/react-icons/io/ios-close.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-download-outline.d.ts b/react-icons/io/ios-cloud-download-outline.d.ts index 40309c4c82..d621da385c 100644 --- a/react-icons/io/ios-cloud-download-outline.d.ts +++ b/react-icons/io/ios-cloud-download-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-download.d.ts b/react-icons/io/ios-cloud-download.d.ts index d5ab052f1e..0d02d20441 100644 --- a/react-icons/io/ios-cloud-download.d.ts +++ b/react-icons/io/ios-cloud-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-outline.d.ts b/react-icons/io/ios-cloud-outline.d.ts index a38d2089ba..7ccabf8882 100644 --- a/react-icons/io/ios-cloud-outline.d.ts +++ b/react-icons/io/ios-cloud-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-upload-outline.d.ts b/react-icons/io/ios-cloud-upload-outline.d.ts index d790da589f..a440813b9f 100644 --- a/react-icons/io/ios-cloud-upload-outline.d.ts +++ b/react-icons/io/ios-cloud-upload-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud-upload.d.ts b/react-icons/io/ios-cloud-upload.d.ts index b16a4f635d..78179c4af6 100644 --- a/react-icons/io/ios-cloud-upload.d.ts +++ b/react-icons/io/ios-cloud-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloud.d.ts b/react-icons/io/ios-cloud.d.ts index 69a4080782..674e343afb 100644 --- a/react-icons/io/ios-cloud.d.ts +++ b/react-icons/io/ios-cloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-night-outline.d.ts b/react-icons/io/ios-cloudy-night-outline.d.ts index 536d6799ef..6c7b75bbfd 100644 --- a/react-icons/io/ios-cloudy-night-outline.d.ts +++ b/react-icons/io/ios-cloudy-night-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudyNightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-night.d.ts b/react-icons/io/ios-cloudy-night.d.ts index c8cf2c6d41..e65cea744e 100644 --- a/react-icons/io/ios-cloudy-night.d.ts +++ b/react-icons/io/ios-cloudy-night.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudyNight extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy-outline.d.ts b/react-icons/io/ios-cloudy-outline.d.ts index 6131e82d29..207b36a97e 100644 --- a/react-icons/io/ios-cloudy-outline.d.ts +++ b/react-icons/io/ios-cloudy-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cloudy.d.ts b/react-icons/io/ios-cloudy.d.ts index 2dcc50caf8..e99a4027b6 100644 --- a/react-icons/io/ios-cloudy.d.ts +++ b/react-icons/io/ios-cloudy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cog-outline.d.ts b/react-icons/io/ios-cog-outline.d.ts index 54aad4c708..b637eee9ee 100644 --- a/react-icons/io/ios-cog-outline.d.ts +++ b/react-icons/io/ios-cog-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCogOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-cog.d.ts b/react-icons/io/ios-cog.d.ts index d99f7650a6..b60d6cb010 100644 --- a/react-icons/io/ios-cog.d.ts +++ b/react-icons/io/ios-cog.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-filter-outline.d.ts b/react-icons/io/ios-color-filter-outline.d.ts index 95f79b04cc..caf59e396c 100644 --- a/react-icons/io/ios-color-filter-outline.d.ts +++ b/react-icons/io/ios-color-filter-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosColorFilterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-filter.d.ts b/react-icons/io/ios-color-filter.d.ts index dd84083fe3..fcf21b4f00 100644 --- a/react-icons/io/ios-color-filter.d.ts +++ b/react-icons/io/ios-color-filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosColorFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-wand-outline.d.ts b/react-icons/io/ios-color-wand-outline.d.ts index b48fc018f0..5073920047 100644 --- a/react-icons/io/ios-color-wand-outline.d.ts +++ b/react-icons/io/ios-color-wand-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosColorWandOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-color-wand.d.ts b/react-icons/io/ios-color-wand.d.ts index c7e07babf6..afc346eab3 100644 --- a/react-icons/io/ios-color-wand.d.ts +++ b/react-icons/io/ios-color-wand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosColorWand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-compose-outline.d.ts b/react-icons/io/ios-compose-outline.d.ts index 48002c8753..8d844fae75 100644 --- a/react-icons/io/ios-compose-outline.d.ts +++ b/react-icons/io/ios-compose-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosComposeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-compose.d.ts b/react-icons/io/ios-compose.d.ts index 9d4c5d0937..0eab04763a 100644 --- a/react-icons/io/ios-compose.d.ts +++ b/react-icons/io/ios-compose.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCompose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-contact-outline.d.ts b/react-icons/io/ios-contact-outline.d.ts index de8e138a39..9977ef0bc6 100644 --- a/react-icons/io/ios-contact-outline.d.ts +++ b/react-icons/io/ios-contact-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosContactOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-contact.d.ts b/react-icons/io/ios-contact.d.ts index 849b2c591c..0f1cdbd21f 100644 --- a/react-icons/io/ios-contact.d.ts +++ b/react-icons/io/ios-contact.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosContact extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-copy-outline.d.ts b/react-icons/io/ios-copy-outline.d.ts index 67d9b4a49a..d4b45597ce 100644 --- a/react-icons/io/ios-copy-outline.d.ts +++ b/react-icons/io/ios-copy-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCopyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-copy.d.ts b/react-icons/io/ios-copy.d.ts index 572eb5a39a..0baa46b61e 100644 --- a/react-icons/io/ios-copy.d.ts +++ b/react-icons/io/ios-copy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-crop-strong.d.ts b/react-icons/io/ios-crop-strong.d.ts index ea42e26dff..7df39f6554 100644 --- a/react-icons/io/ios-crop-strong.d.ts +++ b/react-icons/io/ios-crop-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCropStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-crop.d.ts b/react-icons/io/ios-crop.d.ts index 4926f0f8ac..54c7a51d60 100644 --- a/react-icons/io/ios-crop.d.ts +++ b/react-icons/io/ios-crop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-download-outline.d.ts b/react-icons/io/ios-download-outline.d.ts index 69d65d63ca..1590b035ef 100644 --- a/react-icons/io/ios-download-outline.d.ts +++ b/react-icons/io/ios-download-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-download.d.ts b/react-icons/io/ios-download.d.ts index ab02d0c8cc..65013e1370 100644 --- a/react-icons/io/ios-download.d.ts +++ b/react-icons/io/ios-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-drag.d.ts b/react-icons/io/ios-drag.d.ts index dd0e828393..6375eddd9b 100644 --- a/react-icons/io/ios-drag.d.ts +++ b/react-icons/io/ios-drag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosDrag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-email-outline.d.ts b/react-icons/io/ios-email-outline.d.ts index ce0aa45288..c345aea701 100644 --- a/react-icons/io/ios-email-outline.d.ts +++ b/react-icons/io/ios-email-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosEmailOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-email.d.ts b/react-icons/io/ios-email.d.ts index b103ccf795..e50193742e 100644 --- a/react-icons/io/ios-email.d.ts +++ b/react-icons/io/ios-email.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-eye-outline.d.ts b/react-icons/io/ios-eye-outline.d.ts index e8a4349ed2..5a15f3a491 100644 --- a/react-icons/io/ios-eye-outline.d.ts +++ b/react-icons/io/ios-eye-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosEyeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-eye.d.ts b/react-icons/io/ios-eye.d.ts index 5da7f827b1..7fa55d9ee1 100644 --- a/react-icons/io/ios-eye.d.ts +++ b/react-icons/io/ios-eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-fastforward-outline.d.ts b/react-icons/io/ios-fastforward-outline.d.ts index d5d08f4899..88247ff042 100644 --- a/react-icons/io/ios-fastforward-outline.d.ts +++ b/react-icons/io/ios-fastforward-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFastforwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-fastforward.d.ts b/react-icons/io/ios-fastforward.d.ts index ab73b62f16..8be0ad600a 100644 --- a/react-icons/io/ios-fastforward.d.ts +++ b/react-icons/io/ios-fastforward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFastforward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-filing-outline.d.ts b/react-icons/io/ios-filing-outline.d.ts index 80b2acd33c..086f32f8c6 100644 --- a/react-icons/io/ios-filing-outline.d.ts +++ b/react-icons/io/ios-filing-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFilingOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-filing.d.ts b/react-icons/io/ios-filing.d.ts index 1058760472..c47086cc6b 100644 --- a/react-icons/io/ios-filing.d.ts +++ b/react-icons/io/ios-filing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFiling extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-film-outline.d.ts b/react-icons/io/ios-film-outline.d.ts index 7226b620f5..e36247a8b8 100644 --- a/react-icons/io/ios-film-outline.d.ts +++ b/react-icons/io/ios-film-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFilmOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-film.d.ts b/react-icons/io/ios-film.d.ts index c0a10e39a0..feecf7885e 100644 --- a/react-icons/io/ios-film.d.ts +++ b/react-icons/io/ios-film.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flag-outline.d.ts b/react-icons/io/ios-flag-outline.d.ts index 13720350aa..30a3e49ae2 100644 --- a/react-icons/io/ios-flag-outline.d.ts +++ b/react-icons/io/ios-flag-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flag.d.ts b/react-icons/io/ios-flag.d.ts index 6499a4a08d..e1ebf6063e 100644 --- a/react-icons/io/ios-flag.d.ts +++ b/react-icons/io/ios-flag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flame-outline.d.ts b/react-icons/io/ios-flame-outline.d.ts index d1675cfa6e..95ae9b73f2 100644 --- a/react-icons/io/ios-flame-outline.d.ts +++ b/react-icons/io/ios-flame-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlameOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flame.d.ts b/react-icons/io/ios-flame.d.ts index 267af0f90a..4e14c510da 100644 --- a/react-icons/io/ios-flame.d.ts +++ b/react-icons/io/ios-flame.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlame extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flask-outline.d.ts b/react-icons/io/ios-flask-outline.d.ts index 42127ed381..c985b73245 100644 --- a/react-icons/io/ios-flask-outline.d.ts +++ b/react-icons/io/ios-flask-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlaskOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flask.d.ts b/react-icons/io/ios-flask.d.ts index f8fc4d8a4f..333e2c7c38 100644 --- a/react-icons/io/ios-flask.d.ts +++ b/react-icons/io/ios-flask.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlask extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flower-outline.d.ts b/react-icons/io/ios-flower-outline.d.ts index 9c0a6ae65e..9d12d7a31b 100644 --- a/react-icons/io/ios-flower-outline.d.ts +++ b/react-icons/io/ios-flower-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlowerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-flower.d.ts b/react-icons/io/ios-flower.d.ts index 8fc471cfb2..74690ae894 100644 --- a/react-icons/io/ios-flower.d.ts +++ b/react-icons/io/ios-flower.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFlower extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-folder-outline.d.ts b/react-icons/io/ios-folder-outline.d.ts index c464b8f4ee..1af4d6c23d 100644 --- a/react-icons/io/ios-folder-outline.d.ts +++ b/react-icons/io/ios-folder-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFolderOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-folder.d.ts b/react-icons/io/ios-folder.d.ts index 3a8f749e3c..ea87b89a12 100644 --- a/react-icons/io/ios-folder.d.ts +++ b/react-icons/io/ios-folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-football-outline.d.ts b/react-icons/io/ios-football-outline.d.ts index b2f27eda58..5d3b591da0 100644 --- a/react-icons/io/ios-football-outline.d.ts +++ b/react-icons/io/ios-football-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFootballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-football.d.ts b/react-icons/io/ios-football.d.ts index 44c340fa9d..3bcf5a4207 100644 --- a/react-icons/io/ios-football.d.ts +++ b/react-icons/io/ios-football.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosFootball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-a-outline.d.ts b/react-icons/io/ios-game-controller-a-outline.d.ts index 5c34bf98c3..2aeaf25fce 100644 --- a/react-icons/io/ios-game-controller-a-outline.d.ts +++ b/react-icons/io/ios-game-controller-a-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGameControllerAOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-a.d.ts b/react-icons/io/ios-game-controller-a.d.ts index a16e1acdbf..d90548903b 100644 --- a/react-icons/io/ios-game-controller-a.d.ts +++ b/react-icons/io/ios-game-controller-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGameControllerA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-b-outline.d.ts b/react-icons/io/ios-game-controller-b-outline.d.ts index 6d7ba3f199..8fe06496cf 100644 --- a/react-icons/io/ios-game-controller-b-outline.d.ts +++ b/react-icons/io/ios-game-controller-b-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGameControllerBOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-game-controller-b.d.ts b/react-icons/io/ios-game-controller-b.d.ts index b8e0a78314..d4316a4d73 100644 --- a/react-icons/io/ios-game-controller-b.d.ts +++ b/react-icons/io/ios-game-controller-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGameControllerB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-gear-outline.d.ts b/react-icons/io/ios-gear-outline.d.ts index e71677e17d..d4e58e206f 100644 --- a/react-icons/io/ios-gear-outline.d.ts +++ b/react-icons/io/ios-gear-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGearOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-gear.d.ts b/react-icons/io/ios-gear.d.ts index c6bfdfe064..57d7725ca2 100644 --- a/react-icons/io/ios-gear.d.ts +++ b/react-icons/io/ios-gear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGear extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-glasses-outline.d.ts b/react-icons/io/ios-glasses-outline.d.ts index c8720ada1b..7585c5ef68 100644 --- a/react-icons/io/ios-glasses-outline.d.ts +++ b/react-icons/io/ios-glasses-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGlassesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-glasses.d.ts b/react-icons/io/ios-glasses.d.ts index 82f65e5861..c62ee8f98a 100644 --- a/react-icons/io/ios-glasses.d.ts +++ b/react-icons/io/ios-glasses.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGlasses extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-grid-view-outline.d.ts b/react-icons/io/ios-grid-view-outline.d.ts index 45616dd2ec..a10a8f8681 100644 --- a/react-icons/io/ios-grid-view-outline.d.ts +++ b/react-icons/io/ios-grid-view-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGridViewOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-grid-view.d.ts b/react-icons/io/ios-grid-view.d.ts index 83312ef3b4..c27f0d5bb8 100644 --- a/react-icons/io/ios-grid-view.d.ts +++ b/react-icons/io/ios-grid-view.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosGridView extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-heart-outline.d.ts b/react-icons/io/ios-heart-outline.d.ts index 92408990aa..fa5b6424d2 100644 --- a/react-icons/io/ios-heart-outline.d.ts +++ b/react-icons/io/ios-heart-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHeartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-heart.d.ts b/react-icons/io/ios-heart.d.ts index 18e05aff96..5e6e71d3e9 100644 --- a/react-icons/io/ios-heart.d.ts +++ b/react-icons/io/ios-heart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help-empty.d.ts b/react-icons/io/ios-help-empty.d.ts index 16c764d4c0..50dc1e752f 100644 --- a/react-icons/io/ios-help-empty.d.ts +++ b/react-icons/io/ios-help-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHelpEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help-outline.d.ts b/react-icons/io/ios-help-outline.d.ts index 39d1e63a78..6dd81b57c7 100644 --- a/react-icons/io/ios-help-outline.d.ts +++ b/react-icons/io/ios-help-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHelpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-help.d.ts b/react-icons/io/ios-help.d.ts index 5a20b2f1a5..855f2442fa 100644 --- a/react-icons/io/ios-help.d.ts +++ b/react-icons/io/ios-help.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-home-outline.d.ts b/react-icons/io/ios-home-outline.d.ts index b38bf21a59..129e49b2c0 100644 --- a/react-icons/io/ios-home-outline.d.ts +++ b/react-icons/io/ios-home-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHomeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-home.d.ts b/react-icons/io/ios-home.d.ts index 82608b888e..15ce27100c 100644 --- a/react-icons/io/ios-home.d.ts +++ b/react-icons/io/ios-home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-infinite-outline.d.ts b/react-icons/io/ios-infinite-outline.d.ts index df1eedbea7..0507e691a2 100644 --- a/react-icons/io/ios-infinite-outline.d.ts +++ b/react-icons/io/ios-infinite-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosInfiniteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-infinite.d.ts b/react-icons/io/ios-infinite.d.ts index d529d15667..848fc7c382 100644 --- a/react-icons/io/ios-infinite.d.ts +++ b/react-icons/io/ios-infinite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosInfinite extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-informatempty.d.ts b/react-icons/io/ios-informatempty.d.ts index 83c12d463e..6365bba85c 100644 --- a/react-icons/io/ios-informatempty.d.ts +++ b/react-icons/io/ios-informatempty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosInformatempty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-information.d.ts b/react-icons/io/ios-information.d.ts index 7533781438..593dcb653a 100644 --- a/react-icons/io/ios-information.d.ts +++ b/react-icons/io/ios-information.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-informatoutline.d.ts b/react-icons/io/ios-informatoutline.d.ts index 050bd27585..a5c889f50d 100644 --- a/react-icons/io/ios-informatoutline.d.ts +++ b/react-icons/io/ios-informatoutline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosInformatoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-ionic-outline.d.ts b/react-icons/io/ios-ionic-outline.d.ts index fdd5a3f91c..31c56abdd0 100644 --- a/react-icons/io/ios-ionic-outline.d.ts +++ b/react-icons/io/ios-ionic-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosIonicOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-keypad-outline.d.ts b/react-icons/io/ios-keypad-outline.d.ts index 9f7d891dbf..18ce7a25a8 100644 --- a/react-icons/io/ios-keypad-outline.d.ts +++ b/react-icons/io/ios-keypad-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosKeypadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-keypad.d.ts b/react-icons/io/ios-keypad.d.ts index f10d61bde3..4a42a32212 100644 --- a/react-icons/io/ios-keypad.d.ts +++ b/react-icons/io/ios-keypad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosKeypad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-lightbulb-outline.d.ts b/react-icons/io/ios-lightbulb-outline.d.ts index a3ada3b075..83ceac75ed 100644 --- a/react-icons/io/ios-lightbulb-outline.d.ts +++ b/react-icons/io/ios-lightbulb-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLightbulbOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-lightbulb.d.ts b/react-icons/io/ios-lightbulb.d.ts index c71050b6da..c7744acc7e 100644 --- a/react-icons/io/ios-lightbulb.d.ts +++ b/react-icons/io/ios-lightbulb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-list-outline.d.ts b/react-icons/io/ios-list-outline.d.ts index 2425e80b16..b981117120 100644 --- a/react-icons/io/ios-list-outline.d.ts +++ b/react-icons/io/ios-list-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosListOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-list.d.ts b/react-icons/io/ios-list.d.ts index 17e4cf93b2..fec8031ab1 100644 --- a/react-icons/io/ios-list.d.ts +++ b/react-icons/io/ios-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosList extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-location.d.ts b/react-icons/io/ios-location.d.ts index 1b69f161a6..a9d04df0b6 100644 --- a/react-icons/io/ios-location.d.ts +++ b/react-icons/io/ios-location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locatoutline.d.ts b/react-icons/io/ios-locatoutline.d.ts index f1e6511215..70cb13d92b 100644 --- a/react-icons/io/ios-locatoutline.d.ts +++ b/react-icons/io/ios-locatoutline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLocatoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locked-outline.d.ts b/react-icons/io/ios-locked-outline.d.ts index 2073040eb6..182d0b5dcc 100644 --- a/react-icons/io/ios-locked-outline.d.ts +++ b/react-icons/io/ios-locked-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLockedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-locked.d.ts b/react-icons/io/ios-locked.d.ts index 6dc2da62e2..604e9597ff 100644 --- a/react-icons/io/ios-locked.d.ts +++ b/react-icons/io/ios-locked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-loop-strong.d.ts b/react-icons/io/ios-loop-strong.d.ts index 97011eb432..421c7e237b 100644 --- a/react-icons/io/ios-loop-strong.d.ts +++ b/react-icons/io/ios-loop-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLoopStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-loop.d.ts b/react-icons/io/ios-loop.d.ts index 9f38c25cb7..64525f9f0f 100644 --- a/react-icons/io/ios-loop.d.ts +++ b/react-icons/io/ios-loop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medical-outline.d.ts b/react-icons/io/ios-medical-outline.d.ts index 00b73654ed..703f6370da 100644 --- a/react-icons/io/ios-medical-outline.d.ts +++ b/react-icons/io/ios-medical-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMedicalOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medical.d.ts b/react-icons/io/ios-medical.d.ts index 5c9f402817..c780b1c7fa 100644 --- a/react-icons/io/ios-medical.d.ts +++ b/react-icons/io/ios-medical.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMedical extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medkit-outline.d.ts b/react-icons/io/ios-medkit-outline.d.ts index ebe33fd2b7..e6a67a29e2 100644 --- a/react-icons/io/ios-medkit-outline.d.ts +++ b/react-icons/io/ios-medkit-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMedkitOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-medkit.d.ts b/react-icons/io/ios-medkit.d.ts index 4a75daf1c0..1b6bde275c 100644 --- a/react-icons/io/ios-medkit.d.ts +++ b/react-icons/io/ios-medkit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic-off.d.ts b/react-icons/io/ios-mic-off.d.ts index 37b8b1ebdd..3a53b28bee 100644 --- a/react-icons/io/ios-mic-off.d.ts +++ b/react-icons/io/ios-mic-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMicOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic-outline.d.ts b/react-icons/io/ios-mic-outline.d.ts index 100b6f6e5e..0cabfb6e14 100644 --- a/react-icons/io/ios-mic-outline.d.ts +++ b/react-icons/io/ios-mic-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMicOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-mic.d.ts b/react-icons/io/ios-mic.d.ts index af1939bb63..798a7208a1 100644 --- a/react-icons/io/ios-mic.d.ts +++ b/react-icons/io/ios-mic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus-empty.d.ts b/react-icons/io/ios-minus-empty.d.ts index c1e9d9ad59..b221479457 100644 --- a/react-icons/io/ios-minus-empty.d.ts +++ b/react-icons/io/ios-minus-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMinusEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus-outline.d.ts b/react-icons/io/ios-minus-outline.d.ts index b096d664a0..67eb723bdf 100644 --- a/react-icons/io/ios-minus-outline.d.ts +++ b/react-icons/io/ios-minus-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMinusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-minus.d.ts b/react-icons/io/ios-minus.d.ts index 8043ee4525..c0aedbb7df 100644 --- a/react-icons/io/ios-minus.d.ts +++ b/react-icons/io/ios-minus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-monitor-outline.d.ts b/react-icons/io/ios-monitor-outline.d.ts index 715d7ffce8..5467b98cc1 100644 --- a/react-icons/io/ios-monitor-outline.d.ts +++ b/react-icons/io/ios-monitor-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMonitorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-monitor.d.ts b/react-icons/io/ios-monitor.d.ts index e15770f640..9562ace79f 100644 --- a/react-icons/io/ios-monitor.d.ts +++ b/react-icons/io/ios-monitor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMonitor extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-moon-outline.d.ts b/react-icons/io/ios-moon-outline.d.ts index 0e1e3f00c0..d52d21153e 100644 --- a/react-icons/io/ios-moon-outline.d.ts +++ b/react-icons/io/ios-moon-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMoonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-moon.d.ts b/react-icons/io/ios-moon.d.ts index e1058ed27f..81f5ddc986 100644 --- a/react-icons/io/ios-moon.d.ts +++ b/react-icons/io/ios-moon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-more-outline.d.ts b/react-icons/io/ios-more-outline.d.ts index bce05f64e8..60e919c122 100644 --- a/react-icons/io/ios-more-outline.d.ts +++ b/react-icons/io/ios-more-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMoreOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-more.d.ts b/react-icons/io/ios-more.d.ts index 2526da4904..b4d6ecdc37 100644 --- a/react-icons/io/ios-more.d.ts +++ b/react-icons/io/ios-more.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-musical-note.d.ts b/react-icons/io/ios-musical-note.d.ts index a9d503ee22..86cfe6cb11 100644 --- a/react-icons/io/ios-musical-note.d.ts +++ b/react-icons/io/ios-musical-note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMusicalNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-musical-notes.d.ts b/react-icons/io/ios-musical-notes.d.ts index ff08ae4d59..7a0fa8264d 100644 --- a/react-icons/io/ios-musical-notes.d.ts +++ b/react-icons/io/ios-musical-notes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosMusicalNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-navigate-outline.d.ts b/react-icons/io/ios-navigate-outline.d.ts index 197deaf064..c59c2e9372 100644 --- a/react-icons/io/ios-navigate-outline.d.ts +++ b/react-icons/io/ios-navigate-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosNavigateOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-navigate.d.ts b/react-icons/io/ios-navigate.d.ts index 0644a03671..4493aae9db 100644 --- a/react-icons/io/ios-navigate.d.ts +++ b/react-icons/io/ios-navigate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-nutrition.d.ts b/react-icons/io/ios-nutrition.d.ts index d28d6df3ed..0601732bbd 100644 --- a/react-icons/io/ios-nutrition.d.ts +++ b/react-icons/io/ios-nutrition.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosNutrition extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-nutritoutline.d.ts b/react-icons/io/ios-nutritoutline.d.ts index 4f0a31f253..f0502e9af4 100644 --- a/react-icons/io/ios-nutritoutline.d.ts +++ b/react-icons/io/ios-nutritoutline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosNutritoutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paper-outline.d.ts b/react-icons/io/ios-paper-outline.d.ts index c779fb2ae1..4c5a276879 100644 --- a/react-icons/io/ios-paper-outline.d.ts +++ b/react-icons/io/ios-paper-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPaperOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paper.d.ts b/react-icons/io/ios-paper.d.ts index 0136ad277f..bcefa26bac 100644 --- a/react-icons/io/ios-paper.d.ts +++ b/react-icons/io/ios-paper.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paperplane-outline.d.ts b/react-icons/io/ios-paperplane-outline.d.ts index 207831205d..e418fe4ec8 100644 --- a/react-icons/io/ios-paperplane-outline.d.ts +++ b/react-icons/io/ios-paperplane-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPaperplaneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paperplane.d.ts b/react-icons/io/ios-paperplane.d.ts index e13f76f59e..6302b118f0 100644 --- a/react-icons/io/ios-paperplane.d.ts +++ b/react-icons/io/ios-paperplane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPaperplane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-partlysunny-outline.d.ts b/react-icons/io/ios-partlysunny-outline.d.ts index 1934b201de..9deb9f040b 100644 --- a/react-icons/io/ios-partlysunny-outline.d.ts +++ b/react-icons/io/ios-partlysunny-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPartlysunnyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-partlysunny.d.ts b/react-icons/io/ios-partlysunny.d.ts index 3a36e005b2..cbdc13df28 100644 --- a/react-icons/io/ios-partlysunny.d.ts +++ b/react-icons/io/ios-partlysunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPartlysunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pause-outline.d.ts b/react-icons/io/ios-pause-outline.d.ts index bf52fed2e1..352bc857a9 100644 --- a/react-icons/io/ios-pause-outline.d.ts +++ b/react-icons/io/ios-pause-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPauseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pause.d.ts b/react-icons/io/ios-pause.d.ts index 628df11d1c..9878aac3d9 100644 --- a/react-icons/io/ios-pause.d.ts +++ b/react-icons/io/ios-pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paw-outline.d.ts b/react-icons/io/ios-paw-outline.d.ts index 8a42509f1a..d422a0391b 100644 --- a/react-icons/io/ios-paw-outline.d.ts +++ b/react-icons/io/ios-paw-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPawOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-paw.d.ts b/react-icons/io/ios-paw.d.ts index 2a8101923a..6e9b7f352b 100644 --- a/react-icons/io/ios-paw.d.ts +++ b/react-icons/io/ios-paw.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPaw extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-people-outline.d.ts b/react-icons/io/ios-people-outline.d.ts index cb90bf0b46..13a8294084 100644 --- a/react-icons/io/ios-people-outline.d.ts +++ b/react-icons/io/ios-people-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPeopleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-people.d.ts b/react-icons/io/ios-people.d.ts index 301c3a635f..3cabba9040 100644 --- a/react-icons/io/ios-people.d.ts +++ b/react-icons/io/ios-people.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-person-outline.d.ts b/react-icons/io/ios-person-outline.d.ts index 675cb497e2..daf1779954 100644 --- a/react-icons/io/ios-person-outline.d.ts +++ b/react-icons/io/ios-person-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPersonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-person.d.ts b/react-icons/io/ios-person.d.ts index 77f81d4532..2262d480c2 100644 --- a/react-icons/io/ios-person.d.ts +++ b/react-icons/io/ios-person.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-personadd-outline.d.ts b/react-icons/io/ios-personadd-outline.d.ts index 5e4ddb0f57..7d2c03006e 100644 --- a/react-icons/io/ios-personadd-outline.d.ts +++ b/react-icons/io/ios-personadd-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPersonaddOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-personadd.d.ts b/react-icons/io/ios-personadd.d.ts index 8b9d49897c..4910bd942b 100644 --- a/react-icons/io/ios-personadd.d.ts +++ b/react-icons/io/ios-personadd.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPersonadd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-photos-outline.d.ts b/react-icons/io/ios-photos-outline.d.ts index d03443c8eb..e9767cbe6a 100644 --- a/react-icons/io/ios-photos-outline.d.ts +++ b/react-icons/io/ios-photos-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPhotosOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-photos.d.ts b/react-icons/io/ios-photos.d.ts index e5bf3ee5b0..444075392a 100644 --- a/react-icons/io/ios-photos.d.ts +++ b/react-icons/io/ios-photos.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pie-outline.d.ts b/react-icons/io/ios-pie-outline.d.ts index 2330a31351..d4fec898a4 100644 --- a/react-icons/io/ios-pie-outline.d.ts +++ b/react-icons/io/ios-pie-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPieOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pie.d.ts b/react-icons/io/ios-pie.d.ts index 5579c910a8..086f336243 100644 --- a/react-icons/io/ios-pie.d.ts +++ b/react-icons/io/ios-pie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPie extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pint-outline.d.ts b/react-icons/io/ios-pint-outline.d.ts index b8a0533b2d..1410891500 100644 --- a/react-icons/io/ios-pint-outline.d.ts +++ b/react-icons/io/ios-pint-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPintOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pint.d.ts b/react-icons/io/ios-pint.d.ts index f54315bc2b..05753820a7 100644 --- a/react-icons/io/ios-pint.d.ts +++ b/react-icons/io/ios-pint.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-play-outline.d.ts b/react-icons/io/ios-play-outline.d.ts index 79e368e34a..9e1d7d34c5 100644 --- a/react-icons/io/ios-play-outline.d.ts +++ b/react-icons/io/ios-play-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPlayOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-play.d.ts b/react-icons/io/ios-play.d.ts index b076c1fb76..502b07f5d8 100644 --- a/react-icons/io/ios-play.d.ts +++ b/react-icons/io/ios-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus-empty.d.ts b/react-icons/io/ios-plus-empty.d.ts index c1a1f3bb75..01d6ee1d0d 100644 --- a/react-icons/io/ios-plus-empty.d.ts +++ b/react-icons/io/ios-plus-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPlusEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus-outline.d.ts b/react-icons/io/ios-plus-outline.d.ts index c0f2bf8db1..0012f759b2 100644 --- a/react-icons/io/ios-plus-outline.d.ts +++ b/react-icons/io/ios-plus-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPlusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-plus.d.ts b/react-icons/io/ios-plus.d.ts index 0d3e2f51c3..5ca4b77ea6 100644 --- a/react-icons/io/ios-plus.d.ts +++ b/react-icons/io/ios-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetag-outline.d.ts b/react-icons/io/ios-pricetag-outline.d.ts index dbf7dcd568..3fa51332a2 100644 --- a/react-icons/io/ios-pricetag-outline.d.ts +++ b/react-icons/io/ios-pricetag-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPricetagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetag.d.ts b/react-icons/io/ios-pricetag.d.ts index e939962ca8..be77edcfea 100644 --- a/react-icons/io/ios-pricetag.d.ts +++ b/react-icons/io/ios-pricetag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPricetag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetags-outline.d.ts b/react-icons/io/ios-pricetags-outline.d.ts index bec010d81e..d27b8a59e0 100644 --- a/react-icons/io/ios-pricetags-outline.d.ts +++ b/react-icons/io/ios-pricetags-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPricetagsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pricetags.d.ts b/react-icons/io/ios-pricetags.d.ts index c17da38948..9f09ebfc2d 100644 --- a/react-icons/io/ios-pricetags.d.ts +++ b/react-icons/io/ios-pricetags.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPricetags extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-printer-outline.d.ts b/react-icons/io/ios-printer-outline.d.ts index 757c473581..7883b7236e 100644 --- a/react-icons/io/ios-printer-outline.d.ts +++ b/react-icons/io/ios-printer-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPrinterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-printer.d.ts b/react-icons/io/ios-printer.d.ts index 3b0a93f94f..319c9226aa 100644 --- a/react-icons/io/ios-printer.d.ts +++ b/react-icons/io/ios-printer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pulse-strong.d.ts b/react-icons/io/ios-pulse-strong.d.ts index 49e42388b8..1fc3f2ed70 100644 --- a/react-icons/io/ios-pulse-strong.d.ts +++ b/react-icons/io/ios-pulse-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPulseStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-pulse.d.ts b/react-icons/io/ios-pulse.d.ts index 1a4f2756fc..5ea085e5d0 100644 --- a/react-icons/io/ios-pulse.d.ts +++ b/react-icons/io/ios-pulse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosPulse extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rainy-outline.d.ts b/react-icons/io/ios-rainy-outline.d.ts index 1976dbfa70..b0c736a497 100644 --- a/react-icons/io/ios-rainy-outline.d.ts +++ b/react-icons/io/ios-rainy-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRainyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rainy.d.ts b/react-icons/io/ios-rainy.d.ts index d863b5137a..6f6610192f 100644 --- a/react-icons/io/ios-rainy.d.ts +++ b/react-icons/io/ios-rainy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRainy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-recording-outline.d.ts b/react-icons/io/ios-recording-outline.d.ts index b9ce09877e..621898f0a7 100644 --- a/react-icons/io/ios-recording-outline.d.ts +++ b/react-icons/io/ios-recording-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRecordingOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-recording.d.ts b/react-icons/io/ios-recording.d.ts index 508701e2ad..f53123e4a7 100644 --- a/react-icons/io/ios-recording.d.ts +++ b/react-icons/io/ios-recording.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRecording extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-redo-outline.d.ts b/react-icons/io/ios-redo-outline.d.ts index 6e2da39538..d141624d3f 100644 --- a/react-icons/io/ios-redo-outline.d.ts +++ b/react-icons/io/ios-redo-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRedoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-redo.d.ts b/react-icons/io/ios-redo.d.ts index d7bfff9e17..ba1cbe884c 100644 --- a/react-icons/io/ios-redo.d.ts +++ b/react-icons/io/ios-redo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRedo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh-empty.d.ts b/react-icons/io/ios-refresh-empty.d.ts index 1da62c4c59..74a9ec7918 100644 --- a/react-icons/io/ios-refresh-empty.d.ts +++ b/react-icons/io/ios-refresh-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRefreshEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh-outline.d.ts b/react-icons/io/ios-refresh-outline.d.ts index 5d86b3ea7a..7ac1f50cd1 100644 --- a/react-icons/io/ios-refresh-outline.d.ts +++ b/react-icons/io/ios-refresh-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRefreshOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-refresh.d.ts b/react-icons/io/ios-refresh.d.ts index 8b90a367bd..2381df0cc4 100644 --- a/react-icons/io/ios-refresh.d.ts +++ b/react-icons/io/ios-refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reload.d.ts b/react-icons/io/ios-reload.d.ts index 564da43c83..39a1dffa3b 100644 --- a/react-icons/io/ios-reload.d.ts +++ b/react-icons/io/ios-reload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosReload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reverse-camera-outline.d.ts b/react-icons/io/ios-reverse-camera-outline.d.ts index 716f598732..a67bf4b1df 100644 --- a/react-icons/io/ios-reverse-camera-outline.d.ts +++ b/react-icons/io/ios-reverse-camera-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosReverseCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-reverse-camera.d.ts b/react-icons/io/ios-reverse-camera.d.ts index 5c1b465135..98c0be912d 100644 --- a/react-icons/io/ios-reverse-camera.d.ts +++ b/react-icons/io/ios-reverse-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosReverseCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rewind-outline.d.ts b/react-icons/io/ios-rewind-outline.d.ts index 76a2c2a1d4..8a5d9483ab 100644 --- a/react-icons/io/ios-rewind-outline.d.ts +++ b/react-icons/io/ios-rewind-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRewindOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rewind.d.ts b/react-icons/io/ios-rewind.d.ts index 5c74094306..68a5924076 100644 --- a/react-icons/io/ios-rewind.d.ts +++ b/react-icons/io/ios-rewind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rose-outline.d.ts b/react-icons/io/ios-rose-outline.d.ts index a83bfd1067..8623c71219 100644 --- a/react-icons/io/ios-rose-outline.d.ts +++ b/react-icons/io/ios-rose-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRoseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-rose.d.ts b/react-icons/io/ios-rose.d.ts index 237ac260a3..dc97b283bd 100644 --- a/react-icons/io/ios-rose.d.ts +++ b/react-icons/io/ios-rose.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosRose extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-search-strong.d.ts b/react-icons/io/ios-search-strong.d.ts index c7974eb86c..bbcb48185f 100644 --- a/react-icons/io/ios-search-strong.d.ts +++ b/react-icons/io/ios-search-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSearchStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-search.d.ts b/react-icons/io/ios-search.d.ts index d813f5eb96..36c3eb9b54 100644 --- a/react-icons/io/ios-search.d.ts +++ b/react-icons/io/ios-search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-settings-strong.d.ts b/react-icons/io/ios-settings-strong.d.ts index c83103e59a..8b4efaccff 100644 --- a/react-icons/io/ios-settings-strong.d.ts +++ b/react-icons/io/ios-settings-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSettingsStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-settings.d.ts b/react-icons/io/ios-settings.d.ts index 1482858d13..61f7385e40 100644 --- a/react-icons/io/ios-settings.d.ts +++ b/react-icons/io/ios-settings.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-shuffle-strong.d.ts b/react-icons/io/ios-shuffle-strong.d.ts index 8b32d190ef..2e8a7543bb 100644 --- a/react-icons/io/ios-shuffle-strong.d.ts +++ b/react-icons/io/ios-shuffle-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosShuffleStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-shuffle.d.ts b/react-icons/io/ios-shuffle.d.ts index 8632ee19ac..1e1bac5040 100644 --- a/react-icons/io/ios-shuffle.d.ts +++ b/react-icons/io/ios-shuffle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipbackward-outline.d.ts b/react-icons/io/ios-skipbackward-outline.d.ts index 286d265699..361645bf1d 100644 --- a/react-icons/io/ios-skipbackward-outline.d.ts +++ b/react-icons/io/ios-skipbackward-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSkipbackwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipbackward.d.ts b/react-icons/io/ios-skipbackward.d.ts index 4a9614e01c..7a8c875f29 100644 --- a/react-icons/io/ios-skipbackward.d.ts +++ b/react-icons/io/ios-skipbackward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSkipbackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipforward-outline.d.ts b/react-icons/io/ios-skipforward-outline.d.ts index 9d8fe0d27a..830993e627 100644 --- a/react-icons/io/ios-skipforward-outline.d.ts +++ b/react-icons/io/ios-skipforward-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSkipforwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-skipforward.d.ts b/react-icons/io/ios-skipforward.d.ts index b2a4eb7355..58cfe7aa59 100644 --- a/react-icons/io/ios-skipforward.d.ts +++ b/react-icons/io/ios-skipforward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSkipforward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-snowy.d.ts b/react-icons/io/ios-snowy.d.ts index ef459078a1..bb17492ed0 100644 --- a/react-icons/io/ios-snowy.d.ts +++ b/react-icons/io/ios-snowy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSnowy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-speedometer-outline.d.ts b/react-icons/io/ios-speedometer-outline.d.ts index 048000d0e8..83731f494f 100644 --- a/react-icons/io/ios-speedometer-outline.d.ts +++ b/react-icons/io/ios-speedometer-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSpeedometerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-speedometer.d.ts b/react-icons/io/ios-speedometer.d.ts index 242a9a8557..8cb285df2f 100644 --- a/react-icons/io/ios-speedometer.d.ts +++ b/react-icons/io/ios-speedometer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSpeedometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star-half.d.ts b/react-icons/io/ios-star-half.d.ts index e63d7a06dd..d381d39d5d 100644 --- a/react-icons/io/ios-star-half.d.ts +++ b/react-icons/io/ios-star-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star-outline.d.ts b/react-icons/io/ios-star-outline.d.ts index d949366ffd..c64b8c5162 100644 --- a/react-icons/io/ios-star-outline.d.ts +++ b/react-icons/io/ios-star-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-star.d.ts b/react-icons/io/ios-star.d.ts index 0def201977..256728c93e 100644 --- a/react-icons/io/ios-star.d.ts +++ b/react-icons/io/ios-star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-stopwatch-outline.d.ts b/react-icons/io/ios-stopwatch-outline.d.ts index 44586c731d..e6a8afe39b 100644 --- a/react-icons/io/ios-stopwatch-outline.d.ts +++ b/react-icons/io/ios-stopwatch-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosStopwatchOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-stopwatch.d.ts b/react-icons/io/ios-stopwatch.d.ts index a86050cc40..bc449b4abb 100644 --- a/react-icons/io/ios-stopwatch.d.ts +++ b/react-icons/io/ios-stopwatch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-sunny-outline.d.ts b/react-icons/io/ios-sunny-outline.d.ts index 37b1adf577..13844d1c3e 100644 --- a/react-icons/io/ios-sunny-outline.d.ts +++ b/react-icons/io/ios-sunny-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSunnyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-sunny.d.ts b/react-icons/io/ios-sunny.d.ts index 1814d882b0..1eb5f7046e 100644 --- a/react-icons/io/ios-sunny.d.ts +++ b/react-icons/io/ios-sunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-telephone-outline.d.ts b/react-icons/io/ios-telephone-outline.d.ts index 6f28657f22..4f67085daa 100644 --- a/react-icons/io/ios-telephone-outline.d.ts +++ b/react-icons/io/ios-telephone-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTelephoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-telephone.d.ts b/react-icons/io/ios-telephone.d.ts index c32673ec96..52defe14f0 100644 --- a/react-icons/io/ios-telephone.d.ts +++ b/react-icons/io/ios-telephone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTelephone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-tennisball-outline.d.ts b/react-icons/io/ios-tennisball-outline.d.ts index b037bcede3..f983599375 100644 --- a/react-icons/io/ios-tennisball-outline.d.ts +++ b/react-icons/io/ios-tennisball-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTennisballOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-tennisball.d.ts b/react-icons/io/ios-tennisball.d.ts index 9cc968dad9..ec50e5cd34 100644 --- a/react-icons/io/ios-tennisball.d.ts +++ b/react-icons/io/ios-tennisball.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTennisball extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-thunderstorm-outline.d.ts b/react-icons/io/ios-thunderstorm-outline.d.ts index 8b7468e163..2bf8152f18 100644 --- a/react-icons/io/ios-thunderstorm-outline.d.ts +++ b/react-icons/io/ios-thunderstorm-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosThunderstormOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-thunderstorm.d.ts b/react-icons/io/ios-thunderstorm.d.ts index 54106c2746..bdd0320c75 100644 --- a/react-icons/io/ios-thunderstorm.d.ts +++ b/react-icons/io/ios-thunderstorm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosThunderstorm extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-time-outline.d.ts b/react-icons/io/ios-time-outline.d.ts index 06e6309791..0836226bf5 100644 --- a/react-icons/io/ios-time-outline.d.ts +++ b/react-icons/io/ios-time-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTimeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-time.d.ts b/react-icons/io/ios-time.d.ts index 55bf3b67eb..b50841496f 100644 --- a/react-icons/io/ios-time.d.ts +++ b/react-icons/io/ios-time.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-timer-outline.d.ts b/react-icons/io/ios-timer-outline.d.ts index 82a23ec9b6..9b3da5b509 100644 --- a/react-icons/io/ios-timer-outline.d.ts +++ b/react-icons/io/ios-timer-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTimerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-timer.d.ts b/react-icons/io/ios-timer.d.ts index 30627b162f..85bcf4e2b9 100644 --- a/react-icons/io/ios-timer.d.ts +++ b/react-icons/io/ios-timer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-toggle-outline.d.ts b/react-icons/io/ios-toggle-outline.d.ts index e67759dfe6..1b14fd8a9b 100644 --- a/react-icons/io/ios-toggle-outline.d.ts +++ b/react-icons/io/ios-toggle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosToggleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-toggle.d.ts b/react-icons/io/ios-toggle.d.ts index 2aee3e63ea..c23b816cb9 100644 --- a/react-icons/io/ios-toggle.d.ts +++ b/react-icons/io/ios-toggle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosToggle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-trash-outline.d.ts b/react-icons/io/ios-trash-outline.d.ts index 2862e46550..2ff6379461 100644 --- a/react-icons/io/ios-trash-outline.d.ts +++ b/react-icons/io/ios-trash-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTrashOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-trash.d.ts b/react-icons/io/ios-trash.d.ts index 6b91106c50..03a442bbfd 100644 --- a/react-icons/io/ios-trash.d.ts +++ b/react-icons/io/ios-trash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-undo-outline.d.ts b/react-icons/io/ios-undo-outline.d.ts index db58259ac9..d1f796c1dc 100644 --- a/react-icons/io/ios-undo-outline.d.ts +++ b/react-icons/io/ios-undo-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUndoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-undo.d.ts b/react-icons/io/ios-undo.d.ts index e89880781b..ab67cdccb6 100644 --- a/react-icons/io/ios-undo.d.ts +++ b/react-icons/io/ios-undo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUndo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-unlocked-outline.d.ts b/react-icons/io/ios-unlocked-outline.d.ts index 1496245073..8032ba2232 100644 --- a/react-icons/io/ios-unlocked-outline.d.ts +++ b/react-icons/io/ios-unlocked-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUnlockedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-unlocked.d.ts b/react-icons/io/ios-unlocked.d.ts index 60cbdcbed2..cb0fc68eaa 100644 --- a/react-icons/io/ios-unlocked.d.ts +++ b/react-icons/io/ios-unlocked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUnlocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-upload-outline.d.ts b/react-icons/io/ios-upload-outline.d.ts index 9be8f844c6..19796df941 100644 --- a/react-icons/io/ios-upload-outline.d.ts +++ b/react-icons/io/ios-upload-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-upload.d.ts b/react-icons/io/ios-upload.d.ts index 9a1baef4cd..0a0308ab60 100644 --- a/react-icons/io/ios-upload.d.ts +++ b/react-icons/io/ios-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-videocam-outline.d.ts b/react-icons/io/ios-videocam-outline.d.ts index a750c55bce..e95861e0d2 100644 --- a/react-icons/io/ios-videocam-outline.d.ts +++ b/react-icons/io/ios-videocam-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosVideocamOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-videocam.d.ts b/react-icons/io/ios-videocam.d.ts index bcb949715a..644e19b7b9 100644 --- a/react-icons/io/ios-videocam.d.ts +++ b/react-icons/io/ios-videocam.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosVideocam extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-volume-high.d.ts b/react-icons/io/ios-volume-high.d.ts index 1d0854431f..d74ee1ae8f 100644 --- a/react-icons/io/ios-volume-high.d.ts +++ b/react-icons/io/ios-volume-high.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosVolumeHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-volume-low.d.ts b/react-icons/io/ios-volume-low.d.ts index bb13058a75..a267097243 100644 --- a/react-icons/io/ios-volume-low.d.ts +++ b/react-icons/io/ios-volume-low.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosVolumeLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-wineglass-outline.d.ts b/react-icons/io/ios-wineglass-outline.d.ts index a6a22340e5..e9c39305a3 100644 --- a/react-icons/io/ios-wineglass-outline.d.ts +++ b/react-icons/io/ios-wineglass-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosWineglassOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-wineglass.d.ts b/react-icons/io/ios-wineglass.d.ts index 140caeb94c..14957100e0 100644 --- a/react-icons/io/ios-wineglass.d.ts +++ b/react-icons/io/ios-wineglass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosWineglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-world-outline.d.ts b/react-icons/io/ios-world-outline.d.ts index 93268340c9..86faea1e59 100644 --- a/react-icons/io/ios-world-outline.d.ts +++ b/react-icons/io/ios-world-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosWorldOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ios-world.d.ts b/react-icons/io/ios-world.d.ts index c3885d6b5b..d09da42941 100644 --- a/react-icons/io/ios-world.d.ts +++ b/react-icons/io/ios-world.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIosWorld extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ipad.d.ts b/react-icons/io/ipad.d.ts index 2d84d50082..c4a050b947 100644 --- a/react-icons/io/ipad.d.ts +++ b/react-icons/io/ipad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIpad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/iphone.d.ts b/react-icons/io/iphone.d.ts index c7bf489718..9091869a2c 100644 --- a/react-icons/io/iphone.d.ts +++ b/react-icons/io/iphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ipod.d.ts b/react-icons/io/ipod.d.ts index bc8415af57..b002bcea75 100644 --- a/react-icons/io/ipod.d.ts +++ b/react-icons/io/ipod.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoIpod extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/jet.d.ts b/react-icons/io/jet.d.ts index 27eb1e3fd5..87216371d1 100644 --- a/react-icons/io/jet.d.ts +++ b/react-icons/io/jet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoJet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/key.d.ts b/react-icons/io/key.d.ts index 05b2dafdf0..3bb33faf7e 100644 --- a/react-icons/io/key.d.ts +++ b/react-icons/io/key.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/knife.d.ts b/react-icons/io/knife.d.ts index 40d492aac6..573e9d82c5 100644 --- a/react-icons/io/knife.d.ts +++ b/react-icons/io/knife.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoKnife extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/laptop.d.ts b/react-icons/io/laptop.d.ts index 31dba2114b..9703041c3a 100644 --- a/react-icons/io/laptop.d.ts +++ b/react-icons/io/laptop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/leaf.d.ts b/react-icons/io/leaf.d.ts index c924e3d183..7d3d96768e 100644 --- a/react-icons/io/leaf.d.ts +++ b/react-icons/io/leaf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/levels.d.ts b/react-icons/io/levels.d.ts index efbaa597a8..0d48cd031e 100644 --- a/react-icons/io/levels.d.ts +++ b/react-icons/io/levels.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLevels extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/lightbulb.d.ts b/react-icons/io/lightbulb.d.ts index 152d4c122f..c965120dfc 100644 --- a/react-icons/io/lightbulb.d.ts +++ b/react-icons/io/lightbulb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/link.d.ts b/react-icons/io/link.d.ts index ebf08e8bb5..15e50e17a7 100644 --- a/react-icons/io/link.d.ts +++ b/react-icons/io/link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-a.d.ts b/react-icons/io/load-a.d.ts index 01421c4472..d2ca07b479 100644 --- a/react-icons/io/load-a.d.ts +++ b/react-icons/io/load-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLoadA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-b.d.ts b/react-icons/io/load-b.d.ts index 6b21769c0b..abec8b504e 100644 --- a/react-icons/io/load-b.d.ts +++ b/react-icons/io/load-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLoadB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-c.d.ts b/react-icons/io/load-c.d.ts index 592b81af9d..ae8e068ce6 100644 --- a/react-icons/io/load-c.d.ts +++ b/react-icons/io/load-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLoadC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/load-d.d.ts b/react-icons/io/load-d.d.ts index 48a2d853f6..01b5c75ea4 100644 --- a/react-icons/io/load-d.d.ts +++ b/react-icons/io/load-d.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLoadD extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/location.d.ts b/react-icons/io/location.d.ts index e98b619117..9b63d6301b 100644 --- a/react-icons/io/location.d.ts +++ b/react-icons/io/location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/lock-combination.d.ts b/react-icons/io/lock-combination.d.ts index c093902563..63ffa442b0 100644 --- a/react-icons/io/lock-combination.d.ts +++ b/react-icons/io/lock-combination.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLockCombination extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/locked.d.ts b/react-icons/io/locked.d.ts index d3539a1f3c..16821b95a5 100644 --- a/react-icons/io/locked.d.ts +++ b/react-icons/io/locked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/log-in.d.ts b/react-icons/io/log-in.d.ts index ab954a4800..bccca98354 100644 --- a/react-icons/io/log-in.d.ts +++ b/react-icons/io/log-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLogIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/log-out.d.ts b/react-icons/io/log-out.d.ts index 1d7612a0ad..21fda89afa 100644 --- a/react-icons/io/log-out.d.ts +++ b/react-icons/io/log-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLogOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/loop.d.ts b/react-icons/io/loop.d.ts index 52a716d079..b058569cd8 100644 --- a/react-icons/io/loop.d.ts +++ b/react-icons/io/loop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/magnet.d.ts b/react-icons/io/magnet.d.ts index 76a061e7a4..28a504842b 100644 --- a/react-icons/io/magnet.d.ts +++ b/react-icons/io/magnet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMagnet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/male.d.ts b/react-icons/io/male.d.ts index 8622345fa0..294a716b41 100644 --- a/react-icons/io/male.d.ts +++ b/react-icons/io/male.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMale extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/man.d.ts b/react-icons/io/man.d.ts index 68e7bc1d7d..dd0cf404f4 100644 --- a/react-icons/io/man.d.ts +++ b/react-icons/io/man.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMan extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/map.d.ts b/react-icons/io/map.d.ts index be365d73ab..93ef69ef98 100644 --- a/react-icons/io/map.d.ts +++ b/react-icons/io/map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/medkit.d.ts b/react-icons/io/medkit.d.ts index 2b37d0cc6b..ba99512b1c 100644 --- a/react-icons/io/medkit.d.ts +++ b/react-icons/io/medkit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMedkit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/merge.d.ts b/react-icons/io/merge.d.ts index 2a60eceac8..43fcf0ee26 100644 --- a/react-icons/io/merge.d.ts +++ b/react-icons/io/merge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-a.d.ts b/react-icons/io/mic-a.d.ts index 89e1a6a647..0db38f7590 100644 --- a/react-icons/io/mic-a.d.ts +++ b/react-icons/io/mic-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMicA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-b.d.ts b/react-icons/io/mic-b.d.ts index 95543a8d0a..53ec4626ff 100644 --- a/react-icons/io/mic-b.d.ts +++ b/react-icons/io/mic-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMicB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mic-c.d.ts b/react-icons/io/mic-c.d.ts index c60cb04428..2f15a40885 100644 --- a/react-icons/io/mic-c.d.ts +++ b/react-icons/io/mic-c.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMicC extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus-circled.d.ts b/react-icons/io/minus-circled.d.ts index 7c8c1dfe1a..f26094fdb5 100644 --- a/react-icons/io/minus-circled.d.ts +++ b/react-icons/io/minus-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMinusCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus-round.d.ts b/react-icons/io/minus-round.d.ts index 9530bdc521..71baa5fe32 100644 --- a/react-icons/io/minus-round.d.ts +++ b/react-icons/io/minus-round.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMinusRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/minus.d.ts b/react-icons/io/minus.d.ts index a851cedddf..c82dcd2d0d 100644 --- a/react-icons/io/minus.d.ts +++ b/react-icons/io/minus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/model-s.d.ts b/react-icons/io/model-s.d.ts index 0b4ffd2a22..388800d39d 100644 --- a/react-icons/io/model-s.d.ts +++ b/react-icons/io/model-s.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoModelS extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/monitor.d.ts b/react-icons/io/monitor.d.ts index e70f7953d6..cea462f426 100644 --- a/react-icons/io/monitor.d.ts +++ b/react-icons/io/monitor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMonitor extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/more.d.ts b/react-icons/io/more.d.ts index 695d17462e..80e4cafec9 100644 --- a/react-icons/io/more.d.ts +++ b/react-icons/io/more.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/mouse.d.ts b/react-icons/io/mouse.d.ts index 2022474813..abc1c35d0b 100644 --- a/react-icons/io/mouse.d.ts +++ b/react-icons/io/mouse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMouse extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/music-note.d.ts b/react-icons/io/music-note.d.ts index ebfa55408b..c22735bbfb 100644 --- a/react-icons/io/music-note.d.ts +++ b/react-icons/io/music-note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoMusicNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navicon-round.d.ts b/react-icons/io/navicon-round.d.ts index 119ceaee96..9decaf4007 100644 --- a/react-icons/io/navicon-round.d.ts +++ b/react-icons/io/navicon-round.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNaviconRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navicon.d.ts b/react-icons/io/navicon.d.ts index be520f726e..27a63eda29 100644 --- a/react-icons/io/navicon.d.ts +++ b/react-icons/io/navicon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNavicon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/navigate.d.ts b/react-icons/io/navigate.d.ts index 216d0ee926..9e2c6ee563 100644 --- a/react-icons/io/navigate.d.ts +++ b/react-icons/io/navigate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNavigate extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/network.d.ts b/react-icons/io/network.d.ts index 7c8012e3fc..c940546c08 100644 --- a/react-icons/io/network.d.ts +++ b/react-icons/io/network.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNetwork extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/no-smoking.d.ts b/react-icons/io/no-smoking.d.ts index 53e9bbe1f8..7d8a557e6d 100644 --- a/react-icons/io/no-smoking.d.ts +++ b/react-icons/io/no-smoking.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNoSmoking extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/nuclear.d.ts b/react-icons/io/nuclear.d.ts index 58b2c7593c..1f1bee40d7 100644 --- a/react-icons/io/nuclear.d.ts +++ b/react-icons/io/nuclear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoNuclear extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/outlet.d.ts b/react-icons/io/outlet.d.ts index 1019be14a1..9ff4649671 100644 --- a/react-icons/io/outlet.d.ts +++ b/react-icons/io/outlet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoOutlet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paintbrush.d.ts b/react-icons/io/paintbrush.d.ts index 94c6009b41..3638dcc45b 100644 --- a/react-icons/io/paintbrush.d.ts +++ b/react-icons/io/paintbrush.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPaintbrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paintbucket.d.ts b/react-icons/io/paintbucket.d.ts index 5b01c784b6..13a076a554 100644 --- a/react-icons/io/paintbucket.d.ts +++ b/react-icons/io/paintbucket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPaintbucket extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paper-airplane.d.ts b/react-icons/io/paper-airplane.d.ts index b2f425e7ad..359d5da2ee 100644 --- a/react-icons/io/paper-airplane.d.ts +++ b/react-icons/io/paper-airplane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPaperAirplane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/paperclip.d.ts b/react-icons/io/paperclip.d.ts index d19802bf67..04c588723e 100644 --- a/react-icons/io/paperclip.d.ts +++ b/react-icons/io/paperclip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPaperclip extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pause.d.ts b/react-icons/io/pause.d.ts index 5b0cd0e095..998e65dd1a 100644 --- a/react-icons/io/pause.d.ts +++ b/react-icons/io/pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person-add.d.ts b/react-icons/io/person-add.d.ts index bfc660e94e..a2880d94cc 100644 --- a/react-icons/io/person-add.d.ts +++ b/react-icons/io/person-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person-stalker.d.ts b/react-icons/io/person-stalker.d.ts index 9bdf35cfa3..acfb311e5e 100644 --- a/react-icons/io/person-stalker.d.ts +++ b/react-icons/io/person-stalker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPersonStalker extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/person.d.ts b/react-icons/io/person.d.ts index 3916645659..e229c61d87 100644 --- a/react-icons/io/person.d.ts +++ b/react-icons/io/person.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pie-graph.d.ts b/react-icons/io/pie-graph.d.ts index 9c061bf4e0..847d0af6f0 100644 --- a/react-icons/io/pie-graph.d.ts +++ b/react-icons/io/pie-graph.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPieGraph extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pin.d.ts b/react-icons/io/pin.d.ts index b203f596bc..95d4336b73 100644 --- a/react-icons/io/pin.d.ts +++ b/react-icons/io/pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pinpoint.d.ts b/react-icons/io/pinpoint.d.ts index b8880f2575..0c3924eef8 100644 --- a/react-icons/io/pinpoint.d.ts +++ b/react-icons/io/pinpoint.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPinpoint extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pizza.d.ts b/react-icons/io/pizza.d.ts index 166400ea3c..d7e5a6e034 100644 --- a/react-icons/io/pizza.d.ts +++ b/react-icons/io/pizza.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPizza extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plane.d.ts b/react-icons/io/plane.d.ts index e8627860c7..5576d45e4d 100644 --- a/react-icons/io/plane.d.ts +++ b/react-icons/io/plane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/planet.d.ts b/react-icons/io/planet.d.ts index 7db404fdae..3f685a8a44 100644 --- a/react-icons/io/planet.d.ts +++ b/react-icons/io/planet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlanet extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/play.d.ts b/react-icons/io/play.d.ts index b56a920a89..5e9f4d1b00 100644 --- a/react-icons/io/play.d.ts +++ b/react-icons/io/play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/playstation.d.ts b/react-icons/io/playstation.d.ts index 31ed41da92..f46809f00c 100644 --- a/react-icons/io/playstation.d.ts +++ b/react-icons/io/playstation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlaystation extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus-circled.d.ts b/react-icons/io/plus-circled.d.ts index f19668224a..7190dedee9 100644 --- a/react-icons/io/plus-circled.d.ts +++ b/react-icons/io/plus-circled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlusCircled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus-round.d.ts b/react-icons/io/plus-round.d.ts index cf61ceba90..a89caf248d 100644 --- a/react-icons/io/plus-round.d.ts +++ b/react-icons/io/plus-round.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlusRound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/plus.d.ts b/react-icons/io/plus.d.ts index eee1f3f81f..5f1ac2730c 100644 --- a/react-icons/io/plus.d.ts +++ b/react-icons/io/plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/podium.d.ts b/react-icons/io/podium.d.ts index f0b5ebdb7d..600c5a60f7 100644 --- a/react-icons/io/podium.d.ts +++ b/react-icons/io/podium.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPodium extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pound.d.ts b/react-icons/io/pound.d.ts index f6791e0a0e..9f0152d885 100644 --- a/react-icons/io/pound.d.ts +++ b/react-icons/io/pound.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPound extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/power.d.ts b/react-icons/io/power.d.ts index 89e46866a4..f42ea37d75 100644 --- a/react-icons/io/power.d.ts +++ b/react-icons/io/power.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pricetag.d.ts b/react-icons/io/pricetag.d.ts index 8fc1c881a0..698f296f6b 100644 --- a/react-icons/io/pricetag.d.ts +++ b/react-icons/io/pricetag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPricetag extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pricetags.d.ts b/react-icons/io/pricetags.d.ts index eb1d8430c9..578df2930a 100644 --- a/react-icons/io/pricetags.d.ts +++ b/react-icons/io/pricetags.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPricetags extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/printer.d.ts b/react-icons/io/printer.d.ts index b4a1716d97..0d81c3c9ff 100644 --- a/react-icons/io/printer.d.ts +++ b/react-icons/io/printer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/pull-request.d.ts b/react-icons/io/pull-request.d.ts index 65d179496e..d45d008d4a 100644 --- a/react-icons/io/pull-request.d.ts +++ b/react-icons/io/pull-request.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoPullRequest extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/qr-scanner.d.ts b/react-icons/io/qr-scanner.d.ts index 6436fba2c4..40771fbfb2 100644 --- a/react-icons/io/qr-scanner.d.ts +++ b/react-icons/io/qr-scanner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoQrScanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/quote.d.ts b/react-icons/io/quote.d.ts index 366c6395ff..3ac8748ba4 100644 --- a/react-icons/io/quote.d.ts +++ b/react-icons/io/quote.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/radio-waves.d.ts b/react-icons/io/radio-waves.d.ts index 3cf80e2a0b..67477d3c7c 100644 --- a/react-icons/io/radio-waves.d.ts +++ b/react-icons/io/radio-waves.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoRadioWaves extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/record.d.ts b/react-icons/io/record.d.ts index ad70cb6cbf..684246baab 100644 --- a/react-icons/io/record.d.ts +++ b/react-icons/io/record.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/refresh.d.ts b/react-icons/io/refresh.d.ts index c62284a276..7807a2c959 100644 --- a/react-icons/io/refresh.d.ts +++ b/react-icons/io/refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/reply-all.d.ts b/react-icons/io/reply-all.d.ts index 33d7774c06..eddb91d3ac 100644 --- a/react-icons/io/reply-all.d.ts +++ b/react-icons/io/reply-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/reply.d.ts b/react-icons/io/reply.d.ts index 235d1068de..12562cc12c 100644 --- a/react-icons/io/reply.d.ts +++ b/react-icons/io/reply.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ribbon-a.d.ts b/react-icons/io/ribbon-a.d.ts index 1ee693b002..db061cf034 100644 --- a/react-icons/io/ribbon-a.d.ts +++ b/react-icons/io/ribbon-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoRibbonA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/ribbon-b.d.ts b/react-icons/io/ribbon-b.d.ts index 9cca09c3a8..3a8991a5cb 100644 --- a/react-icons/io/ribbon-b.d.ts +++ b/react-icons/io/ribbon-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoRibbonB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/sad-outline.d.ts b/react-icons/io/sad-outline.d.ts index 1c6fd61305..89b8f73e49 100644 --- a/react-icons/io/sad-outline.d.ts +++ b/react-icons/io/sad-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/sad.d.ts b/react-icons/io/sad.d.ts index 32b641ce54..234f5886a9 100644 --- a/react-icons/io/sad.d.ts +++ b/react-icons/io/sad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSad extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/scissors.d.ts b/react-icons/io/scissors.d.ts index 9b7620bbdd..3186936580 100644 --- a/react-icons/io/scissors.d.ts +++ b/react-icons/io/scissors.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoScissors extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/search.d.ts b/react-icons/io/search.d.ts index 2ba5a16848..a3382d37ed 100644 --- a/react-icons/io/search.d.ts +++ b/react-icons/io/search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/settings.d.ts b/react-icons/io/settings.d.ts index 37cf11551e..f235de89af 100644 --- a/react-icons/io/settings.d.ts +++ b/react-icons/io/settings.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/share.d.ts b/react-icons/io/share.d.ts index b1c6858a5d..4f83849cae 100644 --- a/react-icons/io/share.d.ts +++ b/react-icons/io/share.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/shuffle.d.ts b/react-icons/io/shuffle.d.ts index 7709ea6cd6..e3949e4b17 100644 --- a/react-icons/io/shuffle.d.ts +++ b/react-icons/io/shuffle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/skip-backward.d.ts b/react-icons/io/skip-backward.d.ts index 997b9a6f77..298afea2cd 100644 --- a/react-icons/io/skip-backward.d.ts +++ b/react-icons/io/skip-backward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSkipBackward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/skip-forward.d.ts b/react-icons/io/skip-forward.d.ts index 4f34a9d7ba..c5351d9771 100644 --- a/react-icons/io/skip-forward.d.ts +++ b/react-icons/io/skip-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSkipForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-android-outline.d.ts b/react-icons/io/social-android-outline.d.ts index d701471dd1..4f47a05cfb 100644 --- a/react-icons/io/social-android-outline.d.ts +++ b/react-icons/io/social-android-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialAndroidOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-android.d.ts b/react-icons/io/social-android.d.ts index 402a24cf6f..1647ed428d 100644 --- a/react-icons/io/social-android.d.ts +++ b/react-icons/io/social-android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-angular-outline.d.ts b/react-icons/io/social-angular-outline.d.ts index ef8f6579ef..37f39545b4 100644 --- a/react-icons/io/social-angular-outline.d.ts +++ b/react-icons/io/social-angular-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialAngularOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-angular.d.ts b/react-icons/io/social-angular.d.ts index 4d9c9ae8c1..f1faa73df1 100644 --- a/react-icons/io/social-angular.d.ts +++ b/react-icons/io/social-angular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialAngular extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-apple-outline.d.ts b/react-icons/io/social-apple-outline.d.ts index 9cb3045198..5d4f1c412c 100644 --- a/react-icons/io/social-apple-outline.d.ts +++ b/react-icons/io/social-apple-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialAppleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-apple.d.ts b/react-icons/io/social-apple.d.ts index 31298b7c63..55326b0cde 100644 --- a/react-icons/io/social-apple.d.ts +++ b/react-icons/io/social-apple.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-bitcoin-outline.d.ts b/react-icons/io/social-bitcoin-outline.d.ts index 3b6bcefc1a..b4a83e2a11 100644 --- a/react-icons/io/social-bitcoin-outline.d.ts +++ b/react-icons/io/social-bitcoin-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialBitcoinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-bitcoin.d.ts b/react-icons/io/social-bitcoin.d.ts index 152f0c1f2b..bb3e98dded 100644 --- a/react-icons/io/social-bitcoin.d.ts +++ b/react-icons/io/social-bitcoin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialBitcoin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-buffer-outline.d.ts b/react-icons/io/social-buffer-outline.d.ts index 4b95f78758..af6d7bcdc8 100644 --- a/react-icons/io/social-buffer-outline.d.ts +++ b/react-icons/io/social-buffer-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialBufferOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-buffer.d.ts b/react-icons/io/social-buffer.d.ts index 861b3a0911..94317eb48a 100644 --- a/react-icons/io/social-buffer.d.ts +++ b/react-icons/io/social-buffer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialBuffer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-chrome-outline.d.ts b/react-icons/io/social-chrome-outline.d.ts index b680f6c83f..3124af59a9 100644 --- a/react-icons/io/social-chrome-outline.d.ts +++ b/react-icons/io/social-chrome-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialChromeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-chrome.d.ts b/react-icons/io/social-chrome.d.ts index 6ee5f5fe38..8d2ab18932 100644 --- a/react-icons/io/social-chrome.d.ts +++ b/react-icons/io/social-chrome.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialChrome extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-codepen-outline.d.ts b/react-icons/io/social-codepen-outline.d.ts index a123c85962..37786b297b 100644 --- a/react-icons/io/social-codepen-outline.d.ts +++ b/react-icons/io/social-codepen-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialCodepenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-codepen.d.ts b/react-icons/io/social-codepen.d.ts index 61561cf3ae..5de6828b5c 100644 --- a/react-icons/io/social-codepen.d.ts +++ b/react-icons/io/social-codepen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialCodepen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-css3-outline.d.ts b/react-icons/io/social-css3-outline.d.ts index de5aff309f..35a05ebeaa 100644 --- a/react-icons/io/social-css3-outline.d.ts +++ b/react-icons/io/social-css3-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialCss3Outline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-css3.d.ts b/react-icons/io/social-css3.d.ts index 08d966dd55..be28f99800 100644 --- a/react-icons/io/social-css3.d.ts +++ b/react-icons/io/social-css3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-designernews-outline.d.ts b/react-icons/io/social-designernews-outline.d.ts index 7bd38e555a..824f6caf92 100644 --- a/react-icons/io/social-designernews-outline.d.ts +++ b/react-icons/io/social-designernews-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDesignernewsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-designernews.d.ts b/react-icons/io/social-designernews.d.ts index cf3b19371e..8d813b856a 100644 --- a/react-icons/io/social-designernews.d.ts +++ b/react-icons/io/social-designernews.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDesignernews extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dribbble-outline.d.ts b/react-icons/io/social-dribbble-outline.d.ts index 9f6fa48cc9..9ae0da5d80 100644 --- a/react-icons/io/social-dribbble-outline.d.ts +++ b/react-icons/io/social-dribbble-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDribbbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dribbble.d.ts b/react-icons/io/social-dribbble.d.ts index b6377dcfec..633ced4be6 100644 --- a/react-icons/io/social-dribbble.d.ts +++ b/react-icons/io/social-dribbble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dropbox-outline.d.ts b/react-icons/io/social-dropbox-outline.d.ts index f26a72ab55..1d3b4d22c6 100644 --- a/react-icons/io/social-dropbox-outline.d.ts +++ b/react-icons/io/social-dropbox-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDropboxOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-dropbox.d.ts b/react-icons/io/social-dropbox.d.ts index a7e67cbdaf..7ce69798ae 100644 --- a/react-icons/io/social-dropbox.d.ts +++ b/react-icons/io/social-dropbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-euro-outline.d.ts b/react-icons/io/social-euro-outline.d.ts index de666464c3..fc00c4b3f2 100644 --- a/react-icons/io/social-euro-outline.d.ts +++ b/react-icons/io/social-euro-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialEuroOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-euro.d.ts b/react-icons/io/social-euro.d.ts index 05df3959f3..61c75816e5 100644 --- a/react-icons/io/social-euro.d.ts +++ b/react-icons/io/social-euro.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialEuro extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-facebook-outline.d.ts b/react-icons/io/social-facebook-outline.d.ts index 33071fa0d6..31bb07cfd4 100644 --- a/react-icons/io/social-facebook-outline.d.ts +++ b/react-icons/io/social-facebook-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialFacebookOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-facebook.d.ts b/react-icons/io/social-facebook.d.ts index a8ea48f3e1..99dd7b18a9 100644 --- a/react-icons/io/social-facebook.d.ts +++ b/react-icons/io/social-facebook.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-foursquare-outline.d.ts b/react-icons/io/social-foursquare-outline.d.ts index aa2d412d8b..3b3badca0e 100644 --- a/react-icons/io/social-foursquare-outline.d.ts +++ b/react-icons/io/social-foursquare-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialFoursquareOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-foursquare.d.ts b/react-icons/io/social-foursquare.d.ts index 4af14b20c1..7cb003c9fb 100644 --- a/react-icons/io/social-foursquare.d.ts +++ b/react-icons/io/social-foursquare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialFoursquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-freebsd-devil.d.ts b/react-icons/io/social-freebsd-devil.d.ts index c002b2946b..2de712c2b4 100644 --- a/react-icons/io/social-freebsd-devil.d.ts +++ b/react-icons/io/social-freebsd-devil.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialFreebsdDevil extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-github-outline.d.ts b/react-icons/io/social-github-outline.d.ts index 1af7af0e15..057dcbb3b3 100644 --- a/react-icons/io/social-github-outline.d.ts +++ b/react-icons/io/social-github-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGithubOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-github.d.ts b/react-icons/io/social-github.d.ts index b92e464939..86de23b2dd 100644 --- a/react-icons/io/social-github.d.ts +++ b/react-icons/io/social-github.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-google-outline.d.ts b/react-icons/io/social-google-outline.d.ts index fe834694e5..119c45ac4f 100644 --- a/react-icons/io/social-google-outline.d.ts +++ b/react-icons/io/social-google-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGoogleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-google.d.ts b/react-icons/io/social-google.d.ts index ef0b687b8e..9f499367e2 100644 --- a/react-icons/io/social-google.d.ts +++ b/react-icons/io/social-google.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGoogle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-googleplus-outline.d.ts b/react-icons/io/social-googleplus-outline.d.ts index eb39911934..83162bd581 100644 --- a/react-icons/io/social-googleplus-outline.d.ts +++ b/react-icons/io/social-googleplus-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGoogleplusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-googleplus.d.ts b/react-icons/io/social-googleplus.d.ts index 6307245f68..2e91bb342e 100644 --- a/react-icons/io/social-googleplus.d.ts +++ b/react-icons/io/social-googleplus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialGoogleplus extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-hackernews-outline.d.ts b/react-icons/io/social-hackernews-outline.d.ts index f50dd0d4fa..3bb1201bfa 100644 --- a/react-icons/io/social-hackernews-outline.d.ts +++ b/react-icons/io/social-hackernews-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialHackernewsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-hackernews.d.ts b/react-icons/io/social-hackernews.d.ts index 9dbf779fd4..1ffc5deddd 100644 --- a/react-icons/io/social-hackernews.d.ts +++ b/react-icons/io/social-hackernews.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialHackernews extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-html5-outline.d.ts b/react-icons/io/social-html5-outline.d.ts index f350210563..27d7cefad4 100644 --- a/react-icons/io/social-html5-outline.d.ts +++ b/react-icons/io/social-html5-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialHtml5Outline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-html5.d.ts b/react-icons/io/social-html5.d.ts index 199e976e4b..dc99c504ca 100644 --- a/react-icons/io/social-html5.d.ts +++ b/react-icons/io/social-html5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-instagram-outline.d.ts b/react-icons/io/social-instagram-outline.d.ts index b23db225a5..5a76c91428 100644 --- a/react-icons/io/social-instagram-outline.d.ts +++ b/react-icons/io/social-instagram-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialInstagramOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-instagram.d.ts b/react-icons/io/social-instagram.d.ts index 126b8c6c07..32c46a0cb0 100644 --- a/react-icons/io/social-instagram.d.ts +++ b/react-icons/io/social-instagram.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-javascript-outline.d.ts b/react-icons/io/social-javascript-outline.d.ts index 27ff65ef9a..915eee31c7 100644 --- a/react-icons/io/social-javascript-outline.d.ts +++ b/react-icons/io/social-javascript-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialJavascriptOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-javascript.d.ts b/react-icons/io/social-javascript.d.ts index a6234509b8..3e35c37924 100644 --- a/react-icons/io/social-javascript.d.ts +++ b/react-icons/io/social-javascript.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialJavascript extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-linkedin-outline.d.ts b/react-icons/io/social-linkedin-outline.d.ts index b1f7c9081b..e6df03bd6d 100644 --- a/react-icons/io/social-linkedin-outline.d.ts +++ b/react-icons/io/social-linkedin-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialLinkedinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-linkedin.d.ts b/react-icons/io/social-linkedin.d.ts index d18382fc37..0438233daa 100644 --- a/react-icons/io/social-linkedin.d.ts +++ b/react-icons/io/social-linkedin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-markdown.d.ts b/react-icons/io/social-markdown.d.ts index a24229e995..39bf11fcae 100644 --- a/react-icons/io/social-markdown.d.ts +++ b/react-icons/io/social-markdown.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialMarkdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-nodejs.d.ts b/react-icons/io/social-nodejs.d.ts index 12a1c9c7a9..ccb3697e7d 100644 --- a/react-icons/io/social-nodejs.d.ts +++ b/react-icons/io/social-nodejs.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialNodejs extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-octocat.d.ts b/react-icons/io/social-octocat.d.ts index 16d6459764..9bf46f1838 100644 --- a/react-icons/io/social-octocat.d.ts +++ b/react-icons/io/social-octocat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialOctocat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-pinterest-outline.d.ts b/react-icons/io/social-pinterest-outline.d.ts index 30f6f1dc26..6d286c2517 100644 --- a/react-icons/io/social-pinterest-outline.d.ts +++ b/react-icons/io/social-pinterest-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialPinterestOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-pinterest.d.ts b/react-icons/io/social-pinterest.d.ts index 62da22c9ba..6224823e67 100644 --- a/react-icons/io/social-pinterest.d.ts +++ b/react-icons/io/social-pinterest.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-python.d.ts b/react-icons/io/social-python.d.ts index 904c00771e..3910c80371 100644 --- a/react-icons/io/social-python.d.ts +++ b/react-icons/io/social-python.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialPython extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-reddit-outline.d.ts b/react-icons/io/social-reddit-outline.d.ts index 0c29fb1713..7b1789d379 100644 --- a/react-icons/io/social-reddit-outline.d.ts +++ b/react-icons/io/social-reddit-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialRedditOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-reddit.d.ts b/react-icons/io/social-reddit.d.ts index fea98a9427..3ece9a1721 100644 --- a/react-icons/io/social-reddit.d.ts +++ b/react-icons/io/social-reddit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialReddit extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-rss-outline.d.ts b/react-icons/io/social-rss-outline.d.ts index 982d12d958..4665436dcc 100644 --- a/react-icons/io/social-rss-outline.d.ts +++ b/react-icons/io/social-rss-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialRssOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-rss.d.ts b/react-icons/io/social-rss.d.ts index f8531f904e..57a06fc493 100644 --- a/react-icons/io/social-rss.d.ts +++ b/react-icons/io/social-rss.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-sass.d.ts b/react-icons/io/social-sass.d.ts index 335582a86e..58f49988c8 100644 --- a/react-icons/io/social-sass.d.ts +++ b/react-icons/io/social-sass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialSass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-skype-outline.d.ts b/react-icons/io/social-skype-outline.d.ts index d3bcc480a6..73115c6dde 100644 --- a/react-icons/io/social-skype-outline.d.ts +++ b/react-icons/io/social-skype-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialSkypeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-skype.d.ts b/react-icons/io/social-skype.d.ts index 1027e27bc4..09cf5fc442 100644 --- a/react-icons/io/social-skype.d.ts +++ b/react-icons/io/social-skype.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-snapchat-outline.d.ts b/react-icons/io/social-snapchat-outline.d.ts index 9224a9a53b..6de97eb8e2 100644 --- a/react-icons/io/social-snapchat-outline.d.ts +++ b/react-icons/io/social-snapchat-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialSnapchatOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-snapchat.d.ts b/react-icons/io/social-snapchat.d.ts index 85c73efbeb..b0a51fa116 100644 --- a/react-icons/io/social-snapchat.d.ts +++ b/react-icons/io/social-snapchat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialSnapchat extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tumblr-outline.d.ts b/react-icons/io/social-tumblr-outline.d.ts index c53ebeb776..5ff83deb6f 100644 --- a/react-icons/io/social-tumblr-outline.d.ts +++ b/react-icons/io/social-tumblr-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTumblrOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tumblr.d.ts b/react-icons/io/social-tumblr.d.ts index 21bedfaab4..5656710426 100644 --- a/react-icons/io/social-tumblr.d.ts +++ b/react-icons/io/social-tumblr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTumblr extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-tux.d.ts b/react-icons/io/social-tux.d.ts index bcb334e888..39afb29256 100644 --- a/react-icons/io/social-tux.d.ts +++ b/react-icons/io/social-tux.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTux extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitch-outline.d.ts b/react-icons/io/social-twitch-outline.d.ts index 58d0143fb1..6190e568b5 100644 --- a/react-icons/io/social-twitch-outline.d.ts +++ b/react-icons/io/social-twitch-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTwitchOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitch.d.ts b/react-icons/io/social-twitch.d.ts index 30fca19177..f33865501b 100644 --- a/react-icons/io/social-twitch.d.ts +++ b/react-icons/io/social-twitch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitter-outline.d.ts b/react-icons/io/social-twitter-outline.d.ts index 0b99f4915d..f729554730 100644 --- a/react-icons/io/social-twitter-outline.d.ts +++ b/react-icons/io/social-twitter-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTwitterOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-twitter.d.ts b/react-icons/io/social-twitter.d.ts index bb68f877a7..5ade8e36b8 100644 --- a/react-icons/io/social-twitter.d.ts +++ b/react-icons/io/social-twitter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-usd-outline.d.ts b/react-icons/io/social-usd-outline.d.ts index 87a374d90c..3dc60d944d 100644 --- a/react-icons/io/social-usd-outline.d.ts +++ b/react-icons/io/social-usd-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialUsdOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-usd.d.ts b/react-icons/io/social-usd.d.ts index 7e59793b77..f2c209b99d 100644 --- a/react-icons/io/social-usd.d.ts +++ b/react-icons/io/social-usd.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialUsd extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-vimeo-outline.d.ts b/react-icons/io/social-vimeo-outline.d.ts index bd06e0a589..e271564598 100644 --- a/react-icons/io/social-vimeo-outline.d.ts +++ b/react-icons/io/social-vimeo-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialVimeoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-vimeo.d.ts b/react-icons/io/social-vimeo.d.ts index db7ba718ee..ff12851c4d 100644 --- a/react-icons/io/social-vimeo.d.ts +++ b/react-icons/io/social-vimeo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-whatsapp-outline.d.ts b/react-icons/io/social-whatsapp-outline.d.ts index 52a8a670fc..6b39e949d3 100644 --- a/react-icons/io/social-whatsapp-outline.d.ts +++ b/react-icons/io/social-whatsapp-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWhatsappOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-whatsapp.d.ts b/react-icons/io/social-whatsapp.d.ts index 5ad86eaba9..aa17ea0260 100644 --- a/react-icons/io/social-whatsapp.d.ts +++ b/react-icons/io/social-whatsapp.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWhatsapp extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-windows-outline.d.ts b/react-icons/io/social-windows-outline.d.ts index 1b6a6bdaae..d0d8fc8622 100644 --- a/react-icons/io/social-windows-outline.d.ts +++ b/react-icons/io/social-windows-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWindowsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-windows.d.ts b/react-icons/io/social-windows.d.ts index e5b4ab4f0e..6b13578738 100644 --- a/react-icons/io/social-windows.d.ts +++ b/react-icons/io/social-windows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-wordpress-outline.d.ts b/react-icons/io/social-wordpress-outline.d.ts index 39b50eb908..d43f6ded07 100644 --- a/react-icons/io/social-wordpress-outline.d.ts +++ b/react-icons/io/social-wordpress-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWordpressOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-wordpress.d.ts b/react-icons/io/social-wordpress.d.ts index 465fbfeb5a..2003ec24ef 100644 --- a/react-icons/io/social-wordpress.d.ts +++ b/react-icons/io/social-wordpress.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialWordpress extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yahoo-outline.d.ts b/react-icons/io/social-yahoo-outline.d.ts index 8ba24396f3..cddafb8379 100644 --- a/react-icons/io/social-yahoo-outline.d.ts +++ b/react-icons/io/social-yahoo-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYahooOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yahoo.d.ts b/react-icons/io/social-yahoo.d.ts index 6765dae4fd..d6a2569882 100644 --- a/react-icons/io/social-yahoo.d.ts +++ b/react-icons/io/social-yahoo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYahoo extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yen-outline.d.ts b/react-icons/io/social-yen-outline.d.ts index 2d4cb13638..48539380d1 100644 --- a/react-icons/io/social-yen-outline.d.ts +++ b/react-icons/io/social-yen-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-yen.d.ts b/react-icons/io/social-yen.d.ts index 32c1d38c0c..e3647335ca 100644 --- a/react-icons/io/social-yen.d.ts +++ b/react-icons/io/social-yen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYen extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-youtube-outline.d.ts b/react-icons/io/social-youtube-outline.d.ts index aa264d9269..06e6a83808 100644 --- a/react-icons/io/social-youtube-outline.d.ts +++ b/react-icons/io/social-youtube-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYoutubeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/social-youtube.d.ts b/react-icons/io/social-youtube.d.ts index 2c95b92289..5bde01897b 100644 --- a/react-icons/io/social-youtube.d.ts +++ b/react-icons/io/social-youtube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSocialYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/soup-can-outline.d.ts b/react-icons/io/soup-can-outline.d.ts index acb476af05..954c9390e6 100644 --- a/react-icons/io/soup-can-outline.d.ts +++ b/react-icons/io/soup-can-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSoupCanOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/soup-can.d.ts b/react-icons/io/soup-can.d.ts index ea47ab79d4..f5124bc894 100644 --- a/react-icons/io/soup-can.d.ts +++ b/react-icons/io/soup-can.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSoupCan extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/speakerphone.d.ts b/react-icons/io/speakerphone.d.ts index d8572af7e5..fae69283aa 100644 --- a/react-icons/io/speakerphone.d.ts +++ b/react-icons/io/speakerphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSpeakerphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/speedometer.d.ts b/react-icons/io/speedometer.d.ts index bac34b411c..953719ab9b 100644 --- a/react-icons/io/speedometer.d.ts +++ b/react-icons/io/speedometer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSpeedometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/spoon.d.ts b/react-icons/io/spoon.d.ts index d524e9d8e8..c287364fcc 100644 --- a/react-icons/io/spoon.d.ts +++ b/react-icons/io/spoon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSpoon extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/star.d.ts b/react-icons/io/star.d.ts index e8c0290df9..986d5f2716 100644 --- a/react-icons/io/star.d.ts +++ b/react-icons/io/star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/stats-bars.d.ts b/react-icons/io/stats-bars.d.ts index 0190e36b1a..78396a5c9d 100644 --- a/react-icons/io/stats-bars.d.ts +++ b/react-icons/io/stats-bars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoStatsBars extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/steam.d.ts b/react-icons/io/steam.d.ts index 299f5178eb..fcd318b525 100644 --- a/react-icons/io/steam.d.ts +++ b/react-icons/io/steam.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoSteam extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/stop.d.ts b/react-icons/io/stop.d.ts index 803a7e1168..40e7f3e0a7 100644 --- a/react-icons/io/stop.d.ts +++ b/react-icons/io/stop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thermometer.d.ts b/react-icons/io/thermometer.d.ts index 1d12a78157..21d2bc2453 100644 --- a/react-icons/io/thermometer.d.ts +++ b/react-icons/io/thermometer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoThermometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thumbsdown.d.ts b/react-icons/io/thumbsdown.d.ts index 4ddb3eefd3..49ea8e4622 100644 --- a/react-icons/io/thumbsdown.d.ts +++ b/react-icons/io/thumbsdown.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoThumbsdown extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/thumbsup.d.ts b/react-icons/io/thumbsup.d.ts index 1a18ff5518..1e7ed433d8 100644 --- a/react-icons/io/thumbsup.d.ts +++ b/react-icons/io/thumbsup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoThumbsup extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/toggle-filled.d.ts b/react-icons/io/toggle-filled.d.ts index fa53a3270c..8a15cfc117 100644 --- a/react-icons/io/toggle-filled.d.ts +++ b/react-icons/io/toggle-filled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoToggleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/toggle.d.ts b/react-icons/io/toggle.d.ts index a47e348928..ca97228b50 100644 --- a/react-icons/io/toggle.d.ts +++ b/react-icons/io/toggle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoToggle extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/transgender.d.ts b/react-icons/io/transgender.d.ts index f844d58ded..f33634b408 100644 --- a/react-icons/io/transgender.d.ts +++ b/react-icons/io/transgender.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTransgender extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trash-a.d.ts b/react-icons/io/trash-a.d.ts index 1e9289c450..99583c1d83 100644 --- a/react-icons/io/trash-a.d.ts +++ b/react-icons/io/trash-a.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTrashA extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trash-b.d.ts b/react-icons/io/trash-b.d.ts index b83fb80c6e..ef38e67a6d 100644 --- a/react-icons/io/trash-b.d.ts +++ b/react-icons/io/trash-b.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTrashB extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/trophy.d.ts b/react-icons/io/trophy.d.ts index 190f41f4f0..8c8813e494 100644 --- a/react-icons/io/trophy.d.ts +++ b/react-icons/io/trophy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTrophy extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/tshirt-outline.d.ts b/react-icons/io/tshirt-outline.d.ts index 9abb8d8855..46e02a6601 100644 --- a/react-icons/io/tshirt-outline.d.ts +++ b/react-icons/io/tshirt-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTshirtOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/tshirt.d.ts b/react-icons/io/tshirt.d.ts index 2542976a4a..dda96fb87f 100644 --- a/react-icons/io/tshirt.d.ts +++ b/react-icons/io/tshirt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoTshirt extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/umbrella.d.ts b/react-icons/io/umbrella.d.ts index 4ce53a4254..833822ae0e 100644 --- a/react-icons/io/umbrella.d.ts +++ b/react-icons/io/umbrella.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoUmbrella extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/university.d.ts b/react-icons/io/university.d.ts index a4d09ec898..9cda36aea6 100644 --- a/react-icons/io/university.d.ts +++ b/react-icons/io/university.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoUniversity extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/unlocked.d.ts b/react-icons/io/unlocked.d.ts index e64b8c24ab..7889eead25 100644 --- a/react-icons/io/unlocked.d.ts +++ b/react-icons/io/unlocked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoUnlocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/upload.d.ts b/react-icons/io/upload.d.ts index e75aea206a..7cf6ab8809 100644 --- a/react-icons/io/upload.d.ts +++ b/react-icons/io/upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/usb.d.ts b/react-icons/io/usb.d.ts index 261e94feaf..9f1f993f0f 100644 --- a/react-icons/io/usb.d.ts +++ b/react-icons/io/usb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/videocamera.d.ts b/react-icons/io/videocamera.d.ts index 95e509bff3..2139a133c8 100644 --- a/react-icons/io/videocamera.d.ts +++ b/react-icons/io/videocamera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoVideocamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-high.d.ts b/react-icons/io/volume-high.d.ts index a6d53f534f..3f74606653 100644 --- a/react-icons/io/volume-high.d.ts +++ b/react-icons/io/volume-high.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoVolumeHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-low.d.ts b/react-icons/io/volume-low.d.ts index d2ed4cfc86..7d2fe40601 100644 --- a/react-icons/io/volume-low.d.ts +++ b/react-icons/io/volume-low.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoVolumeLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-medium.d.ts b/react-icons/io/volume-medium.d.ts index 353822883d..c49f51c704 100644 --- a/react-icons/io/volume-medium.d.ts +++ b/react-icons/io/volume-medium.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoVolumeMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/volume-mute.d.ts b/react-icons/io/volume-mute.d.ts index 82ed44e8f9..3dd3b649db 100644 --- a/react-icons/io/volume-mute.d.ts +++ b/react-icons/io/volume-mute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wand.d.ts b/react-icons/io/wand.d.ts index 4f3270455e..e66356d944 100644 --- a/react-icons/io/wand.d.ts +++ b/react-icons/io/wand.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWand extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/waterdrop.d.ts b/react-icons/io/waterdrop.d.ts index 5f0685a85d..a4cb424719 100644 --- a/react-icons/io/waterdrop.d.ts +++ b/react-icons/io/waterdrop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWaterdrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wifi.d.ts b/react-icons/io/wifi.d.ts index 8732a95264..5ca80ad571 100644 --- a/react-icons/io/wifi.d.ts +++ b/react-icons/io/wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wineglass.d.ts b/react-icons/io/wineglass.d.ts index c196ca273f..40baadf053 100644 --- a/react-icons/io/wineglass.d.ts +++ b/react-icons/io/wineglass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWineglass extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/woman.d.ts b/react-icons/io/woman.d.ts index 1359d9cf99..12c5aa9a4b 100644 --- a/react-icons/io/woman.d.ts +++ b/react-icons/io/woman.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWoman extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/wrench.d.ts b/react-icons/io/wrench.d.ts index 24b1b59d4a..8cf4dd3b05 100644 --- a/react-icons/io/wrench.d.ts +++ b/react-icons/io/wrench.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoWrench extends React.Component { } \ No newline at end of file diff --git a/react-icons/io/xbox.d.ts b/react-icons/io/xbox.d.ts index 86eb5706e0..2bcc1b7821 100644 --- a/react-icons/io/xbox.d.ts +++ b/react-icons/io/xbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class IoXbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/3d-rotation.d.ts b/react-icons/md/3d-rotation.d.ts index 19e765ab5f..5baf87cc8f 100644 --- a/react-icons/md/3d-rotation.d.ts +++ b/react-icons/md/3d-rotation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class Md3dRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ac-unit.d.ts b/react-icons/md/ac-unit.d.ts index 58bedaa746..d669f407c6 100644 --- a/react-icons/md/ac-unit.d.ts +++ b/react-icons/md/ac-unit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAcUnit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-alarm.d.ts b/react-icons/md/access-alarm.d.ts index 119b5519db..6e71f6f2e0 100644 --- a/react-icons/md/access-alarm.d.ts +++ b/react-icons/md/access-alarm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccessAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-alarms.d.ts b/react-icons/md/access-alarms.d.ts index 0ea0447905..564449ef7a 100644 --- a/react-icons/md/access-alarms.d.ts +++ b/react-icons/md/access-alarms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccessAlarms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/access-time.d.ts b/react-icons/md/access-time.d.ts index 38b2738390..d1fcbc1a3b 100644 --- a/react-icons/md/access-time.d.ts +++ b/react-icons/md/access-time.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccessTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/accessibility.d.ts b/react-icons/md/accessibility.d.ts index 278057de76..959140dcca 100644 --- a/react-icons/md/accessibility.d.ts +++ b/react-icons/md/accessibility.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccessibility extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/accessible.d.ts b/react-icons/md/accessible.d.ts index 6893d94002..b400b48ede 100644 --- a/react-icons/md/accessible.d.ts +++ b/react-icons/md/accessible.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccessible extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-balance-wallet.d.ts b/react-icons/md/account-balance-wallet.d.ts index ce4a3289f4..069f34a720 100644 --- a/react-icons/md/account-balance-wallet.d.ts +++ b/react-icons/md/account-balance-wallet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccountBalanceWallet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-balance.d.ts b/react-icons/md/account-balance.d.ts index 457d0bb081..37303d1f6e 100644 --- a/react-icons/md/account-balance.d.ts +++ b/react-icons/md/account-balance.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccountBalance extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-box.d.ts b/react-icons/md/account-box.d.ts index f4f3d1adf5..44c8595e78 100644 --- a/react-icons/md/account-box.d.ts +++ b/react-icons/md/account-box.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccountBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/account-circle.d.ts b/react-icons/md/account-circle.d.ts index f9743e9304..0a807530f2 100644 --- a/react-icons/md/account-circle.d.ts +++ b/react-icons/md/account-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAccountCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/adb.d.ts b/react-icons/md/adb.d.ts index f35bce79fa..3af7d58662 100644 --- a/react-icons/md/adb.d.ts +++ b/react-icons/md/adb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAdb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-a-photo.d.ts b/react-icons/md/add-a-photo.d.ts index e9709bb745..6331a3bbc7 100644 --- a/react-icons/md/add-a-photo.d.ts +++ b/react-icons/md/add-a-photo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddAPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-alarm.d.ts b/react-icons/md/add-alarm.d.ts index 443f68dbea..f506cb3b1d 100644 --- a/react-icons/md/add-alarm.d.ts +++ b/react-icons/md/add-alarm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-alert.d.ts b/react-icons/md/add-alert.d.ts index cb594072d0..df41f36259 100644 --- a/react-icons/md/add-alert.d.ts +++ b/react-icons/md/add-alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-box.d.ts b/react-icons/md/add-box.d.ts index e37e29e4de..dfe7770e8b 100644 --- a/react-icons/md/add-box.d.ts +++ b/react-icons/md/add-box.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-circle-outline.d.ts b/react-icons/md/add-circle-outline.d.ts index 4114c83a51..d30180b3e9 100644 --- a/react-icons/md/add-circle-outline.d.ts +++ b/react-icons/md/add-circle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-circle.d.ts b/react-icons/md/add-circle.d.ts index 32b0438ccc..9a4d37755f 100644 --- a/react-icons/md/add-circle.d.ts +++ b/react-icons/md/add-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-location.d.ts b/react-icons/md/add-location.d.ts index c028f1852a..541b279478 100644 --- a/react-icons/md/add-location.d.ts +++ b/react-icons/md/add-location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-shopping-cart.d.ts b/react-icons/md/add-shopping-cart.d.ts index adbbd1821b..2f61871b11 100644 --- a/react-icons/md/add-shopping-cart.d.ts +++ b/react-icons/md/add-shopping-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-to-photos.d.ts b/react-icons/md/add-to-photos.d.ts index 7e8c00f276..9082ede1c2 100644 --- a/react-icons/md/add-to-photos.d.ts +++ b/react-icons/md/add-to-photos.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddToPhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add-to-queue.d.ts b/react-icons/md/add-to-queue.d.ts index ca3cad9f74..7f75c27f7f 100644 --- a/react-icons/md/add-to-queue.d.ts +++ b/react-icons/md/add-to-queue.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAddToQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/add.d.ts b/react-icons/md/add.d.ts index f5cbee9adc..3e4a377de5 100644 --- a/react-icons/md/add.d.ts +++ b/react-icons/md/add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/adjust.d.ts b/react-icons/md/adjust.d.ts index 1a52fcd840..1f83a46a10 100644 --- a/react-icons/md/adjust.d.ts +++ b/react-icons/md/adjust.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAdjust extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-flat-angled.d.ts b/react-icons/md/airline-seat-flat-angled.d.ts index 63ee4a6362..2b6e6ddda8 100644 --- a/react-icons/md/airline-seat-flat-angled.d.ts +++ b/react-icons/md/airline-seat-flat-angled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatFlatAngled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-flat.d.ts b/react-icons/md/airline-seat-flat.d.ts index 165a767f3e..5856f07d62 100644 --- a/react-icons/md/airline-seat-flat.d.ts +++ b/react-icons/md/airline-seat-flat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatFlat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-individual-suite.d.ts b/react-icons/md/airline-seat-individual-suite.d.ts index d230031301..ef1d9fa50e 100644 --- a/react-icons/md/airline-seat-individual-suite.d.ts +++ b/react-icons/md/airline-seat-individual-suite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatIndividualSuite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-extra.d.ts b/react-icons/md/airline-seat-legroom-extra.d.ts index 6f3bd28393..f67bfc9f91 100644 --- a/react-icons/md/airline-seat-legroom-extra.d.ts +++ b/react-icons/md/airline-seat-legroom-extra.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatLegroomExtra extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-normal.d.ts b/react-icons/md/airline-seat-legroom-normal.d.ts index 35a8c00596..a265014d4a 100644 --- a/react-icons/md/airline-seat-legroom-normal.d.ts +++ b/react-icons/md/airline-seat-legroom-normal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatLegroomNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-legroom-reduced.d.ts b/react-icons/md/airline-seat-legroom-reduced.d.ts index 0fb47f4dc9..eecdfec1cb 100644 --- a/react-icons/md/airline-seat-legroom-reduced.d.ts +++ b/react-icons/md/airline-seat-legroom-reduced.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatLegroomReduced extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-recline-extra.d.ts b/react-icons/md/airline-seat-recline-extra.d.ts index 3af6223633..572f269aa1 100644 --- a/react-icons/md/airline-seat-recline-extra.d.ts +++ b/react-icons/md/airline-seat-recline-extra.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatReclineExtra extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airline-seat-recline-normal.d.ts b/react-icons/md/airline-seat-recline-normal.d.ts index 2b7e334ee0..1ed876d358 100644 --- a/react-icons/md/airline-seat-recline-normal.d.ts +++ b/react-icons/md/airline-seat-recline-normal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirlineSeatReclineNormal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplanemode-active.d.ts b/react-icons/md/airplanemode-active.d.ts index c94a1b43ba..484f778a58 100644 --- a/react-icons/md/airplanemode-active.d.ts +++ b/react-icons/md/airplanemode-active.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirplanemodeActive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplanemode-inactive.d.ts b/react-icons/md/airplanemode-inactive.d.ts index 3e786eedc2..635a12bdef 100644 --- a/react-icons/md/airplanemode-inactive.d.ts +++ b/react-icons/md/airplanemode-inactive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirplanemodeInactive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airplay.d.ts b/react-icons/md/airplay.d.ts index 5ff9ea4f74..cec2a78401 100644 --- a/react-icons/md/airplay.d.ts +++ b/react-icons/md/airplay.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirplay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/airport-shuttle.d.ts b/react-icons/md/airport-shuttle.d.ts index b9c472bd4a..9a32318974 100644 --- a/react-icons/md/airport-shuttle.d.ts +++ b/react-icons/md/airport-shuttle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAirportShuttle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-add.d.ts b/react-icons/md/alarm-add.d.ts index c8eaf5d017..a28d930d1a 100644 --- a/react-icons/md/alarm-add.d.ts +++ b/react-icons/md/alarm-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAlarmAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-off.d.ts b/react-icons/md/alarm-off.d.ts index 6c9583ea6d..a0536d3b15 100644 --- a/react-icons/md/alarm-off.d.ts +++ b/react-icons/md/alarm-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAlarmOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm-on.d.ts b/react-icons/md/alarm-on.d.ts index 2ae4c856fd..a932fbc804 100644 --- a/react-icons/md/alarm-on.d.ts +++ b/react-icons/md/alarm-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAlarmOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/alarm.d.ts b/react-icons/md/alarm.d.ts index 8850827bf8..d4a7a5d483 100644 --- a/react-icons/md/alarm.d.ts +++ b/react-icons/md/alarm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAlarm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/album.d.ts b/react-icons/md/album.d.ts index 0706d24c4f..1c1467ab44 100644 --- a/react-icons/md/album.d.ts +++ b/react-icons/md/album.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAlbum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/all-inclusive.d.ts b/react-icons/md/all-inclusive.d.ts index 29636993ed..813bd4d797 100644 --- a/react-icons/md/all-inclusive.d.ts +++ b/react-icons/md/all-inclusive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAllInclusive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/all-out.d.ts b/react-icons/md/all-out.d.ts index 7d9c85efdf..3e35f2ce02 100644 --- a/react-icons/md/all-out.d.ts +++ b/react-icons/md/all-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAllOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/android.d.ts b/react-icons/md/android.d.ts index cd501a7c56..ff487c07af 100644 --- a/react-icons/md/android.d.ts +++ b/react-icons/md/android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/announcement.d.ts b/react-icons/md/announcement.d.ts index 6dd45cf8fc..0b94b6aae5 100644 --- a/react-icons/md/announcement.d.ts +++ b/react-icons/md/announcement.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAnnouncement extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/apps.d.ts b/react-icons/md/apps.d.ts index e606dd5002..e57589f5de 100644 --- a/react-icons/md/apps.d.ts +++ b/react-icons/md/apps.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdApps extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/archive.d.ts b/react-icons/md/archive.d.ts index f11b161368..2054cc628a 100644 --- a/react-icons/md/archive.d.ts +++ b/react-icons/md/archive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-back.d.ts b/react-icons/md/arrow-back.d.ts index e8e01df8b0..3d13fb04fd 100644 --- a/react-icons/md/arrow-back.d.ts +++ b/react-icons/md/arrow-back.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-downward.d.ts b/react-icons/md/arrow-downward.d.ts index 8d8425f3ec..3bf892322b 100644 --- a/react-icons/md/arrow-downward.d.ts +++ b/react-icons/md/arrow-downward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowDownward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-down-circle.d.ts b/react-icons/md/arrow-drop-down-circle.d.ts index f8ccf1da95..506de19fbf 100644 --- a/react-icons/md/arrow-drop-down-circle.d.ts +++ b/react-icons/md/arrow-drop-down-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowDropDownCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-down.d.ts b/react-icons/md/arrow-drop-down.d.ts index 3e84ea4edb..1c8335c4af 100644 --- a/react-icons/md/arrow-drop-down.d.ts +++ b/react-icons/md/arrow-drop-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowDropDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-drop-up.d.ts b/react-icons/md/arrow-drop-up.d.ts index 0d0ea12f7d..fd156f6207 100644 --- a/react-icons/md/arrow-drop-up.d.ts +++ b/react-icons/md/arrow-drop-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowDropUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-forward.d.ts b/react-icons/md/arrow-forward.d.ts index 77ec2664cd..ccf6f2b6c4 100644 --- a/react-icons/md/arrow-forward.d.ts +++ b/react-icons/md/arrow-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/arrow-upward.d.ts b/react-icons/md/arrow-upward.d.ts index c310093ef3..7df406cc3e 100644 --- a/react-icons/md/arrow-upward.d.ts +++ b/react-icons/md/arrow-upward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArrowUpward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/art-track.d.ts b/react-icons/md/art-track.d.ts index aac05766d3..b8dee6f0e4 100644 --- a/react-icons/md/art-track.d.ts +++ b/react-icons/md/art-track.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdArtTrack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/aspect-ratio.d.ts b/react-icons/md/aspect-ratio.d.ts index dfba6900ad..f3436d9234 100644 --- a/react-icons/md/aspect-ratio.d.ts +++ b/react-icons/md/aspect-ratio.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAspectRatio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assessment.d.ts b/react-icons/md/assessment.d.ts index 9a5b370b5d..5767a7213f 100644 --- a/react-icons/md/assessment.d.ts +++ b/react-icons/md/assessment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssessment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-ind.d.ts b/react-icons/md/assignment-ind.d.ts index 173222418a..545bbbf6fd 100644 --- a/react-icons/md/assignment-ind.d.ts +++ b/react-icons/md/assignment-ind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignmentInd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-late.d.ts b/react-icons/md/assignment-late.d.ts index 04c04762ff..6b1024669d 100644 --- a/react-icons/md/assignment-late.d.ts +++ b/react-icons/md/assignment-late.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignmentLate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-return.d.ts b/react-icons/md/assignment-return.d.ts index 77bac5b502..33be1d9c7c 100644 --- a/react-icons/md/assignment-return.d.ts +++ b/react-icons/md/assignment-return.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignmentReturn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-returned.d.ts b/react-icons/md/assignment-returned.d.ts index 0f98090ed3..7033893557 100644 --- a/react-icons/md/assignment-returned.d.ts +++ b/react-icons/md/assignment-returned.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignmentReturned extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment-turned-in.d.ts b/react-icons/md/assignment-turned-in.d.ts index 5a39d4a04c..f29ab08efd 100644 --- a/react-icons/md/assignment-turned-in.d.ts +++ b/react-icons/md/assignment-turned-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignmentTurnedIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assignment.d.ts b/react-icons/md/assignment.d.ts index c44a9712e2..f9301311a9 100644 --- a/react-icons/md/assignment.d.ts +++ b/react-icons/md/assignment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssignment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assistant-photo.d.ts b/react-icons/md/assistant-photo.d.ts index 03c8221f9d..eb92371118 100644 --- a/react-icons/md/assistant-photo.d.ts +++ b/react-icons/md/assistant-photo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssistantPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/assistant.d.ts b/react-icons/md/assistant.d.ts index dfa373633a..cd2ebe0ddb 100644 --- a/react-icons/md/assistant.d.ts +++ b/react-icons/md/assistant.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAssistant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attach-file.d.ts b/react-icons/md/attach-file.d.ts index d6bd375aa6..13e5dd8128 100644 --- a/react-icons/md/attach-file.d.ts +++ b/react-icons/md/attach-file.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAttachFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attach-money.d.ts b/react-icons/md/attach-money.d.ts index 2547240b9b..daac66a11f 100644 --- a/react-icons/md/attach-money.d.ts +++ b/react-icons/md/attach-money.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAttachMoney extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/attachment.d.ts b/react-icons/md/attachment.d.ts index 319803626d..d0183021e8 100644 --- a/react-icons/md/attachment.d.ts +++ b/react-icons/md/attachment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAttachment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/audiotrack.d.ts b/react-icons/md/audiotrack.d.ts index a7dcac4f5b..4ff4b05d0b 100644 --- a/react-icons/md/audiotrack.d.ts +++ b/react-icons/md/audiotrack.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAudiotrack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/autorenew.d.ts b/react-icons/md/autorenew.d.ts index d6d3ad5882..a1f18e85ec 100644 --- a/react-icons/md/autorenew.d.ts +++ b/react-icons/md/autorenew.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAutorenew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/av-timer.d.ts b/react-icons/md/av-timer.d.ts index dc2123ce77..2577275bd7 100644 --- a/react-icons/md/av-timer.d.ts +++ b/react-icons/md/av-timer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdAvTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/backspace.d.ts b/react-icons/md/backspace.d.ts index 2f2b351a08..527260ef66 100644 --- a/react-icons/md/backspace.d.ts +++ b/react-icons/md/backspace.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/backup.d.ts b/react-icons/md/backup.d.ts index 9ebfb6e163..8ac15863a9 100644 --- a/react-icons/md/backup.d.ts +++ b/react-icons/md/backup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBackup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-alert.d.ts b/react-icons/md/battery-alert.d.ts index 416976e8da..c73b0d78ed 100644 --- a/react-icons/md/battery-alert.d.ts +++ b/react-icons/md/battery-alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBatteryAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-charging-full.d.ts b/react-icons/md/battery-charging-full.d.ts index 382a0fd32d..a95817ec91 100644 --- a/react-icons/md/battery-charging-full.d.ts +++ b/react-icons/md/battery-charging-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBatteryChargingFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-full.d.ts b/react-icons/md/battery-full.d.ts index 34e16d5cec..07eb211980 100644 --- a/react-icons/md/battery-full.d.ts +++ b/react-icons/md/battery-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-std.d.ts b/react-icons/md/battery-std.d.ts index a8d6b896f7..59d3a7ccc1 100644 --- a/react-icons/md/battery-std.d.ts +++ b/react-icons/md/battery-std.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBatteryStd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/battery-unknown.d.ts b/react-icons/md/battery-unknown.d.ts index b46f9ffd27..70d9743358 100644 --- a/react-icons/md/battery-unknown.d.ts +++ b/react-icons/md/battery-unknown.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBatteryUnknown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/beach-access.d.ts b/react-icons/md/beach-access.d.ts index cda4a2440f..59d2e62b0d 100644 --- a/react-icons/md/beach-access.d.ts +++ b/react-icons/md/beach-access.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBeachAccess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/beenhere.d.ts b/react-icons/md/beenhere.d.ts index 5a222aed28..f7b37702bd 100644 --- a/react-icons/md/beenhere.d.ts +++ b/react-icons/md/beenhere.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBeenhere extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/block.d.ts b/react-icons/md/block.d.ts index 60f382ec29..12d1546762 100644 --- a/react-icons/md/block.d.ts +++ b/react-icons/md/block.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBlock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-audio.d.ts b/react-icons/md/bluetooth-audio.d.ts index 64b2d08e95..5f5e959350 100644 --- a/react-icons/md/bluetooth-audio.d.ts +++ b/react-icons/md/bluetooth-audio.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBluetoothAudio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-connected.d.ts b/react-icons/md/bluetooth-connected.d.ts index 152f72af9c..a9b116dc26 100644 --- a/react-icons/md/bluetooth-connected.d.ts +++ b/react-icons/md/bluetooth-connected.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBluetoothConnected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-disabled.d.ts b/react-icons/md/bluetooth-disabled.d.ts index 16787e69be..4f7ec1af73 100644 --- a/react-icons/md/bluetooth-disabled.d.ts +++ b/react-icons/md/bluetooth-disabled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBluetoothDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth-searching.d.ts b/react-icons/md/bluetooth-searching.d.ts index 915fcdbe3b..279edd6f58 100644 --- a/react-icons/md/bluetooth-searching.d.ts +++ b/react-icons/md/bluetooth-searching.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBluetoothSearching extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bluetooth.d.ts b/react-icons/md/bluetooth.d.ts index 6d3d10d0df..756729b2a8 100644 --- a/react-icons/md/bluetooth.d.ts +++ b/react-icons/md/bluetooth.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-circular.d.ts b/react-icons/md/blur-circular.d.ts index 932925a316..73c798bee2 100644 --- a/react-icons/md/blur-circular.d.ts +++ b/react-icons/md/blur-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBlurCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-linear.d.ts b/react-icons/md/blur-linear.d.ts index 0a72b6c6a6..8e719b5641 100644 --- a/react-icons/md/blur-linear.d.ts +++ b/react-icons/md/blur-linear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBlurLinear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-off.d.ts b/react-icons/md/blur-off.d.ts index 4c3fce012e..b9ab1375e4 100644 --- a/react-icons/md/blur-off.d.ts +++ b/react-icons/md/blur-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBlurOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/blur-on.d.ts b/react-icons/md/blur-on.d.ts index bdfc8a53a9..512adfc9bc 100644 --- a/react-icons/md/blur-on.d.ts +++ b/react-icons/md/blur-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBlurOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/book.d.ts b/react-icons/md/book.d.ts index 2a1ed10849..4c663242ee 100644 --- a/react-icons/md/book.d.ts +++ b/react-icons/md/book.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bookmark-outline.d.ts b/react-icons/md/bookmark-outline.d.ts index 74aebf5678..93269f2fda 100644 --- a/react-icons/md/bookmark-outline.d.ts +++ b/react-icons/md/bookmark-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBookmarkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bookmark.d.ts b/react-icons/md/bookmark.d.ts index 2b23c0dd2f..5026dbae42 100644 --- a/react-icons/md/bookmark.d.ts +++ b/react-icons/md/bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-all.d.ts b/react-icons/md/border-all.d.ts index 3e1d491618..efc6c0cfc4 100644 --- a/react-icons/md/border-all.d.ts +++ b/react-icons/md/border-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-bottom.d.ts b/react-icons/md/border-bottom.d.ts index e19b8f3022..430d959555 100644 --- a/react-icons/md/border-bottom.d.ts +++ b/react-icons/md/border-bottom.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderBottom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-clear.d.ts b/react-icons/md/border-clear.d.ts index e334c9af3a..d329daca54 100644 --- a/react-icons/md/border-clear.d.ts +++ b/react-icons/md/border-clear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-color.d.ts b/react-icons/md/border-color.d.ts index a15796c8b7..09e17e9c31 100644 --- a/react-icons/md/border-color.d.ts +++ b/react-icons/md/border-color.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderColor extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-horizontal.d.ts b/react-icons/md/border-horizontal.d.ts index 6b4a418272..c42ca432f9 100644 --- a/react-icons/md/border-horizontal.d.ts +++ b/react-icons/md/border-horizontal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-inner.d.ts b/react-icons/md/border-inner.d.ts index 5cb3a4c990..5b6f3d450d 100644 --- a/react-icons/md/border-inner.d.ts +++ b/react-icons/md/border-inner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderInner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-left.d.ts b/react-icons/md/border-left.d.ts index 353f7a6446..3d6de8faf2 100644 --- a/react-icons/md/border-left.d.ts +++ b/react-icons/md/border-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-outer.d.ts b/react-icons/md/border-outer.d.ts index cff1e7d824..3d5b389df7 100644 --- a/react-icons/md/border-outer.d.ts +++ b/react-icons/md/border-outer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderOuter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-right.d.ts b/react-icons/md/border-right.d.ts index be0243dbea..5de3157ecd 100644 --- a/react-icons/md/border-right.d.ts +++ b/react-icons/md/border-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-style.d.ts b/react-icons/md/border-style.d.ts index fa54f25dd2..7703d5d7d1 100644 --- a/react-icons/md/border-style.d.ts +++ b/react-icons/md/border-style.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-top.d.ts b/react-icons/md/border-top.d.ts index 5590914fed..8edb997586 100644 --- a/react-icons/md/border-top.d.ts +++ b/react-icons/md/border-top.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderTop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/border-vertical.d.ts b/react-icons/md/border-vertical.d.ts index c406f3df32..3525a61d73 100644 --- a/react-icons/md/border-vertical.d.ts +++ b/react-icons/md/border-vertical.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBorderVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/branding-watermark.d.ts b/react-icons/md/branding-watermark.d.ts index 9c53bc6b01..e335969ba5 100644 --- a/react-icons/md/branding-watermark.d.ts +++ b/react-icons/md/branding-watermark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrandingWatermark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-1.d.ts b/react-icons/md/brightness-1.d.ts index ddc2ab0546..01a657f8b8 100644 --- a/react-icons/md/brightness-1.d.ts +++ b/react-icons/md/brightness-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-2.d.ts b/react-icons/md/brightness-2.d.ts index 702c6bdb0c..20c54043c2 100644 --- a/react-icons/md/brightness-2.d.ts +++ b/react-icons/md/brightness-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-3.d.ts b/react-icons/md/brightness-3.d.ts index 5cc3747f95..83802280a5 100644 --- a/react-icons/md/brightness-3.d.ts +++ b/react-icons/md/brightness-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-4.d.ts b/react-icons/md/brightness-4.d.ts index 2ee97fd50f..73ff592ec8 100644 --- a/react-icons/md/brightness-4.d.ts +++ b/react-icons/md/brightness-4.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-5.d.ts b/react-icons/md/brightness-5.d.ts index a7bddd84f7..919f665433 100644 --- a/react-icons/md/brightness-5.d.ts +++ b/react-icons/md/brightness-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-6.d.ts b/react-icons/md/brightness-6.d.ts index 2b272f3ead..997fc7a448 100644 --- a/react-icons/md/brightness-6.d.ts +++ b/react-icons/md/brightness-6.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-7.d.ts b/react-icons/md/brightness-7.d.ts index d46ab5ccab..53507ba1c9 100644 --- a/react-icons/md/brightness-7.d.ts +++ b/react-icons/md/brightness-7.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightness7 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-auto.d.ts b/react-icons/md/brightness-auto.d.ts index e3f0e57bf4..3332063ea5 100644 --- a/react-icons/md/brightness-auto.d.ts +++ b/react-icons/md/brightness-auto.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightnessAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-high.d.ts b/react-icons/md/brightness-high.d.ts index 341ee34b20..f01da1b199 100644 --- a/react-icons/md/brightness-high.d.ts +++ b/react-icons/md/brightness-high.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightnessHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-low.d.ts b/react-icons/md/brightness-low.d.ts index ee60528413..c788f55f19 100644 --- a/react-icons/md/brightness-low.d.ts +++ b/react-icons/md/brightness-low.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightnessLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brightness-medium.d.ts b/react-icons/md/brightness-medium.d.ts index 2be9995869..4ad2f158ef 100644 --- a/react-icons/md/brightness-medium.d.ts +++ b/react-icons/md/brightness-medium.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrightnessMedium extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/broken-image.d.ts b/react-icons/md/broken-image.d.ts index 623bb33bb8..92795dd0f1 100644 --- a/react-icons/md/broken-image.d.ts +++ b/react-icons/md/broken-image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrokenImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/brush.d.ts b/react-icons/md/brush.d.ts index 64d753b38f..f28533ff70 100644 --- a/react-icons/md/brush.d.ts +++ b/react-icons/md/brush.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bubble-chart.d.ts b/react-icons/md/bubble-chart.d.ts index 4cfe3aa2ae..2d6a56a805 100644 --- a/react-icons/md/bubble-chart.d.ts +++ b/react-icons/md/bubble-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBubbleChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/bug-report.d.ts b/react-icons/md/bug-report.d.ts index 0c0ec6e20e..64f831ee2f 100644 --- a/react-icons/md/bug-report.d.ts +++ b/react-icons/md/bug-report.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBugReport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/build.d.ts b/react-icons/md/build.d.ts index 3523760005..55bf404788 100644 --- a/react-icons/md/build.d.ts +++ b/react-icons/md/build.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBuild extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/burst-mode.d.ts b/react-icons/md/burst-mode.d.ts index 3a5b696556..014e6c715e 100644 --- a/react-icons/md/burst-mode.d.ts +++ b/react-icons/md/burst-mode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBurstMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/business-center.d.ts b/react-icons/md/business-center.d.ts index 26cfd38279..edb362155d 100644 --- a/react-icons/md/business-center.d.ts +++ b/react-icons/md/business-center.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBusinessCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/business.d.ts b/react-icons/md/business.d.ts index ee164a1f8a..5a0f7b9cd8 100644 --- a/react-icons/md/business.d.ts +++ b/react-icons/md/business.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdBusiness extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cached.d.ts b/react-icons/md/cached.d.ts index 82f1de3846..ce96b23815 100644 --- a/react-icons/md/cached.d.ts +++ b/react-icons/md/cached.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCached extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cake.d.ts b/react-icons/md/cake.d.ts index 3aec6e753d..108da6088b 100644 --- a/react-icons/md/cake.d.ts +++ b/react-icons/md/cake.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCake extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-end.d.ts b/react-icons/md/call-end.d.ts index 8503cd0495..72b32b3af5 100644 --- a/react-icons/md/call-end.d.ts +++ b/react-icons/md/call-end.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallEnd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-made.d.ts b/react-icons/md/call-made.d.ts index e992aaa135..76cbf99806 100644 --- a/react-icons/md/call-made.d.ts +++ b/react-icons/md/call-made.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallMade extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-merge.d.ts b/react-icons/md/call-merge.d.ts index 18517a6f12..233c21dfbb 100644 --- a/react-icons/md/call-merge.d.ts +++ b/react-icons/md/call-merge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-missed-outgoing.d.ts b/react-icons/md/call-missed-outgoing.d.ts index 3e0b2bf351..31d5be931b 100644 --- a/react-icons/md/call-missed-outgoing.d.ts +++ b/react-icons/md/call-missed-outgoing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallMissedOutgoing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-missed.d.ts b/react-icons/md/call-missed.d.ts index 09fc83dac5..1afac7aa48 100644 --- a/react-icons/md/call-missed.d.ts +++ b/react-icons/md/call-missed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallMissed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-received.d.ts b/react-icons/md/call-received.d.ts index f7f4fd0bb9..17b7ccddd3 100644 --- a/react-icons/md/call-received.d.ts +++ b/react-icons/md/call-received.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallReceived extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-split.d.ts b/react-icons/md/call-split.d.ts index 7159575113..be66cabb95 100644 --- a/react-icons/md/call-split.d.ts +++ b/react-icons/md/call-split.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallSplit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call-to-action.d.ts b/react-icons/md/call-to-action.d.ts index c9a48703e6..2acb152ef9 100644 --- a/react-icons/md/call-to-action.d.ts +++ b/react-icons/md/call-to-action.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCallToAction extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/call.d.ts b/react-icons/md/call.d.ts index 1c2040ace7..0567e5901e 100644 --- a/react-icons/md/call.d.ts +++ b/react-icons/md/call.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-alt.d.ts b/react-icons/md/camera-alt.d.ts index d6c3172baa..a132993c14 100644 --- a/react-icons/md/camera-alt.d.ts +++ b/react-icons/md/camera-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCameraAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-enhance.d.ts b/react-icons/md/camera-enhance.d.ts index 28d3e6a791..ad66f838b7 100644 --- a/react-icons/md/camera-enhance.d.ts +++ b/react-icons/md/camera-enhance.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCameraEnhance extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-front.d.ts b/react-icons/md/camera-front.d.ts index 8e8285e738..d1c9b610d2 100644 --- a/react-icons/md/camera-front.d.ts +++ b/react-icons/md/camera-front.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCameraFront extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-rear.d.ts b/react-icons/md/camera-rear.d.ts index 4968c3246e..4f03a6090b 100644 --- a/react-icons/md/camera-rear.d.ts +++ b/react-icons/md/camera-rear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCameraRear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera-roll.d.ts b/react-icons/md/camera-roll.d.ts index 938cc391c0..48ad74db02 100644 --- a/react-icons/md/camera-roll.d.ts +++ b/react-icons/md/camera-roll.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCameraRoll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/camera.d.ts b/react-icons/md/camera.d.ts index 59820447fa..45543b6be5 100644 --- a/react-icons/md/camera.d.ts +++ b/react-icons/md/camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cancel.d.ts b/react-icons/md/cancel.d.ts index d7bd231cf6..3532c847c4 100644 --- a/react-icons/md/cancel.d.ts +++ b/react-icons/md/cancel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-giftcard.d.ts b/react-icons/md/card-giftcard.d.ts index bb35b79ab4..c85b7ff87c 100644 --- a/react-icons/md/card-giftcard.d.ts +++ b/react-icons/md/card-giftcard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCardGiftcard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-membership.d.ts b/react-icons/md/card-membership.d.ts index e1c995c8d6..5027205ed9 100644 --- a/react-icons/md/card-membership.d.ts +++ b/react-icons/md/card-membership.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCardMembership extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/card-travel.d.ts b/react-icons/md/card-travel.d.ts index cf5f4b444e..b0f8cba9aa 100644 --- a/react-icons/md/card-travel.d.ts +++ b/react-icons/md/card-travel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCardTravel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/casino.d.ts b/react-icons/md/casino.d.ts index 020c36edf7..cffd6a65f2 100644 --- a/react-icons/md/casino.d.ts +++ b/react-icons/md/casino.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCasino extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cast-connected.d.ts b/react-icons/md/cast-connected.d.ts index e9092f7d0e..e135e44ddc 100644 --- a/react-icons/md/cast-connected.d.ts +++ b/react-icons/md/cast-connected.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCastConnected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cast.d.ts b/react-icons/md/cast.d.ts index 61fc21f368..36272af852 100644 --- a/react-icons/md/cast.d.ts +++ b/react-icons/md/cast.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCast extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/center-focus-strong.d.ts b/react-icons/md/center-focus-strong.d.ts index 3ec0dac572..be09082391 100644 --- a/react-icons/md/center-focus-strong.d.ts +++ b/react-icons/md/center-focus-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCenterFocusStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/center-focus-weak.d.ts b/react-icons/md/center-focus-weak.d.ts index 1ee251df6a..4e8bfe29bd 100644 --- a/react-icons/md/center-focus-weak.d.ts +++ b/react-icons/md/center-focus-weak.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCenterFocusWeak extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/change-history.d.ts b/react-icons/md/change-history.d.ts index 03b54bf9cb..42705e708e 100644 --- a/react-icons/md/change-history.d.ts +++ b/react-icons/md/change-history.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChangeHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat-bubble-outline.d.ts b/react-icons/md/chat-bubble-outline.d.ts index 1f9bfe9cd8..1069d91d64 100644 --- a/react-icons/md/chat-bubble-outline.d.ts +++ b/react-icons/md/chat-bubble-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChatBubbleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat-bubble.d.ts b/react-icons/md/chat-bubble.d.ts index 1e22764d25..bb4d2bbc1b 100644 --- a/react-icons/md/chat-bubble.d.ts +++ b/react-icons/md/chat-bubble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChatBubble extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chat.d.ts b/react-icons/md/chat.d.ts index 1ffa7a2243..e3d34d7930 100644 --- a/react-icons/md/chat.d.ts +++ b/react-icons/md/chat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-box-outline-blank.d.ts b/react-icons/md/check-box-outline-blank.d.ts index 634bdf2a2c..50caae8229 100644 --- a/react-icons/md/check-box-outline-blank.d.ts +++ b/react-icons/md/check-box-outline-blank.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCheckBoxOutlineBlank extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-box.d.ts b/react-icons/md/check-box.d.ts index ed7930efd9..dce7bcf698 100644 --- a/react-icons/md/check-box.d.ts +++ b/react-icons/md/check-box.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCheckBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check-circle.d.ts b/react-icons/md/check-circle.d.ts index de13aaafb5..fae81f60d8 100644 --- a/react-icons/md/check-circle.d.ts +++ b/react-icons/md/check-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCheckCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/check.d.ts b/react-icons/md/check.d.ts index 01cff35374..e15b5b55e9 100644 --- a/react-icons/md/check.d.ts +++ b/react-icons/md/check.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chevron-left.d.ts b/react-icons/md/chevron-left.d.ts index f035ad104c..47bb5bf24d 100644 --- a/react-icons/md/chevron-left.d.ts +++ b/react-icons/md/chevron-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chevron-right.d.ts b/react-icons/md/chevron-right.d.ts index 20d2ea43a5..cf22f73890 100644 --- a/react-icons/md/chevron-right.d.ts +++ b/react-icons/md/chevron-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/child-care.d.ts b/react-icons/md/child-care.d.ts index 055ad660fc..024cf1ffbc 100644 --- a/react-icons/md/child-care.d.ts +++ b/react-icons/md/child-care.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChildCare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/child-friendly.d.ts b/react-icons/md/child-friendly.d.ts index 34745844d6..dd1f8c0644 100644 --- a/react-icons/md/child-friendly.d.ts +++ b/react-icons/md/child-friendly.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChildFriendly extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/chrome-reader-mode.d.ts b/react-icons/md/chrome-reader-mode.d.ts index a8cbcaf328..079311a10e 100644 --- a/react-icons/md/chrome-reader-mode.d.ts +++ b/react-icons/md/chrome-reader-mode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdChromeReaderMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/class.d.ts b/react-icons/md/class.d.ts index 8d027bc449..77d349f8e8 100644 --- a/react-icons/md/class.d.ts +++ b/react-icons/md/class.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdClass extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/clear-all.d.ts b/react-icons/md/clear-all.d.ts index 8fd8b0f0ef..b0fb4dd942 100644 --- a/react-icons/md/clear-all.d.ts +++ b/react-icons/md/clear-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdClearAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/clear.d.ts b/react-icons/md/clear.d.ts index 5f3d4a0ef7..379892f44e 100644 --- a/react-icons/md/clear.d.ts +++ b/react-icons/md/clear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/close.d.ts b/react-icons/md/close.d.ts index a505e930f1..5ddc77afae 100644 --- a/react-icons/md/close.d.ts +++ b/react-icons/md/close.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdClose extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/closed-caption.d.ts b/react-icons/md/closed-caption.d.ts index 9b473ae236..07b97ac228 100644 --- a/react-icons/md/closed-caption.d.ts +++ b/react-icons/md/closed-caption.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdClosedCaption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-circle.d.ts b/react-icons/md/cloud-circle.d.ts index 5bf3352b85..2189e3a3e0 100644 --- a/react-icons/md/cloud-circle.d.ts +++ b/react-icons/md/cloud-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-done.d.ts b/react-icons/md/cloud-done.d.ts index 337188364b..39367a4ca4 100644 --- a/react-icons/md/cloud-done.d.ts +++ b/react-icons/md/cloud-done.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-download.d.ts b/react-icons/md/cloud-download.d.ts index 96b778b938..8808610991 100644 --- a/react-icons/md/cloud-download.d.ts +++ b/react-icons/md/cloud-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-off.d.ts b/react-icons/md/cloud-off.d.ts index 8679a3a2d6..dd09a7cc0f 100644 --- a/react-icons/md/cloud-off.d.ts +++ b/react-icons/md/cloud-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-queue.d.ts b/react-icons/md/cloud-queue.d.ts index 6348b0cc53..f0dd8112fd 100644 --- a/react-icons/md/cloud-queue.d.ts +++ b/react-icons/md/cloud-queue.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud-upload.d.ts b/react-icons/md/cloud-upload.d.ts index 301b539cfb..0f753ded53 100644 --- a/react-icons/md/cloud-upload.d.ts +++ b/react-icons/md/cloud-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloudUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/cloud.d.ts b/react-icons/md/cloud.d.ts index c3bddc054c..0a2e5d2e72 100644 --- a/react-icons/md/cloud.d.ts +++ b/react-icons/md/cloud.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCloud extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/code.d.ts b/react-icons/md/code.d.ts index d0a339c9cb..223fd7470c 100644 --- a/react-icons/md/code.d.ts +++ b/react-icons/md/code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/collections-bookmark.d.ts b/react-icons/md/collections-bookmark.d.ts index e0c0a7c17e..c3e5511547 100644 --- a/react-icons/md/collections-bookmark.d.ts +++ b/react-icons/md/collections-bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCollectionsBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/collections.d.ts b/react-icons/md/collections.d.ts index 8b977ef58f..7df8054631 100644 --- a/react-icons/md/collections.d.ts +++ b/react-icons/md/collections.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCollections extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/color-lens.d.ts b/react-icons/md/color-lens.d.ts index e436db591e..8109a0cfd5 100644 --- a/react-icons/md/color-lens.d.ts +++ b/react-icons/md/color-lens.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdColorLens extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/colorize.d.ts b/react-icons/md/colorize.d.ts index a6fe6863b3..3fc584ee0e 100644 --- a/react-icons/md/colorize.d.ts +++ b/react-icons/md/colorize.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdColorize extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/comment.d.ts b/react-icons/md/comment.d.ts index 1e97d4cb01..4625d9cf85 100644 --- a/react-icons/md/comment.d.ts +++ b/react-icons/md/comment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/compare-arrows.d.ts b/react-icons/md/compare-arrows.d.ts index 61420ba2c4..c75289f9e4 100644 --- a/react-icons/md/compare-arrows.d.ts +++ b/react-icons/md/compare-arrows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCompareArrows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/compare.d.ts b/react-icons/md/compare.d.ts index 6240434f3c..df7a941715 100644 --- a/react-icons/md/compare.d.ts +++ b/react-icons/md/compare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCompare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/computer.d.ts b/react-icons/md/computer.d.ts index 9d72743312..abc78fc8f3 100644 --- a/react-icons/md/computer.d.ts +++ b/react-icons/md/computer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdComputer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/confirmation-number.d.ts b/react-icons/md/confirmation-number.d.ts index e5a74280b2..8fcd093d84 100644 --- a/react-icons/md/confirmation-number.d.ts +++ b/react-icons/md/confirmation-number.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdConfirmationNumber extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contact-mail.d.ts b/react-icons/md/contact-mail.d.ts index 0ade90df21..f9d8712b87 100644 --- a/react-icons/md/contact-mail.d.ts +++ b/react-icons/md/contact-mail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContactMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contact-phone.d.ts b/react-icons/md/contact-phone.d.ts index cd298779c2..c190b95d8a 100644 --- a/react-icons/md/contact-phone.d.ts +++ b/react-icons/md/contact-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContactPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/contacts.d.ts b/react-icons/md/contacts.d.ts index b21ebeadcf..75656af163 100644 --- a/react-icons/md/contacts.d.ts +++ b/react-icons/md/contacts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-copy.d.ts b/react-icons/md/content-copy.d.ts index 1fa4c2c4e7..51d06bc2c6 100644 --- a/react-icons/md/content-copy.d.ts +++ b/react-icons/md/content-copy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContentCopy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-cut.d.ts b/react-icons/md/content-cut.d.ts index ad12a7dcbe..a81b3d8616 100644 --- a/react-icons/md/content-cut.d.ts +++ b/react-icons/md/content-cut.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContentCut extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/content-paste.d.ts b/react-icons/md/content-paste.d.ts index 91ca107619..eb7289f95f 100644 --- a/react-icons/md/content-paste.d.ts +++ b/react-icons/md/content-paste.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdContentPaste extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/control-point-duplicate.d.ts b/react-icons/md/control-point-duplicate.d.ts index fefa78758f..721d682643 100644 --- a/react-icons/md/control-point-duplicate.d.ts +++ b/react-icons/md/control-point-duplicate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdControlPointDuplicate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/control-point.d.ts b/react-icons/md/control-point.d.ts index d30f5b828e..e14d664e15 100644 --- a/react-icons/md/control-point.d.ts +++ b/react-icons/md/control-point.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdControlPoint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/copyright.d.ts b/react-icons/md/copyright.d.ts index d638a0472f..7c83106a7c 100644 --- a/react-icons/md/copyright.d.ts +++ b/react-icons/md/copyright.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCopyright extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/create-new-folder.d.ts b/react-icons/md/create-new-folder.d.ts index 6bb187aca2..ec4527cfa9 100644 --- a/react-icons/md/create-new-folder.d.ts +++ b/react-icons/md/create-new-folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCreateNewFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/create.d.ts b/react-icons/md/create.d.ts index a844c16865..5494ec4b77 100644 --- a/react-icons/md/create.d.ts +++ b/react-icons/md/create.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCreate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/credit-card.d.ts b/react-icons/md/credit-card.d.ts index 2518880524..47c9086839 100644 --- a/react-icons/md/credit-card.d.ts +++ b/react-icons/md/credit-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-16-9.d.ts b/react-icons/md/crop-16-9.d.ts index 36db803d73..244308b25a 100644 --- a/react-icons/md/crop-16-9.d.ts +++ b/react-icons/md/crop-16-9.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCrop169 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-3-2.d.ts b/react-icons/md/crop-3-2.d.ts index 1a9d515e06..624060b6f9 100644 --- a/react-icons/md/crop-3-2.d.ts +++ b/react-icons/md/crop-3-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCrop32 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-5-4.d.ts b/react-icons/md/crop-5-4.d.ts index 8d273f0b70..da7929d07c 100644 --- a/react-icons/md/crop-5-4.d.ts +++ b/react-icons/md/crop-5-4.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCrop54 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-7-5.d.ts b/react-icons/md/crop-7-5.d.ts index b4ca3793ec..e285f6edf1 100644 --- a/react-icons/md/crop-7-5.d.ts +++ b/react-icons/md/crop-7-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCrop75 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-din.d.ts b/react-icons/md/crop-din.d.ts index d872be1e03..e9b99b9006 100644 --- a/react-icons/md/crop-din.d.ts +++ b/react-icons/md/crop-din.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropDin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-free.d.ts b/react-icons/md/crop-free.d.ts index 31b56f854b..9c7255e461 100644 --- a/react-icons/md/crop-free.d.ts +++ b/react-icons/md/crop-free.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropFree extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-landscape.d.ts b/react-icons/md/crop-landscape.d.ts index 10a47e3100..8b36f2a8a4 100644 --- a/react-icons/md/crop-landscape.d.ts +++ b/react-icons/md/crop-landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-original.d.ts b/react-icons/md/crop-original.d.ts index a5514257cb..1f4b9c7d92 100644 --- a/react-icons/md/crop-original.d.ts +++ b/react-icons/md/crop-original.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropOriginal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-portrait.d.ts b/react-icons/md/crop-portrait.d.ts index d18ac7c85f..19e8c65731 100644 --- a/react-icons/md/crop-portrait.d.ts +++ b/react-icons/md/crop-portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-rotate.d.ts b/react-icons/md/crop-rotate.d.ts index b259775e9c..0c1eee80a5 100644 --- a/react-icons/md/crop-rotate.d.ts +++ b/react-icons/md/crop-rotate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropRotate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop-square.d.ts b/react-icons/md/crop-square.d.ts index 350872f53a..bc638a6557 100644 --- a/react-icons/md/crop-square.d.ts +++ b/react-icons/md/crop-square.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCropSquare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/crop.d.ts b/react-icons/md/crop.d.ts index 45a5438d78..84ed23905e 100644 --- a/react-icons/md/crop.d.ts +++ b/react-icons/md/crop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdCrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dashboard.d.ts b/react-icons/md/dashboard.d.ts index f9bab209a4..0af8cd753a 100644 --- a/react-icons/md/dashboard.d.ts +++ b/react-icons/md/dashboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDashboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/data-usage.d.ts b/react-icons/md/data-usage.d.ts index 9c74afde64..2689156d97 100644 --- a/react-icons/md/data-usage.d.ts +++ b/react-icons/md/data-usage.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDataUsage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/date-range.d.ts b/react-icons/md/date-range.d.ts index 14366e2d04..3a2bba2ffa 100644 --- a/react-icons/md/date-range.d.ts +++ b/react-icons/md/date-range.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDateRange extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dehaze.d.ts b/react-icons/md/dehaze.d.ts index e2fdf12415..ed8589b3a0 100644 --- a/react-icons/md/dehaze.d.ts +++ b/react-icons/md/dehaze.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDehaze extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete-forever.d.ts b/react-icons/md/delete-forever.d.ts index a46f65ba9e..840f1dad08 100644 --- a/react-icons/md/delete-forever.d.ts +++ b/react-icons/md/delete-forever.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDeleteForever extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete-sweep.d.ts b/react-icons/md/delete-sweep.d.ts index 4ffc936e8a..7fe69af108 100644 --- a/react-icons/md/delete-sweep.d.ts +++ b/react-icons/md/delete-sweep.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDeleteSweep extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/delete.d.ts b/react-icons/md/delete.d.ts index 1045f39a3b..dc1f8d8bf5 100644 --- a/react-icons/md/delete.d.ts +++ b/react-icons/md/delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/description.d.ts b/react-icons/md/description.d.ts index 721bb25213..9ad045edb4 100644 --- a/react-icons/md/description.d.ts +++ b/react-icons/md/description.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDescription extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/desktop-mac.d.ts b/react-icons/md/desktop-mac.d.ts index 761168179f..16f9a11877 100644 --- a/react-icons/md/desktop-mac.d.ts +++ b/react-icons/md/desktop-mac.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDesktopMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/desktop-windows.d.ts b/react-icons/md/desktop-windows.d.ts index 70335a5419..65bbba2972 100644 --- a/react-icons/md/desktop-windows.d.ts +++ b/react-icons/md/desktop-windows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDesktopWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/details.d.ts b/react-icons/md/details.d.ts index 1f73d98048..d8fd11ed19 100644 --- a/react-icons/md/details.d.ts +++ b/react-icons/md/details.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDetails extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/developer-board.d.ts b/react-icons/md/developer-board.d.ts index f8957b9e5f..a3d9afe014 100644 --- a/react-icons/md/developer-board.d.ts +++ b/react-icons/md/developer-board.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDeveloperBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/developer-mode.d.ts b/react-icons/md/developer-mode.d.ts index 40872e163c..771a928248 100644 --- a/react-icons/md/developer-mode.d.ts +++ b/react-icons/md/developer-mode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDeveloperMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/device-hub.d.ts b/react-icons/md/device-hub.d.ts index 666bca2a81..a1cd8a247b 100644 --- a/react-icons/md/device-hub.d.ts +++ b/react-icons/md/device-hub.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDeviceHub extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/devices-other.d.ts b/react-icons/md/devices-other.d.ts index 07c18026c3..c4cf71c489 100644 --- a/react-icons/md/devices-other.d.ts +++ b/react-icons/md/devices-other.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDevicesOther extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/devices.d.ts b/react-icons/md/devices.d.ts index 81946c825f..05965ed4c8 100644 --- a/react-icons/md/devices.d.ts +++ b/react-icons/md/devices.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDevices extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dialer-sip.d.ts b/react-icons/md/dialer-sip.d.ts index b29d3be8b2..428efb3451 100644 --- a/react-icons/md/dialer-sip.d.ts +++ b/react-icons/md/dialer-sip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDialerSip extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dialpad.d.ts b/react-icons/md/dialpad.d.ts index 7644b13154..23046158e1 100644 --- a/react-icons/md/dialpad.d.ts +++ b/react-icons/md/dialpad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDialpad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-bike.d.ts b/react-icons/md/directions-bike.d.ts index ba7c94af4a..74b2ca331d 100644 --- a/react-icons/md/directions-bike.d.ts +++ b/react-icons/md/directions-bike.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsBike extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-boat.d.ts b/react-icons/md/directions-boat.d.ts index eae9599e6f..30950e1a77 100644 --- a/react-icons/md/directions-boat.d.ts +++ b/react-icons/md/directions-boat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsBoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-bus.d.ts b/react-icons/md/directions-bus.d.ts index 0e3e2446c9..c2a61de5a0 100644 --- a/react-icons/md/directions-bus.d.ts +++ b/react-icons/md/directions-bus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsBus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-car.d.ts b/react-icons/md/directions-car.d.ts index f62997b885..dd12e66d45 100644 --- a/react-icons/md/directions-car.d.ts +++ b/react-icons/md/directions-car.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsCar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-ferry.d.ts b/react-icons/md/directions-ferry.d.ts index 237ca41571..e4803c8177 100644 --- a/react-icons/md/directions-ferry.d.ts +++ b/react-icons/md/directions-ferry.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsFerry extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-railway.d.ts b/react-icons/md/directions-railway.d.ts index 0037a8b11f..c1d586e225 100644 --- a/react-icons/md/directions-railway.d.ts +++ b/react-icons/md/directions-railway.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsRailway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-run.d.ts b/react-icons/md/directions-run.d.ts index 391e653b1d..f82b78ac1b 100644 --- a/react-icons/md/directions-run.d.ts +++ b/react-icons/md/directions-run.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsRun extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-subway.d.ts b/react-icons/md/directions-subway.d.ts index 79a7688234..ecb0a00b5c 100644 --- a/react-icons/md/directions-subway.d.ts +++ b/react-icons/md/directions-subway.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-transit.d.ts b/react-icons/md/directions-transit.d.ts index 4871738ecc..c3cb44b411 100644 --- a/react-icons/md/directions-transit.d.ts +++ b/react-icons/md/directions-transit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsTransit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions-walk.d.ts b/react-icons/md/directions-walk.d.ts index 4616d50b87..5ccc16e7bd 100644 --- a/react-icons/md/directions-walk.d.ts +++ b/react-icons/md/directions-walk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirectionsWalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/directions.d.ts b/react-icons/md/directions.d.ts index 01691f867c..7b6430d431 100644 --- a/react-icons/md/directions.d.ts +++ b/react-icons/md/directions.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDirections extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/disc-full.d.ts b/react-icons/md/disc-full.d.ts index e736a79d07..ff37cecece 100644 --- a/react-icons/md/disc-full.d.ts +++ b/react-icons/md/disc-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDiscFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dns.d.ts b/react-icons/md/dns.d.ts index 99a7856a51..ccc20e316f 100644 --- a/react-icons/md/dns.d.ts +++ b/react-icons/md/dns.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDns extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb-alt.d.ts b/react-icons/md/do-not-disturb-alt.d.ts index 09e86eef05..a93d3dac8e 100644 --- a/react-icons/md/do-not-disturb-alt.d.ts +++ b/react-icons/md/do-not-disturb-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDoNotDisturbAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb-off.d.ts b/react-icons/md/do-not-disturb-off.d.ts index 2362b9e9d2..a5dbcb45f3 100644 --- a/react-icons/md/do-not-disturb-off.d.ts +++ b/react-icons/md/do-not-disturb-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDoNotDisturbOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/do-not-disturb.d.ts b/react-icons/md/do-not-disturb.d.ts index edd7483acd..6be2245a32 100644 --- a/react-icons/md/do-not-disturb.d.ts +++ b/react-icons/md/do-not-disturb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDoNotDisturb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dock.d.ts b/react-icons/md/dock.d.ts index 506d1ed153..a2a98b8d4e 100644 --- a/react-icons/md/dock.d.ts +++ b/react-icons/md/dock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/domain.d.ts b/react-icons/md/domain.d.ts index 87996cd9c9..9a8b2164b2 100644 --- a/react-icons/md/domain.d.ts +++ b/react-icons/md/domain.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDomain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/done-all.d.ts b/react-icons/md/done-all.d.ts index a8c1d3e5c5..6152a6f5b3 100644 --- a/react-icons/md/done-all.d.ts +++ b/react-icons/md/done-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDoneAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/done.d.ts b/react-icons/md/done.d.ts index 8e25324f44..fe668587d1 100644 --- a/react-icons/md/done.d.ts +++ b/react-icons/md/done.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/donut-large.d.ts b/react-icons/md/donut-large.d.ts index b53d82a2ec..aae8262f6d 100644 --- a/react-icons/md/donut-large.d.ts +++ b/react-icons/md/donut-large.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDonutLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/donut-small.d.ts b/react-icons/md/donut-small.d.ts index b764a1029c..0d39674ed4 100644 --- a/react-icons/md/donut-small.d.ts +++ b/react-icons/md/donut-small.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDonutSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drafts.d.ts b/react-icons/md/drafts.d.ts index e1542cfdf7..985f2f1872 100644 --- a/react-icons/md/drafts.d.ts +++ b/react-icons/md/drafts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDrafts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drag-handle.d.ts b/react-icons/md/drag-handle.d.ts index 6e379c3c2a..3f284844b8 100644 --- a/react-icons/md/drag-handle.d.ts +++ b/react-icons/md/drag-handle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDragHandle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/drive-eta.d.ts b/react-icons/md/drive-eta.d.ts index 4f972b7028..c892b39db7 100644 --- a/react-icons/md/drive-eta.d.ts +++ b/react-icons/md/drive-eta.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDriveEta extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/dvr.d.ts b/react-icons/md/dvr.d.ts index 437300e895..552713e9e9 100644 --- a/react-icons/md/dvr.d.ts +++ b/react-icons/md/dvr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdDvr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/edit-location.d.ts b/react-icons/md/edit-location.d.ts index f5830a2364..19b3ba13a8 100644 --- a/react-icons/md/edit-location.d.ts +++ b/react-icons/md/edit-location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEditLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/edit.d.ts b/react-icons/md/edit.d.ts index f1ddc123bb..c10b313bb6 100644 --- a/react-icons/md/edit.d.ts +++ b/react-icons/md/edit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/eject.d.ts b/react-icons/md/eject.d.ts index 3867f6a56f..375a041643 100644 --- a/react-icons/md/eject.d.ts +++ b/react-icons/md/eject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/email.d.ts b/react-icons/md/email.d.ts index ed37c51e94..8ec2fa3d2c 100644 --- a/react-icons/md/email.d.ts +++ b/react-icons/md/email.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEmail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/enhanced-encryption.d.ts b/react-icons/md/enhanced-encryption.d.ts index 07f0ceafe5..d7a92c977f 100644 --- a/react-icons/md/enhanced-encryption.d.ts +++ b/react-icons/md/enhanced-encryption.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEnhancedEncryption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/equalizer.d.ts b/react-icons/md/equalizer.d.ts index f4aafe6899..09940b01a2 100644 --- a/react-icons/md/equalizer.d.ts +++ b/react-icons/md/equalizer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEqualizer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/error-outline.d.ts b/react-icons/md/error-outline.d.ts index dbea1bb1c5..15f5baa73b 100644 --- a/react-icons/md/error-outline.d.ts +++ b/react-icons/md/error-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdErrorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/error.d.ts b/react-icons/md/error.d.ts index 0b25e65088..0394dd57d7 100644 --- a/react-icons/md/error.d.ts +++ b/react-icons/md/error.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdError extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/euro-symbol.d.ts b/react-icons/md/euro-symbol.d.ts index 733ea4d094..d6e1491cb1 100644 --- a/react-icons/md/euro-symbol.d.ts +++ b/react-icons/md/euro-symbol.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEuroSymbol extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ev-station.d.ts b/react-icons/md/ev-station.d.ts index 7239630fcc..de277821d6 100644 --- a/react-icons/md/ev-station.d.ts +++ b/react-icons/md/ev-station.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEvStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-available.d.ts b/react-icons/md/event-available.d.ts index e26f3cffca..534b122f93 100644 --- a/react-icons/md/event-available.d.ts +++ b/react-icons/md/event-available.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEventAvailable extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-busy.d.ts b/react-icons/md/event-busy.d.ts index 3ccf5ab74e..1fc007e305 100644 --- a/react-icons/md/event-busy.d.ts +++ b/react-icons/md/event-busy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEventBusy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-note.d.ts b/react-icons/md/event-note.d.ts index 13052c998e..525a26caae 100644 --- a/react-icons/md/event-note.d.ts +++ b/react-icons/md/event-note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEventNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event-seat.d.ts b/react-icons/md/event-seat.d.ts index fe2832150d..389624466a 100644 --- a/react-icons/md/event-seat.d.ts +++ b/react-icons/md/event-seat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEventSeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/event.d.ts b/react-icons/md/event.d.ts index 2c913354c5..bc4663643d 100644 --- a/react-icons/md/event.d.ts +++ b/react-icons/md/event.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdEvent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exit-to-app.d.ts b/react-icons/md/exit-to-app.d.ts index 91cf0fdcdb..94e783757e 100644 --- a/react-icons/md/exit-to-app.d.ts +++ b/react-icons/md/exit-to-app.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExitToApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/expand-less.d.ts b/react-icons/md/expand-less.d.ts index 88db71719b..56fb852c28 100644 --- a/react-icons/md/expand-less.d.ts +++ b/react-icons/md/expand-less.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExpandLess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/expand-more.d.ts b/react-icons/md/expand-more.d.ts index e5513c38bf..97df23f656 100644 --- a/react-icons/md/expand-more.d.ts +++ b/react-icons/md/expand-more.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExpandMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/explicit.d.ts b/react-icons/md/explicit.d.ts index a2e679f632..c15c605fb8 100644 --- a/react-icons/md/explicit.d.ts +++ b/react-icons/md/explicit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExplicit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/explore.d.ts b/react-icons/md/explore.d.ts index 8e431deac9..6a4d908184 100644 --- a/react-icons/md/explore.d.ts +++ b/react-icons/md/explore.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExplore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-minus-1.d.ts b/react-icons/md/exposure-minus-1.d.ts index b4018510dc..5d14e27189 100644 --- a/react-icons/md/exposure-minus-1.d.ts +++ b/react-icons/md/exposure-minus-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposureMinus1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-minus-2.d.ts b/react-icons/md/exposure-minus-2.d.ts index 15d5d7c5b5..ae536ef8a3 100644 --- a/react-icons/md/exposure-minus-2.d.ts +++ b/react-icons/md/exposure-minus-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposureMinus2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-neg-1.d.ts b/react-icons/md/exposure-neg-1.d.ts index 4cd0ef15fc..89dfe364f0 100644 --- a/react-icons/md/exposure-neg-1.d.ts +++ b/react-icons/md/exposure-neg-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposureNeg1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-neg-2.d.ts b/react-icons/md/exposure-neg-2.d.ts index 9d37e58250..114ca7deb4 100644 --- a/react-icons/md/exposure-neg-2.d.ts +++ b/react-icons/md/exposure-neg-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposureNeg2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-plus-1.d.ts b/react-icons/md/exposure-plus-1.d.ts index d0438a4b02..a03d8b5ff8 100644 --- a/react-icons/md/exposure-plus-1.d.ts +++ b/react-icons/md/exposure-plus-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposurePlus1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-plus-2.d.ts b/react-icons/md/exposure-plus-2.d.ts index b56fd5e978..296e27da8e 100644 --- a/react-icons/md/exposure-plus-2.d.ts +++ b/react-icons/md/exposure-plus-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposurePlus2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure-zero.d.ts b/react-icons/md/exposure-zero.d.ts index 479724cf1e..ee9d18e047 100644 --- a/react-icons/md/exposure-zero.d.ts +++ b/react-icons/md/exposure-zero.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposureZero extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/exposure.d.ts b/react-icons/md/exposure.d.ts index a863c94bb1..fb5b1a8075 100644 --- a/react-icons/md/exposure.d.ts +++ b/react-icons/md/exposure.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExposure extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/extension.d.ts b/react-icons/md/extension.d.ts index fa8ab0bcb5..70e4630ab0 100644 --- a/react-icons/md/extension.d.ts +++ b/react-icons/md/extension.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdExtension extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/face.d.ts b/react-icons/md/face.d.ts index ae2d3acfd9..f6f74193c1 100644 --- a/react-icons/md/face.d.ts +++ b/react-icons/md/face.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fast-forward.d.ts b/react-icons/md/fast-forward.d.ts index 7a4bcf3955..8df39ae2ef 100644 --- a/react-icons/md/fast-forward.d.ts +++ b/react-icons/md/fast-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fast-rewind.d.ts b/react-icons/md/fast-rewind.d.ts index 24f8a46519..6c5d1d5891 100644 --- a/react-icons/md/fast-rewind.d.ts +++ b/react-icons/md/fast-rewind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFastRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite-border.d.ts b/react-icons/md/favorite-border.d.ts index 59cb64f8dc..6b54af53b0 100644 --- a/react-icons/md/favorite-border.d.ts +++ b/react-icons/md/favorite-border.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFavoriteBorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite-outline.d.ts b/react-icons/md/favorite-outline.d.ts index 41d2c5013a..5d20e1e788 100644 --- a/react-icons/md/favorite-outline.d.ts +++ b/react-icons/md/favorite-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFavoriteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/favorite.d.ts b/react-icons/md/favorite.d.ts index 193e384b9e..c4e419a590 100644 --- a/react-icons/md/favorite.d.ts +++ b/react-icons/md/favorite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFavorite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/featured-play-list.d.ts b/react-icons/md/featured-play-list.d.ts index 0344137dd0..f6da2cff40 100644 --- a/react-icons/md/featured-play-list.d.ts +++ b/react-icons/md/featured-play-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFeaturedPlayList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/featured-video.d.ts b/react-icons/md/featured-video.d.ts index b6f62f7ef6..e517556405 100644 --- a/react-icons/md/featured-video.d.ts +++ b/react-icons/md/featured-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFeaturedVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/feedback.d.ts b/react-icons/md/feedback.d.ts index ff49020b95..33d0492efd 100644 --- a/react-icons/md/feedback.d.ts +++ b/react-icons/md/feedback.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFeedback extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-dvr.d.ts b/react-icons/md/fiber-dvr.d.ts index 8968f1e977..6005df349e 100644 --- a/react-icons/md/fiber-dvr.d.ts +++ b/react-icons/md/fiber-dvr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFiberDvr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-manual-record.d.ts b/react-icons/md/fiber-manual-record.d.ts index ab72e777ce..2879538278 100644 --- a/react-icons/md/fiber-manual-record.d.ts +++ b/react-icons/md/fiber-manual-record.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFiberManualRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-new.d.ts b/react-icons/md/fiber-new.d.ts index 270d9ba4f2..df1c6c4af8 100644 --- a/react-icons/md/fiber-new.d.ts +++ b/react-icons/md/fiber-new.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFiberNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-pin.d.ts b/react-icons/md/fiber-pin.d.ts index 5f9a6b6b41..13a57376c3 100644 --- a/react-icons/md/fiber-pin.d.ts +++ b/react-icons/md/fiber-pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFiberPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fiber-smart-record.d.ts b/react-icons/md/fiber-smart-record.d.ts index e46c44d5b3..e7135c18c0 100644 --- a/react-icons/md/fiber-smart-record.d.ts +++ b/react-icons/md/fiber-smart-record.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFiberSmartRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/file-download.d.ts b/react-icons/md/file-download.d.ts index ceb2305bd0..744e151320 100644 --- a/react-icons/md/file-download.d.ts +++ b/react-icons/md/file-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFileDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/file-upload.d.ts b/react-icons/md/file-upload.d.ts index fd48fe2d29..b0bd8a8e54 100644 --- a/react-icons/md/file-upload.d.ts +++ b/react-icons/md/file-upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFileUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-1.d.ts b/react-icons/md/filter-1.d.ts index 1ac9f10fea..10ecae23b7 100644 --- a/react-icons/md/filter-1.d.ts +++ b/react-icons/md/filter-1.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter1 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-2.d.ts b/react-icons/md/filter-2.d.ts index 83670b6b95..9baa3253bd 100644 --- a/react-icons/md/filter-2.d.ts +++ b/react-icons/md/filter-2.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter2 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-3.d.ts b/react-icons/md/filter-3.d.ts index a2fedb7b88..891dd23d84 100644 --- a/react-icons/md/filter-3.d.ts +++ b/react-icons/md/filter-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-4.d.ts b/react-icons/md/filter-4.d.ts index d10581266c..02f815102f 100644 --- a/react-icons/md/filter-4.d.ts +++ b/react-icons/md/filter-4.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-5.d.ts b/react-icons/md/filter-5.d.ts index e23ad0da14..ee6e643808 100644 --- a/react-icons/md/filter-5.d.ts +++ b/react-icons/md/filter-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-6.d.ts b/react-icons/md/filter-6.d.ts index ed37d66aa7..31287086f9 100644 --- a/react-icons/md/filter-6.d.ts +++ b/react-icons/md/filter-6.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-7.d.ts b/react-icons/md/filter-7.d.ts index 4e2f64bf7e..c88faa2791 100644 --- a/react-icons/md/filter-7.d.ts +++ b/react-icons/md/filter-7.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter7 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-8.d.ts b/react-icons/md/filter-8.d.ts index adea5c709e..10171dfab1 100644 --- a/react-icons/md/filter-8.d.ts +++ b/react-icons/md/filter-8.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter8 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-9-plus.d.ts b/react-icons/md/filter-9-plus.d.ts index 3617079cc5..6fec4446e6 100644 --- a/react-icons/md/filter-9-plus.d.ts +++ b/react-icons/md/filter-9-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter9Plus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-9.d.ts b/react-icons/md/filter-9.d.ts index 4999520d22..3bf6bae6d2 100644 --- a/react-icons/md/filter-9.d.ts +++ b/react-icons/md/filter-9.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter9 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-b-and-w.d.ts b/react-icons/md/filter-b-and-w.d.ts index 6eb46b43d6..0173db1827 100644 --- a/react-icons/md/filter-b-and-w.d.ts +++ b/react-icons/md/filter-b-and-w.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterBAndW extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-center-focus.d.ts b/react-icons/md/filter-center-focus.d.ts index 7bb247c256..a528a7e735 100644 --- a/react-icons/md/filter-center-focus.d.ts +++ b/react-icons/md/filter-center-focus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterCenterFocus extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-drama.d.ts b/react-icons/md/filter-drama.d.ts index 85a961539f..c125f2c094 100644 --- a/react-icons/md/filter-drama.d.ts +++ b/react-icons/md/filter-drama.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterDrama extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-frames.d.ts b/react-icons/md/filter-frames.d.ts index 3a08c8701a..37c0b895e7 100644 --- a/react-icons/md/filter-frames.d.ts +++ b/react-icons/md/filter-frames.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterFrames extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-hdr.d.ts b/react-icons/md/filter-hdr.d.ts index 3cdc21ccb6..f7c844346a 100644 --- a/react-icons/md/filter-hdr.d.ts +++ b/react-icons/md/filter-hdr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterHdr extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-list.d.ts b/react-icons/md/filter-list.d.ts index 959fc09193..c8803c4e77 100644 --- a/react-icons/md/filter-list.d.ts +++ b/react-icons/md/filter-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-none.d.ts b/react-icons/md/filter-none.d.ts index 270208192c..94656e8454 100644 --- a/react-icons/md/filter-none.d.ts +++ b/react-icons/md/filter-none.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-tilt-shift.d.ts b/react-icons/md/filter-tilt-shift.d.ts index 0eb232d205..ddd4dd1105 100644 --- a/react-icons/md/filter-tilt-shift.d.ts +++ b/react-icons/md/filter-tilt-shift.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterTiltShift extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter-vintage.d.ts b/react-icons/md/filter-vintage.d.ts index ed55988a1e..09fb365366 100644 --- a/react-icons/md/filter-vintage.d.ts +++ b/react-icons/md/filter-vintage.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilterVintage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/filter.d.ts b/react-icons/md/filter.d.ts index 4bb45f848d..14fd08285a 100644 --- a/react-icons/md/filter.d.ts +++ b/react-icons/md/filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/find-in-page.d.ts b/react-icons/md/find-in-page.d.ts index df4029b46f..29a267344a 100644 --- a/react-icons/md/find-in-page.d.ts +++ b/react-icons/md/find-in-page.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFindInPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/find-replace.d.ts b/react-icons/md/find-replace.d.ts index a02b0c0d2b..e6772cf2c8 100644 --- a/react-icons/md/find-replace.d.ts +++ b/react-icons/md/find-replace.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFindReplace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fingerprint.d.ts b/react-icons/md/fingerprint.d.ts index ff49e35a25..501e2bbe41 100644 --- a/react-icons/md/fingerprint.d.ts +++ b/react-icons/md/fingerprint.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFingerprint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/first-page.d.ts b/react-icons/md/first-page.d.ts index cd1d2df56c..af550a65e9 100644 --- a/react-icons/md/first-page.d.ts +++ b/react-icons/md/first-page.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFirstPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fitness-center.d.ts b/react-icons/md/fitness-center.d.ts index 595f83c50e..af9d070377 100644 --- a/react-icons/md/fitness-center.d.ts +++ b/react-icons/md/fitness-center.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFitnessCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flag.d.ts b/react-icons/md/flag.d.ts index e8a4ecb6e2..2d39fd5f38 100644 --- a/react-icons/md/flag.d.ts +++ b/react-icons/md/flag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flare.d.ts b/react-icons/md/flare.d.ts index e7b1f4e039..5d4cb29bdd 100644 --- a/react-icons/md/flare.d.ts +++ b/react-icons/md/flare.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-auto.d.ts b/react-icons/md/flash-auto.d.ts index c23c8a598e..f0b505ed30 100644 --- a/react-icons/md/flash-auto.d.ts +++ b/react-icons/md/flash-auto.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlashAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-off.d.ts b/react-icons/md/flash-off.d.ts index b239a9810b..7f1ea9c7dc 100644 --- a/react-icons/md/flash-off.d.ts +++ b/react-icons/md/flash-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlashOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flash-on.d.ts b/react-icons/md/flash-on.d.ts index c05726f21a..7fb4d6c63f 100644 --- a/react-icons/md/flash-on.d.ts +++ b/react-icons/md/flash-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlashOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight-land.d.ts b/react-icons/md/flight-land.d.ts index 68b2ab9dc2..b7d58c3c06 100644 --- a/react-icons/md/flight-land.d.ts +++ b/react-icons/md/flight-land.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlightLand extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight-takeoff.d.ts b/react-icons/md/flight-takeoff.d.ts index 29ebd9c57b..47130fcacf 100644 --- a/react-icons/md/flight-takeoff.d.ts +++ b/react-icons/md/flight-takeoff.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlightTakeoff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flight.d.ts b/react-icons/md/flight.d.ts index 5046627763..e458d87378 100644 --- a/react-icons/md/flight.d.ts +++ b/react-icons/md/flight.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip-to-back.d.ts b/react-icons/md/flip-to-back.d.ts index 8a3af14dc7..b79d84a159 100644 --- a/react-icons/md/flip-to-back.d.ts +++ b/react-icons/md/flip-to-back.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlipToBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip-to-front.d.ts b/react-icons/md/flip-to-front.d.ts index 46abe7df52..f79544940c 100644 --- a/react-icons/md/flip-to-front.d.ts +++ b/react-icons/md/flip-to-front.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlipToFront extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/flip.d.ts b/react-icons/md/flip.d.ts index c0599efdd0..1769e4012c 100644 --- a/react-icons/md/flip.d.ts +++ b/react-icons/md/flip.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFlip extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-open.d.ts b/react-icons/md/folder-open.d.ts index 67d7769d27..896645daad 100644 --- a/react-icons/md/folder-open.d.ts +++ b/react-icons/md/folder-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-shared.d.ts b/react-icons/md/folder-shared.d.ts index 5ece421dbb..75f3703ee2 100644 --- a/react-icons/md/folder-shared.d.ts +++ b/react-icons/md/folder-shared.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFolderShared extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder-special.d.ts b/react-icons/md/folder-special.d.ts index e0afc89b75..3846cd5b8a 100644 --- a/react-icons/md/folder-special.d.ts +++ b/react-icons/md/folder-special.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFolderSpecial extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/folder.d.ts b/react-icons/md/folder.d.ts index 44a78bb487..ed3538d72d 100644 --- a/react-icons/md/folder.d.ts +++ b/react-icons/md/folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/font-download.d.ts b/react-icons/md/font-download.d.ts index a0833e01fb..a181b0e21b 100644 --- a/react-icons/md/font-download.d.ts +++ b/react-icons/md/font-download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFontDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-center.d.ts b/react-icons/md/format-align-center.d.ts index d5fd2ef985..2440330999 100644 --- a/react-icons/md/format-align-center.d.ts +++ b/react-icons/md/format-align-center.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-justify.d.ts b/react-icons/md/format-align-justify.d.ts index 500128da94..fa0ecbf750 100644 --- a/react-icons/md/format-align-justify.d.ts +++ b/react-icons/md/format-align-justify.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatAlignJustify extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-left.d.ts b/react-icons/md/format-align-left.d.ts index ba55dee382..517f310864 100644 --- a/react-icons/md/format-align-left.d.ts +++ b/react-icons/md/format-align-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatAlignLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-align-right.d.ts b/react-icons/md/format-align-right.d.ts index dc274ae907..cb60d09580 100644 --- a/react-icons/md/format-align-right.d.ts +++ b/react-icons/md/format-align-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatAlignRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-bold.d.ts b/react-icons/md/format-bold.d.ts index 2e0e2527d2..3bf6f5fc25 100644 --- a/react-icons/md/format-bold.d.ts +++ b/react-icons/md/format-bold.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatBold extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-clear.d.ts b/react-icons/md/format-clear.d.ts index 00aa460e9f..3753681af4 100644 --- a/react-icons/md/format-clear.d.ts +++ b/react-icons/md/format-clear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-fill.d.ts b/react-icons/md/format-color-fill.d.ts index 562849897f..cc5ff44b0e 100644 --- a/react-icons/md/format-color-fill.d.ts +++ b/react-icons/md/format-color-fill.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatColorFill extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-reset.d.ts b/react-icons/md/format-color-reset.d.ts index 2c61bd9bf6..08cbf0df24 100644 --- a/react-icons/md/format-color-reset.d.ts +++ b/react-icons/md/format-color-reset.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatColorReset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-color-text.d.ts b/react-icons/md/format-color-text.d.ts index bc6481df34..ce571106de 100644 --- a/react-icons/md/format-color-text.d.ts +++ b/react-icons/md/format-color-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatColorText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-indent-decrease.d.ts b/react-icons/md/format-indent-decrease.d.ts index 86b0940a0d..786fed03cf 100644 --- a/react-icons/md/format-indent-decrease.d.ts +++ b/react-icons/md/format-indent-decrease.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatIndentDecrease extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-indent-increase.d.ts b/react-icons/md/format-indent-increase.d.ts index 77c1433a05..3af1d028d5 100644 --- a/react-icons/md/format-indent-increase.d.ts +++ b/react-icons/md/format-indent-increase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatIndentIncrease extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-italic.d.ts b/react-icons/md/format-italic.d.ts index 68bb69b95c..105e195abc 100644 --- a/react-icons/md/format-italic.d.ts +++ b/react-icons/md/format-italic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatItalic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-line-spacing.d.ts b/react-icons/md/format-line-spacing.d.ts index 8cc71f2c98..629bb621f1 100644 --- a/react-icons/md/format-line-spacing.d.ts +++ b/react-icons/md/format-line-spacing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatLineSpacing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-list-bulleted.d.ts b/react-icons/md/format-list-bulleted.d.ts index dabfbaceae..9fbf06e578 100644 --- a/react-icons/md/format-list-bulleted.d.ts +++ b/react-icons/md/format-list-bulleted.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatListBulleted extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-list-numbered.d.ts b/react-icons/md/format-list-numbered.d.ts index ab917a76d4..2a872311c0 100644 --- a/react-icons/md/format-list-numbered.d.ts +++ b/react-icons/md/format-list-numbered.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatListNumbered extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-paint.d.ts b/react-icons/md/format-paint.d.ts index c16cd205bc..1d9530118d 100644 --- a/react-icons/md/format-paint.d.ts +++ b/react-icons/md/format-paint.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatPaint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-quote.d.ts b/react-icons/md/format-quote.d.ts index c862f94d63..1f11cb2b00 100644 --- a/react-icons/md/format-quote.d.ts +++ b/react-icons/md/format-quote.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatQuote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-shapes.d.ts b/react-icons/md/format-shapes.d.ts index f912cd435b..877b9877c6 100644 --- a/react-icons/md/format-shapes.d.ts +++ b/react-icons/md/format-shapes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatShapes extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-size.d.ts b/react-icons/md/format-size.d.ts index d83580625f..5cc31a6265 100644 --- a/react-icons/md/format-size.d.ts +++ b/react-icons/md/format-size.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatSize extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-strikethrough.d.ts b/react-icons/md/format-strikethrough.d.ts index 5b58300960..305b047c14 100644 --- a/react-icons/md/format-strikethrough.d.ts +++ b/react-icons/md/format-strikethrough.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatStrikethrough extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-textdirection-l-to-r.d.ts b/react-icons/md/format-textdirection-l-to-r.d.ts index 3153274dd8..954ce03a2e 100644 --- a/react-icons/md/format-textdirection-l-to-r.d.ts +++ b/react-icons/md/format-textdirection-l-to-r.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatTextdirectionLToR extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-textdirection-r-to-l.d.ts b/react-icons/md/format-textdirection-r-to-l.d.ts index 64c007d9da..b83be45db8 100644 --- a/react-icons/md/format-textdirection-r-to-l.d.ts +++ b/react-icons/md/format-textdirection-r-to-l.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatTextdirectionRToL extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/format-underlined.d.ts b/react-icons/md/format-underlined.d.ts index aa12079e6c..8f658949d4 100644 --- a/react-icons/md/format-underlined.d.ts +++ b/react-icons/md/format-underlined.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFormatUnderlined extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forum.d.ts b/react-icons/md/forum.d.ts index 9a42ca4b95..4b62fff7e5 100644 --- a/react-icons/md/forum.d.ts +++ b/react-icons/md/forum.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdForum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-10.d.ts b/react-icons/md/forward-10.d.ts index 92434d3e2a..ea3ffaa48b 100644 --- a/react-icons/md/forward-10.d.ts +++ b/react-icons/md/forward-10.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdForward10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-30.d.ts b/react-icons/md/forward-30.d.ts index 317730f070..8b7d6ee080 100644 --- a/react-icons/md/forward-30.d.ts +++ b/react-icons/md/forward-30.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdForward30 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward-5.d.ts b/react-icons/md/forward-5.d.ts index 5c6f4e9825..26bd39c0c5 100644 --- a/react-icons/md/forward-5.d.ts +++ b/react-icons/md/forward-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdForward5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/forward.d.ts b/react-icons/md/forward.d.ts index 0c228c8dd7..7111fc9020 100644 --- a/react-icons/md/forward.d.ts +++ b/react-icons/md/forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/free-breakfast.d.ts b/react-icons/md/free-breakfast.d.ts index 1ccee8dfb7..d410cd9666 100644 --- a/react-icons/md/free-breakfast.d.ts +++ b/react-icons/md/free-breakfast.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFreeBreakfast extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fullscreen-exit.d.ts b/react-icons/md/fullscreen-exit.d.ts index 88dd0905c9..fcf74a4d1d 100644 --- a/react-icons/md/fullscreen-exit.d.ts +++ b/react-icons/md/fullscreen-exit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFullscreenExit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/fullscreen.d.ts b/react-icons/md/fullscreen.d.ts index f80ebfd89d..f3c8a6ed90 100644 --- a/react-icons/md/fullscreen.d.ts +++ b/react-icons/md/fullscreen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFullscreen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/functions.d.ts b/react-icons/md/functions.d.ts index 0bfd4d0f53..c6abe47252 100644 --- a/react-icons/md/functions.d.ts +++ b/react-icons/md/functions.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdFunctions extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/g-translate.d.ts b/react-icons/md/g-translate.d.ts index bfdb034c16..581189fcb2 100644 --- a/react-icons/md/g-translate.d.ts +++ b/react-icons/md/g-translate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGTranslate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gamepad.d.ts b/react-icons/md/gamepad.d.ts index 87b22b1e6c..6dab1cf898 100644 --- a/react-icons/md/gamepad.d.ts +++ b/react-icons/md/gamepad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGamepad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/games.d.ts b/react-icons/md/games.d.ts index 8a7a900ec1..fe32d0d4ca 100644 --- a/react-icons/md/games.d.ts +++ b/react-icons/md/games.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGames extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gavel.d.ts b/react-icons/md/gavel.d.ts index 0f29f6da1f..8e6b4b8818 100644 --- a/react-icons/md/gavel.d.ts +++ b/react-icons/md/gavel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGavel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gesture.d.ts b/react-icons/md/gesture.d.ts index efe723344b..6492f8657c 100644 --- a/react-icons/md/gesture.d.ts +++ b/react-icons/md/gesture.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGesture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/get-app.d.ts b/react-icons/md/get-app.d.ts index 435224b5be..c5dcb1cbcd 100644 --- a/react-icons/md/get-app.d.ts +++ b/react-icons/md/get-app.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGetApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gif.d.ts b/react-icons/md/gif.d.ts index 53ca018d85..2bfa8f05c7 100644 --- a/react-icons/md/gif.d.ts +++ b/react-icons/md/gif.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGif extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/goat.d.ts b/react-icons/md/goat.d.ts index 23f4bf01d6..09c5ca41a0 100644 --- a/react-icons/md/goat.d.ts +++ b/react-icons/md/goat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGoat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/golf-course.d.ts b/react-icons/md/golf-course.d.ts index 96942a3782..0c2824788e 100644 --- a/react-icons/md/golf-course.d.ts +++ b/react-icons/md/golf-course.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGolfCourse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-fixed.d.ts b/react-icons/md/gps-fixed.d.ts index 6962a68d19..dd770f9b27 100644 --- a/react-icons/md/gps-fixed.d.ts +++ b/react-icons/md/gps-fixed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGpsFixed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-not-fixed.d.ts b/react-icons/md/gps-not-fixed.d.ts index 405cc2bded..b722efd66a 100644 --- a/react-icons/md/gps-not-fixed.d.ts +++ b/react-icons/md/gps-not-fixed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGpsNotFixed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gps-off.d.ts b/react-icons/md/gps-off.d.ts index 57d681f6f3..5915976213 100644 --- a/react-icons/md/gps-off.d.ts +++ b/react-icons/md/gps-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGpsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grade.d.ts b/react-icons/md/grade.d.ts index 4141cab03a..5f9473dd91 100644 --- a/react-icons/md/grade.d.ts +++ b/react-icons/md/grade.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGrade extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/gradient.d.ts b/react-icons/md/gradient.d.ts index 98fd005447..f016561d7b 100644 --- a/react-icons/md/gradient.d.ts +++ b/react-icons/md/gradient.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGradient extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grain.d.ts b/react-icons/md/grain.d.ts index d65c03cf18..06e2c1051f 100644 --- a/react-icons/md/grain.d.ts +++ b/react-icons/md/grain.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/graphic-eq.d.ts b/react-icons/md/graphic-eq.d.ts index b5d169bb44..3548da3dd9 100644 --- a/react-icons/md/graphic-eq.d.ts +++ b/react-icons/md/graphic-eq.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGraphicEq extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grid-off.d.ts b/react-icons/md/grid-off.d.ts index ab6cc652c4..b178d004a8 100644 --- a/react-icons/md/grid-off.d.ts +++ b/react-icons/md/grid-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGridOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/grid-on.d.ts b/react-icons/md/grid-on.d.ts index b830aecfad..a462e28b50 100644 --- a/react-icons/md/grid-on.d.ts +++ b/react-icons/md/grid-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGridOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group-add.d.ts b/react-icons/md/group-add.d.ts index 6df0247d62..a7989b110c 100644 --- a/react-icons/md/group-add.d.ts +++ b/react-icons/md/group-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGroupAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group-work.d.ts b/react-icons/md/group-work.d.ts index edbddae967..d4ededa66e 100644 --- a/react-icons/md/group-work.d.ts +++ b/react-icons/md/group-work.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGroupWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/group.d.ts b/react-icons/md/group.d.ts index 08038c3cf2..fe24082e39 100644 --- a/react-icons/md/group.d.ts +++ b/react-icons/md/group.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hd.d.ts b/react-icons/md/hd.d.ts index 219ef6d1e1..2b36d5cbf5 100644 --- a/react-icons/md/hd.d.ts +++ b/react-icons/md/hd.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-off.d.ts b/react-icons/md/hdr-off.d.ts index 8de3235811..8150678ded 100644 --- a/react-icons/md/hdr-off.d.ts +++ b/react-icons/md/hdr-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHdrOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-on.d.ts b/react-icons/md/hdr-on.d.ts index c3ee3e35e1..52baf4c1ad 100644 --- a/react-icons/md/hdr-on.d.ts +++ b/react-icons/md/hdr-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHdrOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-strong.d.ts b/react-icons/md/hdr-strong.d.ts index c3ee01e0a3..38f848807e 100644 --- a/react-icons/md/hdr-strong.d.ts +++ b/react-icons/md/hdr-strong.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHdrStrong extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hdr-weak.d.ts b/react-icons/md/hdr-weak.d.ts index 6e4b8753e4..079c33af3b 100644 --- a/react-icons/md/hdr-weak.d.ts +++ b/react-icons/md/hdr-weak.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHdrWeak extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/headset-mic.d.ts b/react-icons/md/headset-mic.d.ts index ebfb448bcc..92e3ef8643 100644 --- a/react-icons/md/headset-mic.d.ts +++ b/react-icons/md/headset-mic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHeadsetMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/headset.d.ts b/react-icons/md/headset.d.ts index 4f18d3d82c..90fd831720 100644 --- a/react-icons/md/headset.d.ts +++ b/react-icons/md/headset.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHeadset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/healing.d.ts b/react-icons/md/healing.d.ts index a5bb954cbd..23eb5edb8d 100644 --- a/react-icons/md/healing.d.ts +++ b/react-icons/md/healing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHealing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hearing.d.ts b/react-icons/md/hearing.d.ts index 1495b42a92..390105f500 100644 --- a/react-icons/md/hearing.d.ts +++ b/react-icons/md/hearing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHearing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/help-outline.d.ts b/react-icons/md/help-outline.d.ts index 694ba83296..3e2658f1ea 100644 --- a/react-icons/md/help-outline.d.ts +++ b/react-icons/md/help-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHelpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/help.d.ts b/react-icons/md/help.d.ts index 9807a61dde..ca551e14b4 100644 --- a/react-icons/md/help.d.ts +++ b/react-icons/md/help.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/high-quality.d.ts b/react-icons/md/high-quality.d.ts index e53ef78cf7..1513201aab 100644 --- a/react-icons/md/high-quality.d.ts +++ b/react-icons/md/high-quality.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHighQuality extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight-off.d.ts b/react-icons/md/highlight-off.d.ts index 19366c72bd..faf2cc4875 100644 --- a/react-icons/md/highlight-off.d.ts +++ b/react-icons/md/highlight-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHighlightOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight-remove.d.ts b/react-icons/md/highlight-remove.d.ts index 0400f49b98..7ff4eee66c 100644 --- a/react-icons/md/highlight-remove.d.ts +++ b/react-icons/md/highlight-remove.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHighlightRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/highlight.d.ts b/react-icons/md/highlight.d.ts index 987932f59b..28679358d2 100644 --- a/react-icons/md/highlight.d.ts +++ b/react-icons/md/highlight.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHighlight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/history.d.ts b/react-icons/md/history.d.ts index 6f35ce57b5..6392fee540 100644 --- a/react-icons/md/history.d.ts +++ b/react-icons/md/history.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/home.d.ts b/react-icons/md/home.d.ts index 26fece415b..26121a9bf7 100644 --- a/react-icons/md/home.d.ts +++ b/react-icons/md/home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hot-tub.d.ts b/react-icons/md/hot-tub.d.ts index c9e2164e2d..3dfce1a015 100644 --- a/react-icons/md/hot-tub.d.ts +++ b/react-icons/md/hot-tub.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHotTub extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hotel.d.ts b/react-icons/md/hotel.d.ts index e2fbae3a7f..9d81b10c44 100644 --- a/react-icons/md/hotel.d.ts +++ b/react-icons/md/hotel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHotel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hourglass-empty.d.ts b/react-icons/md/hourglass-empty.d.ts index d45be408ab..60cd18d4de 100644 --- a/react-icons/md/hourglass-empty.d.ts +++ b/react-icons/md/hourglass-empty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHourglassEmpty extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/hourglass-full.d.ts b/react-icons/md/hourglass-full.d.ts index 7efc836af7..8dc67a4e51 100644 --- a/react-icons/md/hourglass-full.d.ts +++ b/react-icons/md/hourglass-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHourglassFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/http.d.ts b/react-icons/md/http.d.ts index ad66033351..e0fcdfedaf 100644 --- a/react-icons/md/http.d.ts +++ b/react-icons/md/http.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHttp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/https.d.ts b/react-icons/md/https.d.ts index 0177e69b5e..eb285e6e3e 100644 --- a/react-icons/md/https.d.ts +++ b/react-icons/md/https.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdHttps extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/image-aspect-ratio.d.ts b/react-icons/md/image-aspect-ratio.d.ts index 65e0d00a8f..65f926d18e 100644 --- a/react-icons/md/image-aspect-ratio.d.ts +++ b/react-icons/md/image-aspect-ratio.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdImageAspectRatio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/image.d.ts b/react-icons/md/image.d.ts index 3bd97a8996..ac1fa5aae1 100644 --- a/react-icons/md/image.d.ts +++ b/react-icons/md/image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/import-contacts.d.ts b/react-icons/md/import-contacts.d.ts index 72d5530d2f..f527b0b32c 100644 --- a/react-icons/md/import-contacts.d.ts +++ b/react-icons/md/import-contacts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdImportContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/import-export.d.ts b/react-icons/md/import-export.d.ts index ea66d13cf7..76e6edb6d8 100644 --- a/react-icons/md/import-export.d.ts +++ b/react-icons/md/import-export.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdImportExport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/important-devices.d.ts b/react-icons/md/important-devices.d.ts index b750221780..64e2241926 100644 --- a/react-icons/md/important-devices.d.ts +++ b/react-icons/md/important-devices.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdImportantDevices extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/inbox.d.ts b/react-icons/md/inbox.d.ts index 1dc33d87bb..3be3e52ac1 100644 --- a/react-icons/md/inbox.d.ts +++ b/react-icons/md/inbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/indeterminate-check-box.d.ts b/react-icons/md/indeterminate-check-box.d.ts index 582ed7bde8..921d65c6eb 100644 --- a/react-icons/md/indeterminate-check-box.d.ts +++ b/react-icons/md/indeterminate-check-box.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdIndeterminateCheckBox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/index.d.ts b/react-icons/md/index.d.ts index fc7223e5b3..0e5254bb38 100644 --- a/react-icons/md/index.d.ts +++ b/react-icons/md/index.d.ts @@ -1,3 +1,4 @@ +// TypeScript Version: 2.1 import _Md3dRotation from "./3d-rotation"; import _MdAcUnit from "./ac-unit"; import _MdAccessAlarm from "./access-alarm"; diff --git a/react-icons/md/info-outline.d.ts b/react-icons/md/info-outline.d.ts index dee4beba46..a7aa30ff58 100644 --- a/react-icons/md/info-outline.d.ts +++ b/react-icons/md/info-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInfoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/info.d.ts b/react-icons/md/info.d.ts index 58cb8f3237..9f4f2a36e9 100644 --- a/react-icons/md/info.d.ts +++ b/react-icons/md/info.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/input.d.ts b/react-icons/md/input.d.ts index 9b30b09918..722cec3802 100644 --- a/react-icons/md/input.d.ts +++ b/react-icons/md/input.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInput extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-chart.d.ts b/react-icons/md/insert-chart.d.ts index a16566bed0..e21f1b9a8f 100644 --- a/react-icons/md/insert-chart.d.ts +++ b/react-icons/md/insert-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-comment.d.ts b/react-icons/md/insert-comment.d.ts index 0eb6d9e51f..6a9f7e9cd3 100644 --- a/react-icons/md/insert-comment.d.ts +++ b/react-icons/md/insert-comment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-drive-file.d.ts b/react-icons/md/insert-drive-file.d.ts index 82de961c88..10b0c4daf0 100644 --- a/react-icons/md/insert-drive-file.d.ts +++ b/react-icons/md/insert-drive-file.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertDriveFile extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-emoticon.d.ts b/react-icons/md/insert-emoticon.d.ts index debf0675c7..707ac4b0db 100644 --- a/react-icons/md/insert-emoticon.d.ts +++ b/react-icons/md/insert-emoticon.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertEmoticon extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-invitation.d.ts b/react-icons/md/insert-invitation.d.ts index 6d09b27375..f4ec4b2712 100644 --- a/react-icons/md/insert-invitation.d.ts +++ b/react-icons/md/insert-invitation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertInvitation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-link.d.ts b/react-icons/md/insert-link.d.ts index 4b1ef544d6..694b05f7fe 100644 --- a/react-icons/md/insert-link.d.ts +++ b/react-icons/md/insert-link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/insert-photo.d.ts b/react-icons/md/insert-photo.d.ts index 30ea00ec86..3ee9e616e8 100644 --- a/react-icons/md/insert-photo.d.ts +++ b/react-icons/md/insert-photo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInsertPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors-off.d.ts b/react-icons/md/invert-colors-off.d.ts index cebe2f3ad4..67510d2374 100644 --- a/react-icons/md/invert-colors-off.d.ts +++ b/react-icons/md/invert-colors-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInvertColorsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors-on.d.ts b/react-icons/md/invert-colors-on.d.ts index ea144963fa..69a2583ed9 100644 --- a/react-icons/md/invert-colors-on.d.ts +++ b/react-icons/md/invert-colors-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInvertColorsOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/invert-colors.d.ts b/react-icons/md/invert-colors.d.ts index dbd356fef8..6fe7dbb6c0 100644 --- a/react-icons/md/invert-colors.d.ts +++ b/react-icons/md/invert-colors.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdInvertColors extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/iso.d.ts b/react-icons/md/iso.d.ts index a868ebbce4..50ac529d71 100644 --- a/react-icons/md/iso.d.ts +++ b/react-icons/md/iso.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdIso extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-down.d.ts b/react-icons/md/keyboard-arrow-down.d.ts index afa2b6951c..c77b29b3d3 100644 --- a/react-icons/md/keyboard-arrow-down.d.ts +++ b/react-icons/md/keyboard-arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-left.d.ts b/react-icons/md/keyboard-arrow-left.d.ts index bd1404bcf9..4d48f820d0 100644 --- a/react-icons/md/keyboard-arrow-left.d.ts +++ b/react-icons/md/keyboard-arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-right.d.ts b/react-icons/md/keyboard-arrow-right.d.ts index 3a86f545c3..ccdf7a84a1 100644 --- a/react-icons/md/keyboard-arrow-right.d.ts +++ b/react-icons/md/keyboard-arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-arrow-up.d.ts b/react-icons/md/keyboard-arrow-up.d.ts index 643e41db3a..a2eea3f88b 100644 --- a/react-icons/md/keyboard-arrow-up.d.ts +++ b/react-icons/md/keyboard-arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-backspace.d.ts b/react-icons/md/keyboard-backspace.d.ts index 5658eb6817..e883e5759c 100644 --- a/react-icons/md/keyboard-backspace.d.ts +++ b/react-icons/md/keyboard-backspace.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-capslock.d.ts b/react-icons/md/keyboard-capslock.d.ts index 866efc04e4..59dc521786 100644 --- a/react-icons/md/keyboard-capslock.d.ts +++ b/react-icons/md/keyboard-capslock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardCapslock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-control.d.ts b/react-icons/md/keyboard-control.d.ts index 4ff5bef372..c42e1345a7 100644 --- a/react-icons/md/keyboard-control.d.ts +++ b/react-icons/md/keyboard-control.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardControl extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-hide.d.ts b/react-icons/md/keyboard-hide.d.ts index 436dafae71..b5b4eaed90 100644 --- a/react-icons/md/keyboard-hide.d.ts +++ b/react-icons/md/keyboard-hide.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardHide extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-return.d.ts b/react-icons/md/keyboard-return.d.ts index cf88f85ad8..bf1a689f52 100644 --- a/react-icons/md/keyboard-return.d.ts +++ b/react-icons/md/keyboard-return.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardReturn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-tab.d.ts b/react-icons/md/keyboard-tab.d.ts index 846fd7229c..3d2045f806 100644 --- a/react-icons/md/keyboard-tab.d.ts +++ b/react-icons/md/keyboard-tab.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardTab extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard-voice.d.ts b/react-icons/md/keyboard-voice.d.ts index 5a7783fd19..1ae565b660 100644 --- a/react-icons/md/keyboard-voice.d.ts +++ b/react-icons/md/keyboard-voice.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboardVoice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/keyboard.d.ts b/react-icons/md/keyboard.d.ts index 9a35216205..1159679eaa 100644 --- a/react-icons/md/keyboard.d.ts +++ b/react-icons/md/keyboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/kitchen.d.ts b/react-icons/md/kitchen.d.ts index 445124bd91..3853aa1cd3 100644 --- a/react-icons/md/kitchen.d.ts +++ b/react-icons/md/kitchen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdKitchen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/label-outline.d.ts b/react-icons/md/label-outline.d.ts index d985face81..670c94ca9d 100644 --- a/react-icons/md/label-outline.d.ts +++ b/react-icons/md/label-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLabelOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/label.d.ts b/react-icons/md/label.d.ts index 9c5d5b0a6d..3ec9f9f898 100644 --- a/react-icons/md/label.d.ts +++ b/react-icons/md/label.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLabel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/landscape.d.ts b/react-icons/md/landscape.d.ts index 699775a8d5..d4227bee3f 100644 --- a/react-icons/md/landscape.d.ts +++ b/react-icons/md/landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/language.d.ts b/react-icons/md/language.d.ts index 3791435e37..3b37990b6e 100644 --- a/react-icons/md/language.d.ts +++ b/react-icons/md/language.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLanguage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-chromebook.d.ts b/react-icons/md/laptop-chromebook.d.ts index f37baf9c01..c4a86d6f17 100644 --- a/react-icons/md/laptop-chromebook.d.ts +++ b/react-icons/md/laptop-chromebook.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLaptopChromebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-mac.d.ts b/react-icons/md/laptop-mac.d.ts index 170c06c15f..a5186e6f3f 100644 --- a/react-icons/md/laptop-mac.d.ts +++ b/react-icons/md/laptop-mac.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLaptopMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop-windows.d.ts b/react-icons/md/laptop-windows.d.ts index 5e83e89da8..e87f88cb80 100644 --- a/react-icons/md/laptop-windows.d.ts +++ b/react-icons/md/laptop-windows.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLaptopWindows extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/laptop.d.ts b/react-icons/md/laptop.d.ts index 0ac9d8e0e4..eadc3a12d2 100644 --- a/react-icons/md/laptop.d.ts +++ b/react-icons/md/laptop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/last-page.d.ts b/react-icons/md/last-page.d.ts index 00df0ca446..5625afb138 100644 --- a/react-icons/md/last-page.d.ts +++ b/react-icons/md/last-page.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLastPage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/launch.d.ts b/react-icons/md/launch.d.ts index 572a0ad40e..b951fc9aba 100644 --- a/react-icons/md/launch.d.ts +++ b/react-icons/md/launch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLaunch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/layers-clear.d.ts b/react-icons/md/layers-clear.d.ts index 15c50ac304..0bc1f3bad2 100644 --- a/react-icons/md/layers-clear.d.ts +++ b/react-icons/md/layers-clear.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLayersClear extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/layers.d.ts b/react-icons/md/layers.d.ts index 1473386bfe..04ce584bd3 100644 --- a/react-icons/md/layers.d.ts +++ b/react-icons/md/layers.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLayers extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/leak-add.d.ts b/react-icons/md/leak-add.d.ts index c90f4b3871..b58a28aaff 100644 --- a/react-icons/md/leak-add.d.ts +++ b/react-icons/md/leak-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLeakAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/leak-remove.d.ts b/react-icons/md/leak-remove.d.ts index 1fc3eb2872..9a090ecdb6 100644 --- a/react-icons/md/leak-remove.d.ts +++ b/react-icons/md/leak-remove.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLeakRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lens.d.ts b/react-icons/md/lens.d.ts index 03d9294ee5..01e4e3006b 100644 --- a/react-icons/md/lens.d.ts +++ b/react-icons/md/lens.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLens extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-add.d.ts b/react-icons/md/library-add.d.ts index 4d360359dc..3ec97adbfc 100644 --- a/react-icons/md/library-add.d.ts +++ b/react-icons/md/library-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLibraryAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-books.d.ts b/react-icons/md/library-books.d.ts index b0a62aae74..85920070bb 100644 --- a/react-icons/md/library-books.d.ts +++ b/react-icons/md/library-books.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLibraryBooks extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/library-music.d.ts b/react-icons/md/library-music.d.ts index 3ae263eea3..67e2a6adfd 100644 --- a/react-icons/md/library-music.d.ts +++ b/react-icons/md/library-music.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLibraryMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lightbulb-outline.d.ts b/react-icons/md/lightbulb-outline.d.ts index 7a80cb4279..ccb9f48acf 100644 --- a/react-icons/md/lightbulb-outline.d.ts +++ b/react-icons/md/lightbulb-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLightbulbOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/line-style.d.ts b/react-icons/md/line-style.d.ts index 74b8e27b2d..f851b324aa 100644 --- a/react-icons/md/line-style.d.ts +++ b/react-icons/md/line-style.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLineStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/line-weight.d.ts b/react-icons/md/line-weight.d.ts index 5f027d1687..708134f5ae 100644 --- a/react-icons/md/line-weight.d.ts +++ b/react-icons/md/line-weight.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLineWeight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/linear-scale.d.ts b/react-icons/md/linear-scale.d.ts index 7ddf675ded..4e4444bbd1 100644 --- a/react-icons/md/linear-scale.d.ts +++ b/react-icons/md/linear-scale.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLinearScale extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/link.d.ts b/react-icons/md/link.d.ts index 7989011bea..777449b4ac 100644 --- a/react-icons/md/link.d.ts +++ b/react-icons/md/link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/linked-camera.d.ts b/react-icons/md/linked-camera.d.ts index 3f2becec47..1f8b893340 100644 --- a/react-icons/md/linked-camera.d.ts +++ b/react-icons/md/linked-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLinkedCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/list.d.ts b/react-icons/md/list.d.ts index 5fe07ae66f..b0fff17a19 100644 --- a/react-icons/md/list.d.ts +++ b/react-icons/md/list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/live-help.d.ts b/react-icons/md/live-help.d.ts index fc611fbc21..327ba8f669 100644 --- a/react-icons/md/live-help.d.ts +++ b/react-icons/md/live-help.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLiveHelp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/live-tv.d.ts b/react-icons/md/live-tv.d.ts index b156f8a70c..fa908a01fe 100644 --- a/react-icons/md/live-tv.d.ts +++ b/react-icons/md/live-tv.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLiveTv extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-airport.d.ts b/react-icons/md/local-airport.d.ts index 2b48a8df98..5e5a59b741 100644 --- a/react-icons/md/local-airport.d.ts +++ b/react-icons/md/local-airport.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalAirport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-atm.d.ts b/react-icons/md/local-atm.d.ts index 80e163811e..9c2a1df2c8 100644 --- a/react-icons/md/local-atm.d.ts +++ b/react-icons/md/local-atm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalAtm extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-attraction.d.ts b/react-icons/md/local-attraction.d.ts index 847373d030..cd1735c858 100644 --- a/react-icons/md/local-attraction.d.ts +++ b/react-icons/md/local-attraction.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalAttraction extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-bar.d.ts b/react-icons/md/local-bar.d.ts index 6d21516f07..bb95ea29c5 100644 --- a/react-icons/md/local-bar.d.ts +++ b/react-icons/md/local-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-cafe.d.ts b/react-icons/md/local-cafe.d.ts index 2ddb173dcc..be6c6ab05b 100644 --- a/react-icons/md/local-cafe.d.ts +++ b/react-icons/md/local-cafe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalCafe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-car-wash.d.ts b/react-icons/md/local-car-wash.d.ts index 30f32efcc0..5589c1cc56 100644 --- a/react-icons/md/local-car-wash.d.ts +++ b/react-icons/md/local-car-wash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalCarWash extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-convenience-store.d.ts b/react-icons/md/local-convenience-store.d.ts index 5f3122dc72..d0de046c07 100644 --- a/react-icons/md/local-convenience-store.d.ts +++ b/react-icons/md/local-convenience-store.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalConvenienceStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-drink.d.ts b/react-icons/md/local-drink.d.ts index c655f3fa10..8e6182a686 100644 --- a/react-icons/md/local-drink.d.ts +++ b/react-icons/md/local-drink.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalDrink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-florist.d.ts b/react-icons/md/local-florist.d.ts index 8ad0700269..7b234062c4 100644 --- a/react-icons/md/local-florist.d.ts +++ b/react-icons/md/local-florist.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalFlorist extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-gas-station.d.ts b/react-icons/md/local-gas-station.d.ts index 9f8e0f51ee..d33d7ce2b1 100644 --- a/react-icons/md/local-gas-station.d.ts +++ b/react-icons/md/local-gas-station.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalGasStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-grocery-store.d.ts b/react-icons/md/local-grocery-store.d.ts index a266baf995..51402b0af7 100644 --- a/react-icons/md/local-grocery-store.d.ts +++ b/react-icons/md/local-grocery-store.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalGroceryStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-hospital.d.ts b/react-icons/md/local-hospital.d.ts index 0b516c956d..7bad9512bd 100644 --- a/react-icons/md/local-hospital.d.ts +++ b/react-icons/md/local-hospital.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalHospital extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-hotel.d.ts b/react-icons/md/local-hotel.d.ts index d2e8ba4326..a7fecdd38a 100644 --- a/react-icons/md/local-hotel.d.ts +++ b/react-icons/md/local-hotel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalHotel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-laundry-service.d.ts b/react-icons/md/local-laundry-service.d.ts index 69dc1d91fa..1e155f9b83 100644 --- a/react-icons/md/local-laundry-service.d.ts +++ b/react-icons/md/local-laundry-service.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalLaundryService extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-library.d.ts b/react-icons/md/local-library.d.ts index 8323474502..7395db484f 100644 --- a/react-icons/md/local-library.d.ts +++ b/react-icons/md/local-library.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-mall.d.ts b/react-icons/md/local-mall.d.ts index ff498e258c..d1938cb81e 100644 --- a/react-icons/md/local-mall.d.ts +++ b/react-icons/md/local-mall.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalMall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-movies.d.ts b/react-icons/md/local-movies.d.ts index fdea5b8143..b869e8bbbc 100644 --- a/react-icons/md/local-movies.d.ts +++ b/react-icons/md/local-movies.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalMovies extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-offer.d.ts b/react-icons/md/local-offer.d.ts index d24f367bf4..dc4147d45a 100644 --- a/react-icons/md/local-offer.d.ts +++ b/react-icons/md/local-offer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalOffer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-parking.d.ts b/react-icons/md/local-parking.d.ts index db29d102c5..11f6840e9c 100644 --- a/react-icons/md/local-parking.d.ts +++ b/react-icons/md/local-parking.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalParking extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-pharmacy.d.ts b/react-icons/md/local-pharmacy.d.ts index 6d0b8cd48c..21b6e38f15 100644 --- a/react-icons/md/local-pharmacy.d.ts +++ b/react-icons/md/local-pharmacy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPharmacy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-phone.d.ts b/react-icons/md/local-phone.d.ts index 5feb41d802..68d6601d0b 100644 --- a/react-icons/md/local-phone.d.ts +++ b/react-icons/md/local-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-pizza.d.ts b/react-icons/md/local-pizza.d.ts index 03eae8d045..074e37c085 100644 --- a/react-icons/md/local-pizza.d.ts +++ b/react-icons/md/local-pizza.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPizza extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-play.d.ts b/react-icons/md/local-play.d.ts index 57de312f4a..e28ff41588 100644 --- a/react-icons/md/local-play.d.ts +++ b/react-icons/md/local-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-post-office.d.ts b/react-icons/md/local-post-office.d.ts index daa26b0811..0ca4c79f97 100644 --- a/react-icons/md/local-post-office.d.ts +++ b/react-icons/md/local-post-office.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPostOffice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-print-shop.d.ts b/react-icons/md/local-print-shop.d.ts index 9af1ddc253..3cae51257f 100644 --- a/react-icons/md/local-print-shop.d.ts +++ b/react-icons/md/local-print-shop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalPrintShop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-restaurant.d.ts b/react-icons/md/local-restaurant.d.ts index aa175439f8..baf3f71389 100644 --- a/react-icons/md/local-restaurant.d.ts +++ b/react-icons/md/local-restaurant.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-see.d.ts b/react-icons/md/local-see.d.ts index 2a58205790..b4cdb8308d 100644 --- a/react-icons/md/local-see.d.ts +++ b/react-icons/md/local-see.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalSee extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-shipping.d.ts b/react-icons/md/local-shipping.d.ts index 4623d7e0ef..c1b23074ef 100644 --- a/react-icons/md/local-shipping.d.ts +++ b/react-icons/md/local-shipping.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalShipping extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/local-taxi.d.ts b/react-icons/md/local-taxi.d.ts index 3d72753fde..66ef3b48e4 100644 --- a/react-icons/md/local-taxi.d.ts +++ b/react-icons/md/local-taxi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocalTaxi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-city.d.ts b/react-icons/md/location-city.d.ts index cf7ab9c034..42084443fd 100644 --- a/react-icons/md/location-city.d.ts +++ b/react-icons/md/location-city.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationCity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-disabled.d.ts b/react-icons/md/location-disabled.d.ts index f79f03432c..b732a398e8 100644 --- a/react-icons/md/location-disabled.d.ts +++ b/react-icons/md/location-disabled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-history.d.ts b/react-icons/md/location-history.d.ts index 32e5e2d583..aacaf5131d 100644 --- a/react-icons/md/location-history.d.ts +++ b/react-icons/md/location-history.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationHistory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-off.d.ts b/react-icons/md/location-off.d.ts index 65bdb9e669..a17bd55a21 100644 --- a/react-icons/md/location-off.d.ts +++ b/react-icons/md/location-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-on.d.ts b/react-icons/md/location-on.d.ts index 0b7629ea86..0422148bf6 100644 --- a/react-icons/md/location-on.d.ts +++ b/react-icons/md/location-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/location-searching.d.ts b/react-icons/md/location-searching.d.ts index 243d04d3b8..90d111c5a0 100644 --- a/react-icons/md/location-searching.d.ts +++ b/react-icons/md/location-searching.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLocationSearching extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock-open.d.ts b/react-icons/md/lock-open.d.ts index 5c9a5e6bdd..5dbc5e1dc8 100644 --- a/react-icons/md/lock-open.d.ts +++ b/react-icons/md/lock-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLockOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock-outline.d.ts b/react-icons/md/lock-outline.d.ts index 81f1b082e8..548f6912d0 100644 --- a/react-icons/md/lock-outline.d.ts +++ b/react-icons/md/lock-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLockOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/lock.d.ts b/react-icons/md/lock.d.ts index a0d1d74716..f5cf6ca046 100644 --- a/react-icons/md/lock.d.ts +++ b/react-icons/md/lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-3.d.ts b/react-icons/md/looks-3.d.ts index 2c3e69d835..416def3052 100644 --- a/react-icons/md/looks-3.d.ts +++ b/react-icons/md/looks-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooks3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-4.d.ts b/react-icons/md/looks-4.d.ts index 2cb7a35e12..a07e8d57ff 100644 --- a/react-icons/md/looks-4.d.ts +++ b/react-icons/md/looks-4.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooks4 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-5.d.ts b/react-icons/md/looks-5.d.ts index 9a86f4cd2b..24d8bc1640 100644 --- a/react-icons/md/looks-5.d.ts +++ b/react-icons/md/looks-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooks5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-6.d.ts b/react-icons/md/looks-6.d.ts index d942e32e16..c7e92b90c8 100644 --- a/react-icons/md/looks-6.d.ts +++ b/react-icons/md/looks-6.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooks6 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-one.d.ts b/react-icons/md/looks-one.d.ts index 9c719456ac..1c4ae890e9 100644 --- a/react-icons/md/looks-one.d.ts +++ b/react-icons/md/looks-one.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooksOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks-two.d.ts b/react-icons/md/looks-two.d.ts index 85d9227f4e..ee19326085 100644 --- a/react-icons/md/looks-two.d.ts +++ b/react-icons/md/looks-two.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooksTwo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/looks.d.ts b/react-icons/md/looks.d.ts index a2be6217cf..d13832e114 100644 --- a/react-icons/md/looks.d.ts +++ b/react-icons/md/looks.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLooks extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loop.d.ts b/react-icons/md/loop.d.ts index 20a5e658e4..6dfefc0cf2 100644 --- a/react-icons/md/loop.d.ts +++ b/react-icons/md/loop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loupe.d.ts b/react-icons/md/loupe.d.ts index c68c70a354..e34781b87a 100644 --- a/react-icons/md/loupe.d.ts +++ b/react-icons/md/loupe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLoupe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/low-priority.d.ts b/react-icons/md/low-priority.d.ts index 9ca926e382..1cebbf3ff2 100644 --- a/react-icons/md/low-priority.d.ts +++ b/react-icons/md/low-priority.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLowPriority extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/loyalty.d.ts b/react-icons/md/loyalty.d.ts index ceb0a4a8ab..23368152ba 100644 --- a/react-icons/md/loyalty.d.ts +++ b/react-icons/md/loyalty.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdLoyalty extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mail-outline.d.ts b/react-icons/md/mail-outline.d.ts index aa776f10bf..53a786342b 100644 --- a/react-icons/md/mail-outline.d.ts +++ b/react-icons/md/mail-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMailOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mail.d.ts b/react-icons/md/mail.d.ts index 88df96f01d..f58cf3e407 100644 --- a/react-icons/md/mail.d.ts +++ b/react-icons/md/mail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/map.d.ts b/react-icons/md/map.d.ts index ba1e57f062..44432a79c8 100644 --- a/react-icons/md/map.d.ts +++ b/react-icons/md/map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/markunread-mailbox.d.ts b/react-icons/md/markunread-mailbox.d.ts index 29557d6a20..8cb6bae8af 100644 --- a/react-icons/md/markunread-mailbox.d.ts +++ b/react-icons/md/markunread-mailbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMarkunreadMailbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/markunread.d.ts b/react-icons/md/markunread.d.ts index 28319efdfe..79d2981582 100644 --- a/react-icons/md/markunread.d.ts +++ b/react-icons/md/markunread.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMarkunread extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/memory.d.ts b/react-icons/md/memory.d.ts index 308655329d..1877820752 100644 --- a/react-icons/md/memory.d.ts +++ b/react-icons/md/memory.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMemory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/menu.d.ts b/react-icons/md/menu.d.ts index 899ebe0a24..3cc01fe6a6 100644 --- a/react-icons/md/menu.d.ts +++ b/react-icons/md/menu.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/merge-type.d.ts b/react-icons/md/merge-type.d.ts index 4c76526df7..1b24c5a3f7 100644 --- a/react-icons/md/merge-type.d.ts +++ b/react-icons/md/merge-type.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMergeType extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/message.d.ts b/react-icons/md/message.d.ts index a09d53a0c5..91a3a5ae22 100644 --- a/react-icons/md/message.d.ts +++ b/react-icons/md/message.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMessage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic-none.d.ts b/react-icons/md/mic-none.d.ts index 884bf1b628..d428268c3d 100644 --- a/react-icons/md/mic-none.d.ts +++ b/react-icons/md/mic-none.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMicNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic-off.d.ts b/react-icons/md/mic-off.d.ts index dbeec4e49c..6a870f7204 100644 --- a/react-icons/md/mic-off.d.ts +++ b/react-icons/md/mic-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMicOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mic.d.ts b/react-icons/md/mic.d.ts index 0339acb382..121d5d6ea8 100644 --- a/react-icons/md/mic.d.ts +++ b/react-icons/md/mic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mms.d.ts b/react-icons/md/mms.d.ts index 2b279c230f..f0548775d1 100644 --- a/react-icons/md/mms.d.ts +++ b/react-icons/md/mms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mode-comment.d.ts b/react-icons/md/mode-comment.d.ts index 8ca1317733..fd43778275 100644 --- a/react-icons/md/mode-comment.d.ts +++ b/react-icons/md/mode-comment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdModeComment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mode-edit.d.ts b/react-icons/md/mode-edit.d.ts index ef0f3e573a..20e77be5e6 100644 --- a/react-icons/md/mode-edit.d.ts +++ b/react-icons/md/mode-edit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdModeEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/monetization-on.d.ts b/react-icons/md/monetization-on.d.ts index cd57df7fdd..0a64afcafd 100644 --- a/react-icons/md/monetization-on.d.ts +++ b/react-icons/md/monetization-on.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMonetizationOn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/money-off.d.ts b/react-icons/md/money-off.d.ts index 8f154a2bc4..75ca0fe5d9 100644 --- a/react-icons/md/money-off.d.ts +++ b/react-icons/md/money-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMoneyOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/monochrome-photos.d.ts b/react-icons/md/monochrome-photos.d.ts index fc5c716167..d4683c1b10 100644 --- a/react-icons/md/monochrome-photos.d.ts +++ b/react-icons/md/monochrome-photos.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMonochromePhotos extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mood-bad.d.ts b/react-icons/md/mood-bad.d.ts index 17d34b9f45..14f41785c5 100644 --- a/react-icons/md/mood-bad.d.ts +++ b/react-icons/md/mood-bad.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMoodBad extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mood.d.ts b/react-icons/md/mood.d.ts index b59615b6f8..4fd1b91995 100644 --- a/react-icons/md/mood.d.ts +++ b/react-icons/md/mood.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMood extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more-horiz.d.ts b/react-icons/md/more-horiz.d.ts index ac8c1a2e89..b139bd0b7c 100644 --- a/react-icons/md/more-horiz.d.ts +++ b/react-icons/md/more-horiz.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMoreHoriz extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more-vert.d.ts b/react-icons/md/more-vert.d.ts index b919e9fdce..5421946b3b 100644 --- a/react-icons/md/more-vert.d.ts +++ b/react-icons/md/more-vert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMoreVert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/more.d.ts b/react-icons/md/more.d.ts index fec4ad1b55..9502268760 100644 --- a/react-icons/md/more.d.ts +++ b/react-icons/md/more.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/motorcycle.d.ts b/react-icons/md/motorcycle.d.ts index 151dc7163f..f2b263ba19 100644 --- a/react-icons/md/motorcycle.d.ts +++ b/react-icons/md/motorcycle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMotorcycle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/mouse.d.ts b/react-icons/md/mouse.d.ts index 37ac1a263a..2b7c41bde8 100644 --- a/react-icons/md/mouse.d.ts +++ b/react-icons/md/mouse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMouse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/move-to-inbox.d.ts b/react-icons/md/move-to-inbox.d.ts index 44b6d99209..33b2a62f9e 100644 --- a/react-icons/md/move-to-inbox.d.ts +++ b/react-icons/md/move-to-inbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMoveToInbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie-creation.d.ts b/react-icons/md/movie-creation.d.ts index 598edc5cf1..65ce13a4a1 100644 --- a/react-icons/md/movie-creation.d.ts +++ b/react-icons/md/movie-creation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMovieCreation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie-filter.d.ts b/react-icons/md/movie-filter.d.ts index 1596550584..a38e09dc14 100644 --- a/react-icons/md/movie-filter.d.ts +++ b/react-icons/md/movie-filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMovieFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/movie.d.ts b/react-icons/md/movie.d.ts index b0fae87b66..7aeb5f5ee3 100644 --- a/react-icons/md/movie.d.ts +++ b/react-icons/md/movie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMovie extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/multiline-chart.d.ts b/react-icons/md/multiline-chart.d.ts index b5b312f5e2..f6d3d0f197 100644 --- a/react-icons/md/multiline-chart.d.ts +++ b/react-icons/md/multiline-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMultilineChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/music-note.d.ts b/react-icons/md/music-note.d.ts index 1147b0c126..387ad6e407 100644 --- a/react-icons/md/music-note.d.ts +++ b/react-icons/md/music-note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMusicNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/music-video.d.ts b/react-icons/md/music-video.d.ts index 4faa13b1fc..64b3e90003 100644 --- a/react-icons/md/music-video.d.ts +++ b/react-icons/md/music-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMusicVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/my-location.d.ts b/react-icons/md/my-location.d.ts index d3afc728ca..c38a9f836a 100644 --- a/react-icons/md/my-location.d.ts +++ b/react-icons/md/my-location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdMyLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nature-people.d.ts b/react-icons/md/nature-people.d.ts index 17a7577779..6f0b374a89 100644 --- a/react-icons/md/nature-people.d.ts +++ b/react-icons/md/nature-people.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNaturePeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nature.d.ts b/react-icons/md/nature.d.ts index cca39b9b6d..24bf266ca2 100644 --- a/react-icons/md/nature.d.ts +++ b/react-icons/md/nature.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNature extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigate-before.d.ts b/react-icons/md/navigate-before.d.ts index 36f548b487..2fd6b0016d 100644 --- a/react-icons/md/navigate-before.d.ts +++ b/react-icons/md/navigate-before.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNavigateBefore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigate-next.d.ts b/react-icons/md/navigate-next.d.ts index 37b72edcd3..3837cfeee5 100644 --- a/react-icons/md/navigate-next.d.ts +++ b/react-icons/md/navigate-next.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNavigateNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/navigation.d.ts b/react-icons/md/navigation.d.ts index dfd8d23a13..469983eba0 100644 --- a/react-icons/md/navigation.d.ts +++ b/react-icons/md/navigation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNavigation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/near-me.d.ts b/react-icons/md/near-me.d.ts index 9ca6ca2105..bf8f4e3d49 100644 --- a/react-icons/md/near-me.d.ts +++ b/react-icons/md/near-me.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNearMe extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-cell.d.ts b/react-icons/md/network-cell.d.ts index 0d0d2f7564..61c855de27 100644 --- a/react-icons/md/network-cell.d.ts +++ b/react-icons/md/network-cell.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNetworkCell extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-check.d.ts b/react-icons/md/network-check.d.ts index b0fc6ac8c8..eaa9e06436 100644 --- a/react-icons/md/network-check.d.ts +++ b/react-icons/md/network-check.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNetworkCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-locked.d.ts b/react-icons/md/network-locked.d.ts index f7efd01377..02087c2c78 100644 --- a/react-icons/md/network-locked.d.ts +++ b/react-icons/md/network-locked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNetworkLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/network-wifi.d.ts b/react-icons/md/network-wifi.d.ts index 6a167d9ada..e6151c9b6e 100644 --- a/react-icons/md/network-wifi.d.ts +++ b/react-icons/md/network-wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNetworkWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/new-releases.d.ts b/react-icons/md/new-releases.d.ts index fc850459b1..8ddfff78f0 100644 --- a/react-icons/md/new-releases.d.ts +++ b/react-icons/md/new-releases.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNewReleases extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/next-week.d.ts b/react-icons/md/next-week.d.ts index 63ef505d4c..eb311a0fa6 100644 --- a/react-icons/md/next-week.d.ts +++ b/react-icons/md/next-week.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNextWeek extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/nfc.d.ts b/react-icons/md/nfc.d.ts index 8cb8cd692c..ed68e45492 100644 --- a/react-icons/md/nfc.d.ts +++ b/react-icons/md/nfc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNfc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/no-encryption.d.ts b/react-icons/md/no-encryption.d.ts index 220d617b9c..972c6548fc 100644 --- a/react-icons/md/no-encryption.d.ts +++ b/react-icons/md/no-encryption.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNoEncryption extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/no-sim.d.ts b/react-icons/md/no-sim.d.ts index 1bec6d6c85..e727253cdc 100644 --- a/react-icons/md/no-sim.d.ts +++ b/react-icons/md/no-sim.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNoSim extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/not-interested.d.ts b/react-icons/md/not-interested.d.ts index 7abe215564..fa2ebf7e7b 100644 --- a/react-icons/md/not-interested.d.ts +++ b/react-icons/md/not-interested.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotInterested extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/note-add.d.ts b/react-icons/md/note-add.d.ts index 3fc21bff5c..5bac8801be 100644 --- a/react-icons/md/note-add.d.ts +++ b/react-icons/md/note-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNoteAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/note.d.ts b/react-icons/md/note.d.ts index e1e3464242..3b804cd526 100644 --- a/react-icons/md/note.d.ts +++ b/react-icons/md/note.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-active.d.ts b/react-icons/md/notifications-active.d.ts index 4cccbc876d..b0cef34757 100644 --- a/react-icons/md/notifications-active.d.ts +++ b/react-icons/md/notifications-active.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotificationsActive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-none.d.ts b/react-icons/md/notifications-none.d.ts index 9b3c9a70ea..1d8daa0a49 100644 --- a/react-icons/md/notifications-none.d.ts +++ b/react-icons/md/notifications-none.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotificationsNone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-off.d.ts b/react-icons/md/notifications-off.d.ts index c233934614..eee052416b 100644 --- a/react-icons/md/notifications-off.d.ts +++ b/react-icons/md/notifications-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotificationsOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications-paused.d.ts b/react-icons/md/notifications-paused.d.ts index 6d455d25ef..76e8d600d9 100644 --- a/react-icons/md/notifications-paused.d.ts +++ b/react-icons/md/notifications-paused.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotificationsPaused extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/notifications.d.ts b/react-icons/md/notifications.d.ts index 7fb593896c..5061b6fbf2 100644 --- a/react-icons/md/notifications.d.ts +++ b/react-icons/md/notifications.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNotifications extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/now-wallpaper.d.ts b/react-icons/md/now-wallpaper.d.ts index 762d995655..ce24bb6774 100644 --- a/react-icons/md/now-wallpaper.d.ts +++ b/react-icons/md/now-wallpaper.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNowWallpaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/now-widgets.d.ts b/react-icons/md/now-widgets.d.ts index 025fa5ba3f..c17dd8a1e2 100644 --- a/react-icons/md/now-widgets.d.ts +++ b/react-icons/md/now-widgets.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdNowWidgets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/offline-pin.d.ts b/react-icons/md/offline-pin.d.ts index 84de0c67c3..95a0868546 100644 --- a/react-icons/md/offline-pin.d.ts +++ b/react-icons/md/offline-pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOfflinePin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ondemand-video.d.ts b/react-icons/md/ondemand-video.d.ts index 43b67ead89..ecb47468ba 100644 --- a/react-icons/md/ondemand-video.d.ts +++ b/react-icons/md/ondemand-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOndemandVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/opacity.d.ts b/react-icons/md/opacity.d.ts index 9e11a95333..a63f40eb52 100644 --- a/react-icons/md/opacity.d.ts +++ b/react-icons/md/opacity.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOpacity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-in-browser.d.ts b/react-icons/md/open-in-browser.d.ts index ebd1c0e166..f74f62c621 100644 --- a/react-icons/md/open-in-browser.d.ts +++ b/react-icons/md/open-in-browser.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOpenInBrowser extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-in-new.d.ts b/react-icons/md/open-in-new.d.ts index 17e67dc6f5..62e3068ebd 100644 --- a/react-icons/md/open-in-new.d.ts +++ b/react-icons/md/open-in-new.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOpenInNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/open-with.d.ts b/react-icons/md/open-with.d.ts index 2a16675b3e..2944150a3c 100644 --- a/react-icons/md/open-with.d.ts +++ b/react-icons/md/open-with.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdOpenWith extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pages.d.ts b/react-icons/md/pages.d.ts index 3fcfe0a5fe..1c53fa1c78 100644 --- a/react-icons/md/pages.d.ts +++ b/react-icons/md/pages.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPages extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pageview.d.ts b/react-icons/md/pageview.d.ts index 4d901a7e19..e287b467d1 100644 --- a/react-icons/md/pageview.d.ts +++ b/react-icons/md/pageview.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPageview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/palette.d.ts b/react-icons/md/palette.d.ts index 967cee8f94..67525e2f02 100644 --- a/react-icons/md/palette.d.ts +++ b/react-icons/md/palette.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPalette extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pan-tool.d.ts b/react-icons/md/pan-tool.d.ts index eeaaeaa4c0..276854e5fc 100644 --- a/react-icons/md/pan-tool.d.ts +++ b/react-icons/md/pan-tool.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanTool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-fish-eye.d.ts b/react-icons/md/panorama-fish-eye.d.ts index 329a7b64d9..9a8e5cb631 100644 --- a/react-icons/md/panorama-fish-eye.d.ts +++ b/react-icons/md/panorama-fish-eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanoramaFishEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-horizontal.d.ts b/react-icons/md/panorama-horizontal.d.ts index 9eeab792cd..0a7ee309a0 100644 --- a/react-icons/md/panorama-horizontal.d.ts +++ b/react-icons/md/panorama-horizontal.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanoramaHorizontal extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-vertical.d.ts b/react-icons/md/panorama-vertical.d.ts index 6b7d6f1db0..74464aa811 100644 --- a/react-icons/md/panorama-vertical.d.ts +++ b/react-icons/md/panorama-vertical.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanoramaVertical extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama-wide-angle.d.ts b/react-icons/md/panorama-wide-angle.d.ts index 8d0f366b3a..b0ff9c518b 100644 --- a/react-icons/md/panorama-wide-angle.d.ts +++ b/react-icons/md/panorama-wide-angle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanoramaWideAngle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/panorama.d.ts b/react-icons/md/panorama.d.ts index 409d5ed6e9..c0839446ff 100644 --- a/react-icons/md/panorama.d.ts +++ b/react-icons/md/panorama.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPanorama extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/party-mode.d.ts b/react-icons/md/party-mode.d.ts index a203e8c342..8f8b223429 100644 --- a/react-icons/md/party-mode.d.ts +++ b/react-icons/md/party-mode.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPartyMode extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause-circle-filled.d.ts b/react-icons/md/pause-circle-filled.d.ts index b48c74026e..1f91299cf3 100644 --- a/react-icons/md/pause-circle-filled.d.ts +++ b/react-icons/md/pause-circle-filled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPauseCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause-circle-outline.d.ts b/react-icons/md/pause-circle-outline.d.ts index 9a900a6a70..8eba5344da 100644 --- a/react-icons/md/pause-circle-outline.d.ts +++ b/react-icons/md/pause-circle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPauseCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pause.d.ts b/react-icons/md/pause.d.ts index caa3e17352..976e92e444 100644 --- a/react-icons/md/pause.d.ts +++ b/react-icons/md/pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/payment.d.ts b/react-icons/md/payment.d.ts index e6ccf7aa26..4dc4bb7a98 100644 --- a/react-icons/md/payment.d.ts +++ b/react-icons/md/payment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPayment extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/people-outline.d.ts b/react-icons/md/people-outline.d.ts index 6a20458f3d..5ac6dac234 100644 --- a/react-icons/md/people-outline.d.ts +++ b/react-icons/md/people-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPeopleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/people.d.ts b/react-icons/md/people.d.ts index 0ece11cd59..e0d971e69b 100644 --- a/react-icons/md/people.d.ts +++ b/react-icons/md/people.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPeople extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-camera-mic.d.ts b/react-icons/md/perm-camera-mic.d.ts index 971a0f33a5..3919d68543 100644 --- a/react-icons/md/perm-camera-mic.d.ts +++ b/react-icons/md/perm-camera-mic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermCameraMic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-contact-calendar.d.ts b/react-icons/md/perm-contact-calendar.d.ts index 71152edd0f..9f4f78f873 100644 --- a/react-icons/md/perm-contact-calendar.d.ts +++ b/react-icons/md/perm-contact-calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermContactCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-data-setting.d.ts b/react-icons/md/perm-data-setting.d.ts index 9ec9343e2c..00f30939fb 100644 --- a/react-icons/md/perm-data-setting.d.ts +++ b/react-icons/md/perm-data-setting.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermDataSetting extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-device-information.d.ts b/react-icons/md/perm-device-information.d.ts index 6d1c487865..b015c12ca7 100644 --- a/react-icons/md/perm-device-information.d.ts +++ b/react-icons/md/perm-device-information.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermDeviceInformation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-identity.d.ts b/react-icons/md/perm-identity.d.ts index a7e5b12531..659b327041 100644 --- a/react-icons/md/perm-identity.d.ts +++ b/react-icons/md/perm-identity.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermIdentity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-media.d.ts b/react-icons/md/perm-media.d.ts index dd63105c86..18d44b350f 100644 --- a/react-icons/md/perm-media.d.ts +++ b/react-icons/md/perm-media.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermMedia extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-phone-msg.d.ts b/react-icons/md/perm-phone-msg.d.ts index 5819bc2a8c..badfb6b66d 100644 --- a/react-icons/md/perm-phone-msg.d.ts +++ b/react-icons/md/perm-phone-msg.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermPhoneMsg extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/perm-scan-wifi.d.ts b/react-icons/md/perm-scan-wifi.d.ts index df045d3307..97eb578048 100644 --- a/react-icons/md/perm-scan-wifi.d.ts +++ b/react-icons/md/perm-scan-wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPermScanWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-add.d.ts b/react-icons/md/person-add.d.ts index a80075f1c8..fbcaf30900 100644 --- a/react-icons/md/person-add.d.ts +++ b/react-icons/md/person-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPersonAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-outline.d.ts b/react-icons/md/person-outline.d.ts index 359f464647..5fca684d40 100644 --- a/react-icons/md/person-outline.d.ts +++ b/react-icons/md/person-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPersonOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-pin-circle.d.ts b/react-icons/md/person-pin-circle.d.ts index 653989979b..64716d75fb 100644 --- a/react-icons/md/person-pin-circle.d.ts +++ b/react-icons/md/person-pin-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPersonPinCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person-pin.d.ts b/react-icons/md/person-pin.d.ts index eafbcd83d8..bb75a861cc 100644 --- a/react-icons/md/person-pin.d.ts +++ b/react-icons/md/person-pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPersonPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/person.d.ts b/react-icons/md/person.d.ts index 530330cd9e..7faee5e57a 100644 --- a/react-icons/md/person.d.ts +++ b/react-icons/md/person.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPerson extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/personal-video.d.ts b/react-icons/md/personal-video.d.ts index b72c14f489..88f73b1966 100644 --- a/react-icons/md/personal-video.d.ts +++ b/react-icons/md/personal-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPersonalVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pets.d.ts b/react-icons/md/pets.d.ts index 7a9fb747ce..6cd84c1ed9 100644 --- a/react-icons/md/pets.d.ts +++ b/react-icons/md/pets.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-android.d.ts b/react-icons/md/phone-android.d.ts index 6bffd6ef7c..55297bbe6a 100644 --- a/react-icons/md/phone-android.d.ts +++ b/react-icons/md/phone-android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-bluetooth-speaker.d.ts b/react-icons/md/phone-bluetooth-speaker.d.ts index 3395c95243..37bf47bf83 100644 --- a/react-icons/md/phone-bluetooth-speaker.d.ts +++ b/react-icons/md/phone-bluetooth-speaker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneBluetoothSpeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-forwarded.d.ts b/react-icons/md/phone-forwarded.d.ts index 206e985a05..85cbd7a00e 100644 --- a/react-icons/md/phone-forwarded.d.ts +++ b/react-icons/md/phone-forwarded.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneForwarded extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-in-talk.d.ts b/react-icons/md/phone-in-talk.d.ts index 5934da24d6..009a64915f 100644 --- a/react-icons/md/phone-in-talk.d.ts +++ b/react-icons/md/phone-in-talk.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneInTalk extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-iphone.d.ts b/react-icons/md/phone-iphone.d.ts index 3c9e4b6350..d2aa25ee0e 100644 --- a/react-icons/md/phone-iphone.d.ts +++ b/react-icons/md/phone-iphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneIphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-locked.d.ts b/react-icons/md/phone-locked.d.ts index 9370064722..eadcc1bdfc 100644 --- a/react-icons/md/phone-locked.d.ts +++ b/react-icons/md/phone-locked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneLocked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-missed.d.ts b/react-icons/md/phone-missed.d.ts index eaa3b5622d..ed9fb43d94 100644 --- a/react-icons/md/phone-missed.d.ts +++ b/react-icons/md/phone-missed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoneMissed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone-paused.d.ts b/react-icons/md/phone-paused.d.ts index 45dd40376c..9864736a77 100644 --- a/react-icons/md/phone-paused.d.ts +++ b/react-icons/md/phone-paused.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonePaused extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phone.d.ts b/react-icons/md/phone.d.ts index 3ce2737de0..c22c0c2798 100644 --- a/react-icons/md/phone.d.ts +++ b/react-icons/md/phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-erase.d.ts b/react-icons/md/phonelink-erase.d.ts index 3df95d0af8..53ab6d2ce6 100644 --- a/react-icons/md/phonelink-erase.d.ts +++ b/react-icons/md/phonelink-erase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelinkErase extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-lock.d.ts b/react-icons/md/phonelink-lock.d.ts index 2fb774271c..fb35b3fcad 100644 --- a/react-icons/md/phonelink-lock.d.ts +++ b/react-icons/md/phonelink-lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelinkLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-off.d.ts b/react-icons/md/phonelink-off.d.ts index ef41b0b6a6..9d5f9abc9b 100644 --- a/react-icons/md/phonelink-off.d.ts +++ b/react-icons/md/phonelink-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelinkOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-ring.d.ts b/react-icons/md/phonelink-ring.d.ts index cfa58d10e2..d5875e841e 100644 --- a/react-icons/md/phonelink-ring.d.ts +++ b/react-icons/md/phonelink-ring.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelinkRing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink-setup.d.ts b/react-icons/md/phonelink-setup.d.ts index 3d4e83f335..88ee029723 100644 --- a/react-icons/md/phonelink-setup.d.ts +++ b/react-icons/md/phonelink-setup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelinkSetup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/phonelink.d.ts b/react-icons/md/phonelink.d.ts index 754b2c5155..cd03ec359c 100644 --- a/react-icons/md/phonelink.d.ts +++ b/react-icons/md/phonelink.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhonelink extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-album.d.ts b/react-icons/md/photo-album.d.ts index 437dadf1b0..78f5d8d54d 100644 --- a/react-icons/md/photo-album.d.ts +++ b/react-icons/md/photo-album.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoAlbum extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-camera.d.ts b/react-icons/md/photo-camera.d.ts index 9a79a20722..b61f881440 100644 --- a/react-icons/md/photo-camera.d.ts +++ b/react-icons/md/photo-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-filter.d.ts b/react-icons/md/photo-filter.d.ts index 8b3a34b4bd..105f221d2b 100644 --- a/react-icons/md/photo-filter.d.ts +++ b/react-icons/md/photo-filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-library.d.ts b/react-icons/md/photo-library.d.ts index b2af6cacac..8dfd798014 100644 --- a/react-icons/md/photo-library.d.ts +++ b/react-icons/md/photo-library.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-actual.d.ts b/react-icons/md/photo-size-select-actual.d.ts index 4c40c7b34c..fc3bb109ba 100644 --- a/react-icons/md/photo-size-select-actual.d.ts +++ b/react-icons/md/photo-size-select-actual.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoSizeSelectActual extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-large.d.ts b/react-icons/md/photo-size-select-large.d.ts index 9037238c38..455cc3eba9 100644 --- a/react-icons/md/photo-size-select-large.d.ts +++ b/react-icons/md/photo-size-select-large.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoSizeSelectLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo-size-select-small.d.ts b/react-icons/md/photo-size-select-small.d.ts index 36531f6da9..0aec69b0e7 100644 --- a/react-icons/md/photo-size-select-small.d.ts +++ b/react-icons/md/photo-size-select-small.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhotoSizeSelectSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/photo.d.ts b/react-icons/md/photo.d.ts index 7304d205af..e07c4d7e8c 100644 --- a/react-icons/md/photo.d.ts +++ b/react-icons/md/photo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPhoto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-as-pdf.d.ts b/react-icons/md/picture-as-pdf.d.ts index e6d7ad5ec8..89d9b27cf9 100644 --- a/react-icons/md/picture-as-pdf.d.ts +++ b/react-icons/md/picture-as-pdf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPictureAsPdf extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-in-picture-alt.d.ts b/react-icons/md/picture-in-picture-alt.d.ts index d680da7d7b..dfb3d0c759 100644 --- a/react-icons/md/picture-in-picture-alt.d.ts +++ b/react-icons/md/picture-in-picture-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPictureInPictureAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/picture-in-picture.d.ts b/react-icons/md/picture-in-picture.d.ts index 95a002c05f..616af0ecb1 100644 --- a/react-icons/md/picture-in-picture.d.ts +++ b/react-icons/md/picture-in-picture.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPictureInPicture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pie-chart-outlined.d.ts b/react-icons/md/pie-chart-outlined.d.ts index 6011528b36..442fed8275 100644 --- a/react-icons/md/pie-chart-outlined.d.ts +++ b/react-icons/md/pie-chart-outlined.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPieChartOutlined extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pie-chart.d.ts b/react-icons/md/pie-chart.d.ts index 3e1923ff3e..6e987cd6e3 100644 --- a/react-icons/md/pie-chart.d.ts +++ b/react-icons/md/pie-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPieChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pin-drop.d.ts b/react-icons/md/pin-drop.d.ts index 68669ad886..e4d196f79c 100644 --- a/react-icons/md/pin-drop.d.ts +++ b/react-icons/md/pin-drop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPinDrop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/place.d.ts b/react-icons/md/place.d.ts index f5cfa87181..eac8731212 100644 --- a/react-icons/md/place.d.ts +++ b/react-icons/md/place.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlace extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-arrow.d.ts b/react-icons/md/play-arrow.d.ts index 307db41417..1534fd29d0 100644 --- a/react-icons/md/play-arrow.d.ts +++ b/react-icons/md/play-arrow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlayArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-circle-filled.d.ts b/react-icons/md/play-circle-filled.d.ts index f429c81821..f6a118d06e 100644 --- a/react-icons/md/play-circle-filled.d.ts +++ b/react-icons/md/play-circle-filled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlayCircleFilled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-circle-outline.d.ts b/react-icons/md/play-circle-outline.d.ts index 4ea40c6077..d91b8982db 100644 --- a/react-icons/md/play-circle-outline.d.ts +++ b/react-icons/md/play-circle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlayCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/play-for-work.d.ts b/react-icons/md/play-for-work.d.ts index 728008553a..129dab9941 100644 --- a/react-icons/md/play-for-work.d.ts +++ b/react-icons/md/play-for-work.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlayForWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-add-check.d.ts b/react-icons/md/playlist-add-check.d.ts index 4052d6923b..70e4042333 100644 --- a/react-icons/md/playlist-add-check.d.ts +++ b/react-icons/md/playlist-add-check.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlaylistAddCheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-add.d.ts b/react-icons/md/playlist-add.d.ts index 77848aaec7..292a943c6c 100644 --- a/react-icons/md/playlist-add.d.ts +++ b/react-icons/md/playlist-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlaylistAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/playlist-play.d.ts b/react-icons/md/playlist-play.d.ts index e8f92a7f6c..836eaa47c2 100644 --- a/react-icons/md/playlist-play.d.ts +++ b/react-icons/md/playlist-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlaylistPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/plus-one.d.ts b/react-icons/md/plus-one.d.ts index 653b206722..f7978967fd 100644 --- a/react-icons/md/plus-one.d.ts +++ b/react-icons/md/plus-one.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPlusOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/poll.d.ts b/react-icons/md/poll.d.ts index 65339f5268..c99371da02 100644 --- a/react-icons/md/poll.d.ts +++ b/react-icons/md/poll.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPoll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/polymer.d.ts b/react-icons/md/polymer.d.ts index 7e84fdfc0a..5e47c39585 100644 --- a/react-icons/md/polymer.d.ts +++ b/react-icons/md/polymer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPolymer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pool.d.ts b/react-icons/md/pool.d.ts index b66e44bd94..2da1fcb6c9 100644 --- a/react-icons/md/pool.d.ts +++ b/react-icons/md/pool.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/portable-wifi-off.d.ts b/react-icons/md/portable-wifi-off.d.ts index fe983ab621..38763a99e1 100644 --- a/react-icons/md/portable-wifi-off.d.ts +++ b/react-icons/md/portable-wifi-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPortableWifiOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/portrait.d.ts b/react-icons/md/portrait.d.ts index 1ad7f3343f..7bdec6db8f 100644 --- a/react-icons/md/portrait.d.ts +++ b/react-icons/md/portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power-input.d.ts b/react-icons/md/power-input.d.ts index a28296a117..5cec24c8af 100644 --- a/react-icons/md/power-input.d.ts +++ b/react-icons/md/power-input.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPowerInput extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power-settings-new.d.ts b/react-icons/md/power-settings-new.d.ts index e6e20f5767..576bfe995c 100644 --- a/react-icons/md/power-settings-new.d.ts +++ b/react-icons/md/power-settings-new.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPowerSettingsNew extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/power.d.ts b/react-icons/md/power.d.ts index 2a14156858..78822c79e3 100644 --- a/react-icons/md/power.d.ts +++ b/react-icons/md/power.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/pregnant-woman.d.ts b/react-icons/md/pregnant-woman.d.ts index 9b8eda86ea..d224ace9b4 100644 --- a/react-icons/md/pregnant-woman.d.ts +++ b/react-icons/md/pregnant-woman.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPregnantWoman extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/present-to-all.d.ts b/react-icons/md/present-to-all.d.ts index 3303c940e0..2ae392805a 100644 --- a/react-icons/md/present-to-all.d.ts +++ b/react-icons/md/present-to-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPresentToAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/print.d.ts b/react-icons/md/print.d.ts index 5a7b38aa27..c68190d1e2 100644 --- a/react-icons/md/print.d.ts +++ b/react-icons/md/print.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPrint extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/priority-high.d.ts b/react-icons/md/priority-high.d.ts index dc496550ce..68a35035d2 100644 --- a/react-icons/md/priority-high.d.ts +++ b/react-icons/md/priority-high.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPriorityHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/public.d.ts b/react-icons/md/public.d.ts index c3d7214ce0..5aef886b9f 100644 --- a/react-icons/md/public.d.ts +++ b/react-icons/md/public.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPublic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/publish.d.ts b/react-icons/md/publish.d.ts index db4a3b1f35..35ad94e8db 100644 --- a/react-icons/md/publish.d.ts +++ b/react-icons/md/publish.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdPublish extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/query-builder.d.ts b/react-icons/md/query-builder.d.ts index e4a4e2249d..96a80b6b16 100644 --- a/react-icons/md/query-builder.d.ts +++ b/react-icons/md/query-builder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdQueryBuilder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/question-answer.d.ts b/react-icons/md/question-answer.d.ts index 6ebcf43c8e..a535d06454 100644 --- a/react-icons/md/question-answer.d.ts +++ b/react-icons/md/question-answer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdQuestionAnswer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue-music.d.ts b/react-icons/md/queue-music.d.ts index 094fae589c..43ad37a9f6 100644 --- a/react-icons/md/queue-music.d.ts +++ b/react-icons/md/queue-music.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdQueueMusic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue-play-next.d.ts b/react-icons/md/queue-play-next.d.ts index 597b5494f7..fc3350106e 100644 --- a/react-icons/md/queue-play-next.d.ts +++ b/react-icons/md/queue-play-next.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdQueuePlayNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/queue.d.ts b/react-icons/md/queue.d.ts index 1d1adf5b62..d91295f5d8 100644 --- a/react-icons/md/queue.d.ts +++ b/react-icons/md/queue.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio-button-checked.d.ts b/react-icons/md/radio-button-checked.d.ts index 97ce89f3b4..60daa63dbb 100644 --- a/react-icons/md/radio-button-checked.d.ts +++ b/react-icons/md/radio-button-checked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRadioButtonChecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio-button-unchecked.d.ts b/react-icons/md/radio-button-unchecked.d.ts index 45858f8f0d..0c236e8480 100644 --- a/react-icons/md/radio-button-unchecked.d.ts +++ b/react-icons/md/radio-button-unchecked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRadioButtonUnchecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/radio.d.ts b/react-icons/md/radio.d.ts index c18de32f40..ed42a6186d 100644 --- a/react-icons/md/radio.d.ts +++ b/react-icons/md/radio.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRadio extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rate-review.d.ts b/react-icons/md/rate-review.d.ts index 2ab3b3886a..8d03b3cce9 100644 --- a/react-icons/md/rate-review.d.ts +++ b/react-icons/md/rate-review.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRateReview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/receipt.d.ts b/react-icons/md/receipt.d.ts index 74cb100754..9ca045a812 100644 --- a/react-icons/md/receipt.d.ts +++ b/react-icons/md/receipt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReceipt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/recent-actors.d.ts b/react-icons/md/recent-actors.d.ts index 41a14f5a95..42f4a80dd5 100644 --- a/react-icons/md/recent-actors.d.ts +++ b/react-icons/md/recent-actors.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRecentActors extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/record-voice-over.d.ts b/react-icons/md/record-voice-over.d.ts index b7a1d93a63..89cdd6912d 100644 --- a/react-icons/md/record-voice-over.d.ts +++ b/react-icons/md/record-voice-over.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRecordVoiceOver extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/redeem.d.ts b/react-icons/md/redeem.d.ts index 094071f611..839059ee82 100644 --- a/react-icons/md/redeem.d.ts +++ b/react-icons/md/redeem.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRedeem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/redo.d.ts b/react-icons/md/redo.d.ts index 036ee3cb1b..c97cffc5fe 100644 --- a/react-icons/md/redo.d.ts +++ b/react-icons/md/redo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRedo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/refresh.d.ts b/react-icons/md/refresh.d.ts index 7a7ab5e939..36804df66f 100644 --- a/react-icons/md/refresh.d.ts +++ b/react-icons/md/refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-circle-outline.d.ts b/react-icons/md/remove-circle-outline.d.ts index 51c675ee41..bf9c0b9005 100644 --- a/react-icons/md/remove-circle-outline.d.ts +++ b/react-icons/md/remove-circle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemoveCircleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-circle.d.ts b/react-icons/md/remove-circle.d.ts index 9f9f61c684..4cbe816ccf 100644 --- a/react-icons/md/remove-circle.d.ts +++ b/react-icons/md/remove-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemoveCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-from-queue.d.ts b/react-icons/md/remove-from-queue.d.ts index 21ece9c2ee..0e9121c537 100644 --- a/react-icons/md/remove-from-queue.d.ts +++ b/react-icons/md/remove-from-queue.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemoveFromQueue extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-red-eye.d.ts b/react-icons/md/remove-red-eye.d.ts index db3fcbfcd1..c557b24102 100644 --- a/react-icons/md/remove-red-eye.d.ts +++ b/react-icons/md/remove-red-eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemoveRedEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove-shopping-cart.d.ts b/react-icons/md/remove-shopping-cart.d.ts index c5fa8dc01b..8410212cdd 100644 --- a/react-icons/md/remove-shopping-cart.d.ts +++ b/react-icons/md/remove-shopping-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemoveShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/remove.d.ts b/react-icons/md/remove.d.ts index e1ebf1bfc5..c85fc1603f 100644 --- a/react-icons/md/remove.d.ts +++ b/react-icons/md/remove.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRemove extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reorder.d.ts b/react-icons/md/reorder.d.ts index ab0b465152..8ab8438ee5 100644 --- a/react-icons/md/reorder.d.ts +++ b/react-icons/md/reorder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/repeat-one.d.ts b/react-icons/md/repeat-one.d.ts index e4fc80eb27..4f64c83662 100644 --- a/react-icons/md/repeat-one.d.ts +++ b/react-icons/md/repeat-one.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRepeatOne extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/repeat.d.ts b/react-icons/md/repeat.d.ts index d0cd3655fd..6a721d01dc 100644 --- a/react-icons/md/repeat.d.ts +++ b/react-icons/md/repeat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-10.d.ts b/react-icons/md/replay-10.d.ts index 70d75d7856..cef2f2de04 100644 --- a/react-icons/md/replay-10.d.ts +++ b/react-icons/md/replay-10.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReplay10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-30.d.ts b/react-icons/md/replay-30.d.ts index 1972668312..208c9d9f20 100644 --- a/react-icons/md/replay-30.d.ts +++ b/react-icons/md/replay-30.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReplay30 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay-5.d.ts b/react-icons/md/replay-5.d.ts index 5fe22c164f..0d53436dae 100644 --- a/react-icons/md/replay-5.d.ts +++ b/react-icons/md/replay-5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReplay5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/replay.d.ts b/react-icons/md/replay.d.ts index dfc3ab4fa2..f3b619d7d8 100644 --- a/react-icons/md/replay.d.ts +++ b/react-icons/md/replay.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReplay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reply-all.d.ts b/react-icons/md/reply-all.d.ts index 51df424dc9..7b763d52a1 100644 --- a/react-icons/md/reply-all.d.ts +++ b/react-icons/md/reply-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReplyAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/reply.d.ts b/react-icons/md/reply.d.ts index c483b86b82..582843a5ab 100644 --- a/react-icons/md/reply.d.ts +++ b/react-icons/md/reply.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReply extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/report-problem.d.ts b/react-icons/md/report-problem.d.ts index c8dacf054c..b7f764b4ba 100644 --- a/react-icons/md/report-problem.d.ts +++ b/react-icons/md/report-problem.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReportProblem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/report.d.ts b/react-icons/md/report.d.ts index 360b8cbc3a..bf52e62396 100644 --- a/react-icons/md/report.d.ts +++ b/react-icons/md/report.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdReport extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restaurant-menu.d.ts b/react-icons/md/restaurant-menu.d.ts index ac96c5b1a2..64e962ecac 100644 --- a/react-icons/md/restaurant-menu.d.ts +++ b/react-icons/md/restaurant-menu.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRestaurantMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restaurant.d.ts b/react-icons/md/restaurant.d.ts index 01c48c9988..026b3022c9 100644 --- a/react-icons/md/restaurant.d.ts +++ b/react-icons/md/restaurant.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRestaurant extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restore-page.d.ts b/react-icons/md/restore-page.d.ts index 21442288f4..0ca3b9a452 100644 --- a/react-icons/md/restore-page.d.ts +++ b/react-icons/md/restore-page.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRestorePage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/restore.d.ts b/react-icons/md/restore.d.ts index adeebb72ce..a6fa2285b7 100644 --- a/react-icons/md/restore.d.ts +++ b/react-icons/md/restore.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRestore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/ring-volume.d.ts b/react-icons/md/ring-volume.d.ts index 2136940900..1df24dfc99 100644 --- a/react-icons/md/ring-volume.d.ts +++ b/react-icons/md/ring-volume.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRingVolume extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/room-service.d.ts b/react-icons/md/room-service.d.ts index 9cb60d92ba..3d56c6a52d 100644 --- a/react-icons/md/room-service.d.ts +++ b/react-icons/md/room-service.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRoomService extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/room.d.ts b/react-icons/md/room.d.ts index 2f50ff33e3..82dcbeba95 100644 --- a/react-icons/md/room.d.ts +++ b/react-icons/md/room.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRoom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-90-degrees-ccw.d.ts b/react-icons/md/rotate-90-degrees-ccw.d.ts index 80e3b85e93..8cbed1bd43 100644 --- a/react-icons/md/rotate-90-degrees-ccw.d.ts +++ b/react-icons/md/rotate-90-degrees-ccw.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRotate90DegreesCcw extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-left.d.ts b/react-icons/md/rotate-left.d.ts index 00781fd467..fb5f965f8b 100644 --- a/react-icons/md/rotate-left.d.ts +++ b/react-icons/md/rotate-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRotateLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rotate-right.d.ts b/react-icons/md/rotate-right.d.ts index 833bf60899..eef60f54e6 100644 --- a/react-icons/md/rotate-right.d.ts +++ b/react-icons/md/rotate-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRotateRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rounded-corner.d.ts b/react-icons/md/rounded-corner.d.ts index 32bc3f28d8..c2ec95ced8 100644 --- a/react-icons/md/rounded-corner.d.ts +++ b/react-icons/md/rounded-corner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRoundedCorner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/router.d.ts b/react-icons/md/router.d.ts index 781a1dd169..38adce79db 100644 --- a/react-icons/md/router.d.ts +++ b/react-icons/md/router.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRouter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rowing.d.ts b/react-icons/md/rowing.d.ts index 055733fbab..9fea44a803 100644 --- a/react-icons/md/rowing.d.ts +++ b/react-icons/md/rowing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRowing extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rss-feed.d.ts b/react-icons/md/rss-feed.d.ts index d47035083e..959a26c06e 100644 --- a/react-icons/md/rss-feed.d.ts +++ b/react-icons/md/rss-feed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRssFeed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/rv-hookup.d.ts b/react-icons/md/rv-hookup.d.ts index 49c78419d2..d58a5403cb 100644 --- a/react-icons/md/rv-hookup.d.ts +++ b/react-icons/md/rv-hookup.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdRvHookup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/satellite.d.ts b/react-icons/md/satellite.d.ts index 898852a6be..015355b402 100644 --- a/react-icons/md/satellite.d.ts +++ b/react-icons/md/satellite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSatellite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/save.d.ts b/react-icons/md/save.d.ts index 7a8250c634..e167746b4f 100644 --- a/react-icons/md/save.d.ts +++ b/react-icons/md/save.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSave extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/scanner.d.ts b/react-icons/md/scanner.d.ts index b0503667fc..b6a06b4f1d 100644 --- a/react-icons/md/scanner.d.ts +++ b/react-icons/md/scanner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/schedule.d.ts b/react-icons/md/schedule.d.ts index b438196298..445bb09834 100644 --- a/react-icons/md/schedule.d.ts +++ b/react-icons/md/schedule.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSchedule extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/school.d.ts b/react-icons/md/school.d.ts index 2d0032a8a4..9491da3a00 100644 --- a/react-icons/md/school.d.ts +++ b/react-icons/md/school.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSchool extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-landscape.d.ts b/react-icons/md/screen-lock-landscape.d.ts index 1c72c25b6f..5f364a0cd8 100644 --- a/react-icons/md/screen-lock-landscape.d.ts +++ b/react-icons/md/screen-lock-landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScreenLockLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-portrait.d.ts b/react-icons/md/screen-lock-portrait.d.ts index 341778c4d8..572a5c281c 100644 --- a/react-icons/md/screen-lock-portrait.d.ts +++ b/react-icons/md/screen-lock-portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScreenLockPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-lock-rotation.d.ts b/react-icons/md/screen-lock-rotation.d.ts index 8983bfd97f..e1b25f9119 100644 --- a/react-icons/md/screen-lock-rotation.d.ts +++ b/react-icons/md/screen-lock-rotation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScreenLockRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-rotation.d.ts b/react-icons/md/screen-rotation.d.ts index 7754cf623e..d3e2c951c1 100644 --- a/react-icons/md/screen-rotation.d.ts +++ b/react-icons/md/screen-rotation.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScreenRotation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/screen-share.d.ts b/react-icons/md/screen-share.d.ts index b88b3ec3dd..4e28a0e073 100644 --- a/react-icons/md/screen-share.d.ts +++ b/react-icons/md/screen-share.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdScreenShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sd-card.d.ts b/react-icons/md/sd-card.d.ts index 979b7a949a..17988eed64 100644 --- a/react-icons/md/sd-card.d.ts +++ b/react-icons/md/sd-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSdCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sd-storage.d.ts b/react-icons/md/sd-storage.d.ts index 811180683f..9dfb4e918f 100644 --- a/react-icons/md/sd-storage.d.ts +++ b/react-icons/md/sd-storage.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSdStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/search.d.ts b/react-icons/md/search.d.ts index 99c919293e..98d0ea6dcd 100644 --- a/react-icons/md/search.d.ts +++ b/react-icons/md/search.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSearch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/security.d.ts b/react-icons/md/security.d.ts index b80f2802d1..768234cab5 100644 --- a/react-icons/md/security.d.ts +++ b/react-icons/md/security.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSecurity extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/select-all.d.ts b/react-icons/md/select-all.d.ts index b9b4135d19..23e90960f8 100644 --- a/react-icons/md/select-all.d.ts +++ b/react-icons/md/select-all.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSelectAll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/send.d.ts b/react-icons/md/send.d.ts index 698a92b21e..34bbc6e166 100644 --- a/react-icons/md/send.d.ts +++ b/react-icons/md/send.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSend extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-dissatisfied.d.ts b/react-icons/md/sentiment-dissatisfied.d.ts index a7720ca7a6..05615fa01f 100644 --- a/react-icons/md/sentiment-dissatisfied.d.ts +++ b/react-icons/md/sentiment-dissatisfied.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSentimentDissatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-neutral.d.ts b/react-icons/md/sentiment-neutral.d.ts index 8774b302cd..2aedfaf77f 100644 --- a/react-icons/md/sentiment-neutral.d.ts +++ b/react-icons/md/sentiment-neutral.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSentimentNeutral extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-satisfied.d.ts b/react-icons/md/sentiment-satisfied.d.ts index 079aee9844..174dfee72a 100644 --- a/react-icons/md/sentiment-satisfied.d.ts +++ b/react-icons/md/sentiment-satisfied.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSentimentSatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-very-dissatisfied.d.ts b/react-icons/md/sentiment-very-dissatisfied.d.ts index ede62ab469..7b21215ee7 100644 --- a/react-icons/md/sentiment-very-dissatisfied.d.ts +++ b/react-icons/md/sentiment-very-dissatisfied.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSentimentVeryDissatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sentiment-very-satisfied.d.ts b/react-icons/md/sentiment-very-satisfied.d.ts index 8400df879b..150a13eecb 100644 --- a/react-icons/md/sentiment-very-satisfied.d.ts +++ b/react-icons/md/sentiment-very-satisfied.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSentimentVerySatisfied extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-applications.d.ts b/react-icons/md/settings-applications.d.ts index c5a662b244..95f3d7ed28 100644 --- a/react-icons/md/settings-applications.d.ts +++ b/react-icons/md/settings-applications.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsApplications extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-backup-restore.d.ts b/react-icons/md/settings-backup-restore.d.ts index 852e417122..1b7dbcf401 100644 --- a/react-icons/md/settings-backup-restore.d.ts +++ b/react-icons/md/settings-backup-restore.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsBackupRestore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-bluetooth.d.ts b/react-icons/md/settings-bluetooth.d.ts index 6b8b22b434..b052404f44 100644 --- a/react-icons/md/settings-bluetooth.d.ts +++ b/react-icons/md/settings-bluetooth.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsBluetooth extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-brightness.d.ts b/react-icons/md/settings-brightness.d.ts index 20a0b4cfb7..e7d4b5f09c 100644 --- a/react-icons/md/settings-brightness.d.ts +++ b/react-icons/md/settings-brightness.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsBrightness extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-cell.d.ts b/react-icons/md/settings-cell.d.ts index 44729bd993..33e5c9fd48 100644 --- a/react-icons/md/settings-cell.d.ts +++ b/react-icons/md/settings-cell.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsCell extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-ethernet.d.ts b/react-icons/md/settings-ethernet.d.ts index c94d2d1392..a6895ec756 100644 --- a/react-icons/md/settings-ethernet.d.ts +++ b/react-icons/md/settings-ethernet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsEthernet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-antenna.d.ts b/react-icons/md/settings-input-antenna.d.ts index f9d108d911..70396a08e9 100644 --- a/react-icons/md/settings-input-antenna.d.ts +++ b/react-icons/md/settings-input-antenna.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsInputAntenna extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-component.d.ts b/react-icons/md/settings-input-component.d.ts index b262f2953b..f1bfff537b 100644 --- a/react-icons/md/settings-input-component.d.ts +++ b/react-icons/md/settings-input-component.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsInputComponent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-composite.d.ts b/react-icons/md/settings-input-composite.d.ts index 866644f99a..337a3d9d08 100644 --- a/react-icons/md/settings-input-composite.d.ts +++ b/react-icons/md/settings-input-composite.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsInputComposite extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-hdmi.d.ts b/react-icons/md/settings-input-hdmi.d.ts index 5eca80b0bb..b9d380a573 100644 --- a/react-icons/md/settings-input-hdmi.d.ts +++ b/react-icons/md/settings-input-hdmi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsInputHdmi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-input-svideo.d.ts b/react-icons/md/settings-input-svideo.d.ts index 772b817bfe..4f151625dc 100644 --- a/react-icons/md/settings-input-svideo.d.ts +++ b/react-icons/md/settings-input-svideo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsInputSvideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-overscan.d.ts b/react-icons/md/settings-overscan.d.ts index a0770b97c3..789c49c6e5 100644 --- a/react-icons/md/settings-overscan.d.ts +++ b/react-icons/md/settings-overscan.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsOverscan extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-phone.d.ts b/react-icons/md/settings-phone.d.ts index 1d4b4e2cca..67d5485bcf 100644 --- a/react-icons/md/settings-phone.d.ts +++ b/react-icons/md/settings-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-power.d.ts b/react-icons/md/settings-power.d.ts index 2a71f561d7..1bb0dc69c6 100644 --- a/react-icons/md/settings-power.d.ts +++ b/react-icons/md/settings-power.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-remote.d.ts b/react-icons/md/settings-remote.d.ts index d996216fb3..4453a24cf6 100644 --- a/react-icons/md/settings-remote.d.ts +++ b/react-icons/md/settings-remote.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsRemote extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-system-daydream.d.ts b/react-icons/md/settings-system-daydream.d.ts index db317ffe17..ccf0495bd3 100644 --- a/react-icons/md/settings-system-daydream.d.ts +++ b/react-icons/md/settings-system-daydream.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsSystemDaydream extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings-voice.d.ts b/react-icons/md/settings-voice.d.ts index a972251712..1b69b5d07e 100644 --- a/react-icons/md/settings-voice.d.ts +++ b/react-icons/md/settings-voice.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettingsVoice extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/settings.d.ts b/react-icons/md/settings.d.ts index 734c0047b9..a7a57525e9 100644 --- a/react-icons/md/settings.d.ts +++ b/react-icons/md/settings.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSettings extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/share.d.ts b/react-icons/md/share.d.ts index f9bce23a9c..ae392fd7a1 100644 --- a/react-icons/md/share.d.ts +++ b/react-icons/md/share.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shop-two.d.ts b/react-icons/md/shop-two.d.ts index e60b964290..0a485ae60d 100644 --- a/react-icons/md/shop-two.d.ts +++ b/react-icons/md/shop-two.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShopTwo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shop.d.ts b/react-icons/md/shop.d.ts index 0c2af01020..82745dfb04 100644 --- a/react-icons/md/shop.d.ts +++ b/react-icons/md/shop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shopping-basket.d.ts b/react-icons/md/shopping-basket.d.ts index 2b40316eb6..8d8c264902 100644 --- a/react-icons/md/shopping-basket.d.ts +++ b/react-icons/md/shopping-basket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShoppingBasket extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shopping-cart.d.ts b/react-icons/md/shopping-cart.d.ts index dd3733a2ee..ca9e10899c 100644 --- a/react-icons/md/shopping-cart.d.ts +++ b/react-icons/md/shopping-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/short-text.d.ts b/react-icons/md/short-text.d.ts index a66ed5a4f3..5c42e287dd 100644 --- a/react-icons/md/short-text.d.ts +++ b/react-icons/md/short-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShortText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/show-chart.d.ts b/react-icons/md/show-chart.d.ts index 2111950ee9..9820b0c744 100644 --- a/react-icons/md/show-chart.d.ts +++ b/react-icons/md/show-chart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShowChart extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/shuffle.d.ts b/react-icons/md/shuffle.d.ts index 8b7c66a3c4..6fc0d6f399 100644 --- a/react-icons/md/shuffle.d.ts +++ b/react-icons/md/shuffle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-4-bar.d.ts b/react-icons/md/signal-cellular-4-bar.d.ts index ba15cdb135..31258a9fb9 100644 --- a/react-icons/md/signal-cellular-4-bar.d.ts +++ b/react-icons/md/signal-cellular-4-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalCellular4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts b/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts index eba4104439..94f5bdbbc9 100644 --- a/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts +++ b/react-icons/md/signal-cellular-connected-no-internet-4-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalCellularConnectedNoInternet4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-no-sim.d.ts b/react-icons/md/signal-cellular-no-sim.d.ts index 9bae0ad813..5c0c8a5897 100644 --- a/react-icons/md/signal-cellular-no-sim.d.ts +++ b/react-icons/md/signal-cellular-no-sim.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalCellularNoSim extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-null.d.ts b/react-icons/md/signal-cellular-null.d.ts index c1b7b55b7e..522133eea5 100644 --- a/react-icons/md/signal-cellular-null.d.ts +++ b/react-icons/md/signal-cellular-null.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalCellularNull extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-cellular-off.d.ts b/react-icons/md/signal-cellular-off.d.ts index 0da9be4b79..d9112ea81a 100644 --- a/react-icons/md/signal-cellular-off.d.ts +++ b/react-icons/md/signal-cellular-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalCellularOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-4-bar-lock.d.ts b/react-icons/md/signal-wifi-4-bar-lock.d.ts index 81e9136b9b..8abedc2746 100644 --- a/react-icons/md/signal-wifi-4-bar-lock.d.ts +++ b/react-icons/md/signal-wifi-4-bar-lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalWifi4BarLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-4-bar.d.ts b/react-icons/md/signal-wifi-4-bar.d.ts index 8051e8d0fa..88872ac517 100644 --- a/react-icons/md/signal-wifi-4-bar.d.ts +++ b/react-icons/md/signal-wifi-4-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalWifi4Bar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/signal-wifi-off.d.ts b/react-icons/md/signal-wifi-off.d.ts index eb9144e525..0a247fd738 100644 --- a/react-icons/md/signal-wifi-off.d.ts +++ b/react-icons/md/signal-wifi-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSignalWifiOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sim-card-alert.d.ts b/react-icons/md/sim-card-alert.d.ts index 82596f557c..95de6ad37e 100644 --- a/react-icons/md/sim-card-alert.d.ts +++ b/react-icons/md/sim-card-alert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSimCardAlert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sim-card.d.ts b/react-icons/md/sim-card.d.ts index 27a1d002ae..99ce2a5bae 100644 --- a/react-icons/md/sim-card.d.ts +++ b/react-icons/md/sim-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSimCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/skip-next.d.ts b/react-icons/md/skip-next.d.ts index 1abf4d63e6..8b4d7521f7 100644 --- a/react-icons/md/skip-next.d.ts +++ b/react-icons/md/skip-next.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSkipNext extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/skip-previous.d.ts b/react-icons/md/skip-previous.d.ts index fbcc20372a..6db6085f05 100644 --- a/react-icons/md/skip-previous.d.ts +++ b/react-icons/md/skip-previous.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSkipPrevious extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/slideshow.d.ts b/react-icons/md/slideshow.d.ts index 4a121257cc..581ae9c51a 100644 --- a/react-icons/md/slideshow.d.ts +++ b/react-icons/md/slideshow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSlideshow extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/slow-motion-video.d.ts b/react-icons/md/slow-motion-video.d.ts index 846c21a378..2ea24f2e10 100644 --- a/react-icons/md/slow-motion-video.d.ts +++ b/react-icons/md/slow-motion-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSlowMotionVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smartphone.d.ts b/react-icons/md/smartphone.d.ts index b7b81103d7..34a3518890 100644 --- a/react-icons/md/smartphone.d.ts +++ b/react-icons/md/smartphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSmartphone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smoke-free.d.ts b/react-icons/md/smoke-free.d.ts index 80ac19c831..6c50ff67a6 100644 --- a/react-icons/md/smoke-free.d.ts +++ b/react-icons/md/smoke-free.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSmokeFree extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/smoking-rooms.d.ts b/react-icons/md/smoking-rooms.d.ts index 05074808d0..9851ca579c 100644 --- a/react-icons/md/smoking-rooms.d.ts +++ b/react-icons/md/smoking-rooms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSmokingRooms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sms-failed.d.ts b/react-icons/md/sms-failed.d.ts index ad4b374b25..59eb27f3f4 100644 --- a/react-icons/md/sms-failed.d.ts +++ b/react-icons/md/sms-failed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSmsFailed extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sms.d.ts b/react-icons/md/sms.d.ts index c2e81cc4bd..0a855fdcf6 100644 --- a/react-icons/md/sms.d.ts +++ b/react-icons/md/sms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/snooze.d.ts b/react-icons/md/snooze.d.ts index 077c5c73f3..3eb9afadb1 100644 --- a/react-icons/md/snooze.d.ts +++ b/react-icons/md/snooze.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSnooze extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sort-by-alpha.d.ts b/react-icons/md/sort-by-alpha.d.ts index cd59d5b99e..f1e0f87977 100644 --- a/react-icons/md/sort-by-alpha.d.ts +++ b/react-icons/md/sort-by-alpha.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSortByAlpha extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sort.d.ts b/react-icons/md/sort.d.ts index 7d3183de1c..5ea89d650b 100644 --- a/react-icons/md/sort.d.ts +++ b/react-icons/md/sort.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSort extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/spa.d.ts b/react-icons/md/spa.d.ts index d325fe0519..51a13a0a2b 100644 --- a/react-icons/md/spa.d.ts +++ b/react-icons/md/spa.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpa extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/space-bar.d.ts b/react-icons/md/space-bar.d.ts index a99c41c81c..20bfb23488 100644 --- a/react-icons/md/space-bar.d.ts +++ b/react-icons/md/space-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpaceBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-group.d.ts b/react-icons/md/speaker-group.d.ts index b2793c0815..3eb53bf5ef 100644 --- a/react-icons/md/speaker-group.d.ts +++ b/react-icons/md/speaker-group.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpeakerGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-notes-off.d.ts b/react-icons/md/speaker-notes-off.d.ts index 3e83815529..1f609032da 100644 --- a/react-icons/md/speaker-notes-off.d.ts +++ b/react-icons/md/speaker-notes-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpeakerNotesOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-notes.d.ts b/react-icons/md/speaker-notes.d.ts index 63aa9978df..587ef04f8d 100644 --- a/react-icons/md/speaker-notes.d.ts +++ b/react-icons/md/speaker-notes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpeakerNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker-phone.d.ts b/react-icons/md/speaker-phone.d.ts index bf343c6952..d1b843725e 100644 --- a/react-icons/md/speaker-phone.d.ts +++ b/react-icons/md/speaker-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpeakerPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/speaker.d.ts b/react-icons/md/speaker.d.ts index 1c0709f0c5..e11fea172d 100644 --- a/react-icons/md/speaker.d.ts +++ b/react-icons/md/speaker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/spellcheck.d.ts b/react-icons/md/spellcheck.d.ts index b4000a076d..f51f83243c 100644 --- a/react-icons/md/spellcheck.d.ts +++ b/react-icons/md/spellcheck.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSpellcheck extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-border.d.ts b/react-icons/md/star-border.d.ts index 513a4b0936..30dac545e3 100644 --- a/react-icons/md/star-border.d.ts +++ b/react-icons/md/star-border.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStarBorder extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-half.d.ts b/react-icons/md/star-half.d.ts index c7ee0dde07..e62e2177a2 100644 --- a/react-icons/md/star-half.d.ts +++ b/react-icons/md/star-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star-outline.d.ts b/react-icons/md/star-outline.d.ts index 595d80c494..c85881bf74 100644 --- a/react-icons/md/star-outline.d.ts +++ b/react-icons/md/star-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/star.d.ts b/react-icons/md/star.d.ts index 65a7398f6d..e7690143d0 100644 --- a/react-icons/md/star.d.ts +++ b/react-icons/md/star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stars.d.ts b/react-icons/md/stars.d.ts index 12f1695a7a..0d4d1e8ab3 100644 --- a/react-icons/md/stars.d.ts +++ b/react-icons/md/stars.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStars extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-current-landscape.d.ts b/react-icons/md/stay-current-landscape.d.ts index a5f304aad1..650b4f868d 100644 --- a/react-icons/md/stay-current-landscape.d.ts +++ b/react-icons/md/stay-current-landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStayCurrentLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-current-portrait.d.ts b/react-icons/md/stay-current-portrait.d.ts index 551e47bab1..941eae88de 100644 --- a/react-icons/md/stay-current-portrait.d.ts +++ b/react-icons/md/stay-current-portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStayCurrentPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-primary-landscape.d.ts b/react-icons/md/stay-primary-landscape.d.ts index b9c5480f0b..512c47c20e 100644 --- a/react-icons/md/stay-primary-landscape.d.ts +++ b/react-icons/md/stay-primary-landscape.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStayPrimaryLandscape extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stay-primary-portrait.d.ts b/react-icons/md/stay-primary-portrait.d.ts index fb81b17571..2edc5be4d8 100644 --- a/react-icons/md/stay-primary-portrait.d.ts +++ b/react-icons/md/stay-primary-portrait.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStayPrimaryPortrait extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stop-screen-share.d.ts b/react-icons/md/stop-screen-share.d.ts index 5fe257544c..dc4f5fbde3 100644 --- a/react-icons/md/stop-screen-share.d.ts +++ b/react-icons/md/stop-screen-share.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStopScreenShare extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/stop.d.ts b/react-icons/md/stop.d.ts index 89e4e3dcf5..5f317956a9 100644 --- a/react-icons/md/stop.d.ts +++ b/react-icons/md/stop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/storage.d.ts b/react-icons/md/storage.d.ts index 6e0287c7cf..ee8c28184b 100644 --- a/react-icons/md/storage.d.ts +++ b/react-icons/md/storage.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/store-mall-directory.d.ts b/react-icons/md/store-mall-directory.d.ts index d6d0f3ae04..98be2200a1 100644 --- a/react-icons/md/store-mall-directory.d.ts +++ b/react-icons/md/store-mall-directory.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStoreMallDirectory extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/store.d.ts b/react-icons/md/store.d.ts index 7810674bc0..306c6b84f1 100644 --- a/react-icons/md/store.d.ts +++ b/react-icons/md/store.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/straighten.d.ts b/react-icons/md/straighten.d.ts index f0d72a6a47..fb9dd4605a 100644 --- a/react-icons/md/straighten.d.ts +++ b/react-icons/md/straighten.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStraighten extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/streetview.d.ts b/react-icons/md/streetview.d.ts index 6e975e8190..ee56384b92 100644 --- a/react-icons/md/streetview.d.ts +++ b/react-icons/md/streetview.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStreetview extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/strikethrough-s.d.ts b/react-icons/md/strikethrough-s.d.ts index 22f207d3e1..fab921b89b 100644 --- a/react-icons/md/strikethrough-s.d.ts +++ b/react-icons/md/strikethrough-s.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStrikethroughS extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/style.d.ts b/react-icons/md/style.d.ts index 7bdcae58dc..36ae90814b 100644 --- a/react-icons/md/style.d.ts +++ b/react-icons/md/style.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdStyle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subdirectory-arrow-left.d.ts b/react-icons/md/subdirectory-arrow-left.d.ts index 47119a8fe2..fcd32ec0d7 100644 --- a/react-icons/md/subdirectory-arrow-left.d.ts +++ b/react-icons/md/subdirectory-arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubdirectoryArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subdirectory-arrow-right.d.ts b/react-icons/md/subdirectory-arrow-right.d.ts index 5cbcdeb77a..2df3d31109 100644 --- a/react-icons/md/subdirectory-arrow-right.d.ts +++ b/react-icons/md/subdirectory-arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubdirectoryArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subject.d.ts b/react-icons/md/subject.d.ts index 81ca2b871b..8e8f17f88d 100644 --- a/react-icons/md/subject.d.ts +++ b/react-icons/md/subject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubject extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subscriptions.d.ts b/react-icons/md/subscriptions.d.ts index 3f592255d7..8858bced43 100644 --- a/react-icons/md/subscriptions.d.ts +++ b/react-icons/md/subscriptions.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubscriptions extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subtitles.d.ts b/react-icons/md/subtitles.d.ts index 0b4257334e..d0a0cf29f3 100644 --- a/react-icons/md/subtitles.d.ts +++ b/react-icons/md/subtitles.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubtitles extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/subway.d.ts b/react-icons/md/subway.d.ts index cb841055fa..8c6352dc7d 100644 --- a/react-icons/md/subway.d.ts +++ b/react-icons/md/subway.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSubway extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/supervisor-account.d.ts b/react-icons/md/supervisor-account.d.ts index 8c977c80f5..8f3b274c4e 100644 --- a/react-icons/md/supervisor-account.d.ts +++ b/react-icons/md/supervisor-account.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSupervisorAccount extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/surround-sound.d.ts b/react-icons/md/surround-sound.d.ts index 72bb4a4c7a..4ea34d59f3 100644 --- a/react-icons/md/surround-sound.d.ts +++ b/react-icons/md/surround-sound.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSurroundSound extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-calls.d.ts b/react-icons/md/swap-calls.d.ts index cbb7de2169..d9cf542263 100644 --- a/react-icons/md/swap-calls.d.ts +++ b/react-icons/md/swap-calls.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwapCalls extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-horiz.d.ts b/react-icons/md/swap-horiz.d.ts index 391bc3762d..0a9283d954 100644 --- a/react-icons/md/swap-horiz.d.ts +++ b/react-icons/md/swap-horiz.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwapHoriz extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-vert.d.ts b/react-icons/md/swap-vert.d.ts index f63001a514..f1233ec179 100644 --- a/react-icons/md/swap-vert.d.ts +++ b/react-icons/md/swap-vert.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwapVert extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/swap-vertical-circle.d.ts b/react-icons/md/swap-vertical-circle.d.ts index 6b38e0d145..ba99926278 100644 --- a/react-icons/md/swap-vertical-circle.d.ts +++ b/react-icons/md/swap-vertical-circle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwapVerticalCircle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/switch-camera.d.ts b/react-icons/md/switch-camera.d.ts index dc2bf2a634..8d8c794285 100644 --- a/react-icons/md/switch-camera.d.ts +++ b/react-icons/md/switch-camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwitchCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/switch-video.d.ts b/react-icons/md/switch-video.d.ts index 9b7dbd4dc5..9794689e64 100644 --- a/react-icons/md/switch-video.d.ts +++ b/react-icons/md/switch-video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSwitchVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync-disabled.d.ts b/react-icons/md/sync-disabled.d.ts index b67b661649..226b3c8dc4 100644 --- a/react-icons/md/sync-disabled.d.ts +++ b/react-icons/md/sync-disabled.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSyncDisabled extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync-problem.d.ts b/react-icons/md/sync-problem.d.ts index 52576cbf44..e8761764da 100644 --- a/react-icons/md/sync-problem.d.ts +++ b/react-icons/md/sync-problem.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSyncProblem extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/sync.d.ts b/react-icons/md/sync.d.ts index 294c385d01..03406f4230 100644 --- a/react-icons/md/sync.d.ts +++ b/react-icons/md/sync.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/system-update-alt.d.ts b/react-icons/md/system-update-alt.d.ts index 858eb653d2..517200c650 100644 --- a/react-icons/md/system-update-alt.d.ts +++ b/react-icons/md/system-update-alt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSystemUpdateAlt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/system-update.d.ts b/react-icons/md/system-update.d.ts index 23c35b7c6f..dbdaeea7e6 100644 --- a/react-icons/md/system-update.d.ts +++ b/react-icons/md/system-update.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdSystemUpdate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tab-unselected.d.ts b/react-icons/md/tab-unselected.d.ts index b01e374044..0ed14f4a5f 100644 --- a/react-icons/md/tab-unselected.d.ts +++ b/react-icons/md/tab-unselected.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTabUnselected extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tab.d.ts b/react-icons/md/tab.d.ts index 59b84c13a6..7cb6f19eae 100644 --- a/react-icons/md/tab.d.ts +++ b/react-icons/md/tab.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTab extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet-android.d.ts b/react-icons/md/tablet-android.d.ts index fa79ab69de..b6ab7be7a2 100644 --- a/react-icons/md/tablet-android.d.ts +++ b/react-icons/md/tablet-android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTabletAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet-mac.d.ts b/react-icons/md/tablet-mac.d.ts index 80c82da1bf..19c1990e0d 100644 --- a/react-icons/md/tablet-mac.d.ts +++ b/react-icons/md/tablet-mac.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTabletMac extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tablet.d.ts b/react-icons/md/tablet.d.ts index 9bce195d36..3bb3ef6098 100644 --- a/react-icons/md/tablet.d.ts +++ b/react-icons/md/tablet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tag-faces.d.ts b/react-icons/md/tag-faces.d.ts index 877341e2c9..c100da26b1 100644 --- a/react-icons/md/tag-faces.d.ts +++ b/react-icons/md/tag-faces.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTagFaces extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tap-and-play.d.ts b/react-icons/md/tap-and-play.d.ts index 6a33636553..fb226d0c9a 100644 --- a/react-icons/md/tap-and-play.d.ts +++ b/react-icons/md/tap-and-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTapAndPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/terrain.d.ts b/react-icons/md/terrain.d.ts index aeab23837b..55a4c8d463 100644 --- a/react-icons/md/terrain.d.ts +++ b/react-icons/md/terrain.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTerrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/text-fields.d.ts b/react-icons/md/text-fields.d.ts index 3b338aaf06..1fa0d8c57c 100644 --- a/react-icons/md/text-fields.d.ts +++ b/react-icons/md/text-fields.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTextFields extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/text-format.d.ts b/react-icons/md/text-format.d.ts index 53802c3075..6fa716d57b 100644 --- a/react-icons/md/text-format.d.ts +++ b/react-icons/md/text-format.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTextFormat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/textsms.d.ts b/react-icons/md/textsms.d.ts index 7555b57070..d714e4f7f6 100644 --- a/react-icons/md/textsms.d.ts +++ b/react-icons/md/textsms.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTextsms extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/texture.d.ts b/react-icons/md/texture.d.ts index 6c24a6710a..76a0e04cb4 100644 --- a/react-icons/md/texture.d.ts +++ b/react-icons/md/texture.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTexture extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/theaters.d.ts b/react-icons/md/theaters.d.ts index 469a643367..0d0239648d 100644 --- a/react-icons/md/theaters.d.ts +++ b/react-icons/md/theaters.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTheaters extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumb-down.d.ts b/react-icons/md/thumb-down.d.ts index 9aff3f72d6..c062fe7ba2 100644 --- a/react-icons/md/thumb-down.d.ts +++ b/react-icons/md/thumb-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdThumbDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumb-up.d.ts b/react-icons/md/thumb-up.d.ts index beaf19f8ea..74fcf07a70 100644 --- a/react-icons/md/thumb-up.d.ts +++ b/react-icons/md/thumb-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdThumbUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/thumbs-up-down.d.ts b/react-icons/md/thumbs-up-down.d.ts index 48a844ee28..0b62bd1854 100644 --- a/react-icons/md/thumbs-up-down.d.ts +++ b/react-icons/md/thumbs-up-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdThumbsUpDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/time-to-leave.d.ts b/react-icons/md/time-to-leave.d.ts index 272b8c43c7..a72c8545ee 100644 --- a/react-icons/md/time-to-leave.d.ts +++ b/react-icons/md/time-to-leave.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimeToLeave extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timelapse.d.ts b/react-icons/md/timelapse.d.ts index 5d5a0cd9f1..a5f0f301fd 100644 --- a/react-icons/md/timelapse.d.ts +++ b/react-icons/md/timelapse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimelapse extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timeline.d.ts b/react-icons/md/timeline.d.ts index 2c5f0bb190..83cfb23bb3 100644 --- a/react-icons/md/timeline.d.ts +++ b/react-icons/md/timeline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimeline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-10.d.ts b/react-icons/md/timer-10.d.ts index f1e26cac9b..14ec8c96ba 100644 --- a/react-icons/md/timer-10.d.ts +++ b/react-icons/md/timer-10.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimer10 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-3.d.ts b/react-icons/md/timer-3.d.ts index 35c4a2a32b..cd95801eef 100644 --- a/react-icons/md/timer-3.d.ts +++ b/react-icons/md/timer-3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimer3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer-off.d.ts b/react-icons/md/timer-off.d.ts index 081db80f24..73aab4f4da 100644 --- a/react-icons/md/timer-off.d.ts +++ b/react-icons/md/timer-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimerOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/timer.d.ts b/react-icons/md/timer.d.ts index 33ccc05917..ecd6a763d5 100644 --- a/react-icons/md/timer.d.ts +++ b/react-icons/md/timer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTimer extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/title.d.ts b/react-icons/md/title.d.ts index fff88a2eb2..7e65d49160 100644 --- a/react-icons/md/title.d.ts +++ b/react-icons/md/title.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTitle extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toc.d.ts b/react-icons/md/toc.d.ts index 5e1d9960b3..037b48badf 100644 --- a/react-icons/md/toc.d.ts +++ b/react-icons/md/toc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdToc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/today.d.ts b/react-icons/md/today.d.ts index deb162e0a3..1094db9f78 100644 --- a/react-icons/md/today.d.ts +++ b/react-icons/md/today.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdToday extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toll.d.ts b/react-icons/md/toll.d.ts index f424ef6268..764f9e71c7 100644 --- a/react-icons/md/toll.d.ts +++ b/react-icons/md/toll.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdToll extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tonality.d.ts b/react-icons/md/tonality.d.ts index 999b6fb149..736e142087 100644 --- a/react-icons/md/tonality.d.ts +++ b/react-icons/md/tonality.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTonality extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/touch-app.d.ts b/react-icons/md/touch-app.d.ts index 9c8a7d5498..2910ecaf4c 100644 --- a/react-icons/md/touch-app.d.ts +++ b/react-icons/md/touch-app.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTouchApp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/toys.d.ts b/react-icons/md/toys.d.ts index 4ecb76c7b5..ab4430d744 100644 --- a/react-icons/md/toys.d.ts +++ b/react-icons/md/toys.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdToys extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/track-changes.d.ts b/react-icons/md/track-changes.d.ts index 07802325ae..2c57d43c76 100644 --- a/react-icons/md/track-changes.d.ts +++ b/react-icons/md/track-changes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrackChanges extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/traffic.d.ts b/react-icons/md/traffic.d.ts index 6185a1949e..447d144dca 100644 --- a/react-icons/md/traffic.d.ts +++ b/react-icons/md/traffic.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTraffic extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/train.d.ts b/react-icons/md/train.d.ts index 874b170166..8f4e5d946e 100644 --- a/react-icons/md/train.d.ts +++ b/react-icons/md/train.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrain extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tram.d.ts b/react-icons/md/tram.d.ts index df96514c49..709a3e3252 100644 --- a/react-icons/md/tram.d.ts +++ b/react-icons/md/tram.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTram extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/transfer-within-a-station.d.ts b/react-icons/md/transfer-within-a-station.d.ts index 1d5c4f70e7..067758afa9 100644 --- a/react-icons/md/transfer-within-a-station.d.ts +++ b/react-icons/md/transfer-within-a-station.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTransferWithinAStation extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/transform.d.ts b/react-icons/md/transform.d.ts index 61d3c2d507..81606d53c1 100644 --- a/react-icons/md/transform.d.ts +++ b/react-icons/md/transform.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTransform extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/translate.d.ts b/react-icons/md/translate.d.ts index f8dfd9144d..8b878a626e 100644 --- a/react-icons/md/translate.d.ts +++ b/react-icons/md/translate.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTranslate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-down.d.ts b/react-icons/md/trending-down.d.ts index 0c3a7fb5f2..661e8ccab3 100644 --- a/react-icons/md/trending-down.d.ts +++ b/react-icons/md/trending-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrendingDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-flat.d.ts b/react-icons/md/trending-flat.d.ts index 4bbdef2c21..eee8a1da43 100644 --- a/react-icons/md/trending-flat.d.ts +++ b/react-icons/md/trending-flat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrendingFlat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-neutral.d.ts b/react-icons/md/trending-neutral.d.ts index e52bc0118a..2de745da34 100644 --- a/react-icons/md/trending-neutral.d.ts +++ b/react-icons/md/trending-neutral.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrendingNeutral extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/trending-up.d.ts b/react-icons/md/trending-up.d.ts index 4926f9a91b..a73dfd9f5f 100644 --- a/react-icons/md/trending-up.d.ts +++ b/react-icons/md/trending-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTrendingUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tune.d.ts b/react-icons/md/tune.d.ts index fb8bb50c9e..b41f6d7044 100644 --- a/react-icons/md/tune.d.ts +++ b/react-icons/md/tune.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTune extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/turned-in-not.d.ts b/react-icons/md/turned-in-not.d.ts index cc192aa9b4..c528b6bd34 100644 --- a/react-icons/md/turned-in-not.d.ts +++ b/react-icons/md/turned-in-not.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTurnedInNot extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/turned-in.d.ts b/react-icons/md/turned-in.d.ts index 9991b15167..b5c40ec8e4 100644 --- a/react-icons/md/turned-in.d.ts +++ b/react-icons/md/turned-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTurnedIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/tv.d.ts b/react-icons/md/tv.d.ts index f345b86349..6a3f6f4695 100644 --- a/react-icons/md/tv.d.ts +++ b/react-icons/md/tv.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdTv extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unarchive.d.ts b/react-icons/md/unarchive.d.ts index ed3f656fe5..a7b0c481da 100644 --- a/react-icons/md/unarchive.d.ts +++ b/react-icons/md/unarchive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUnarchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/undo.d.ts b/react-icons/md/undo.d.ts index ba47ba7a1d..0ea76a8939 100644 --- a/react-icons/md/undo.d.ts +++ b/react-icons/md/undo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUndo extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unfold-less.d.ts b/react-icons/md/unfold-less.d.ts index fc396bc102..33ec7b20be 100644 --- a/react-icons/md/unfold-less.d.ts +++ b/react-icons/md/unfold-less.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUnfoldLess extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/unfold-more.d.ts b/react-icons/md/unfold-more.d.ts index 467d346b02..06a6d369f8 100644 --- a/react-icons/md/unfold-more.d.ts +++ b/react-icons/md/unfold-more.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUnfoldMore extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/update.d.ts b/react-icons/md/update.d.ts index fb26b1613f..f21af218c9 100644 --- a/react-icons/md/update.d.ts +++ b/react-icons/md/update.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUpdate extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/usb.d.ts b/react-icons/md/usb.d.ts index cf931f0de3..cde6cce43a 100644 --- a/react-icons/md/usb.d.ts +++ b/react-icons/md/usb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdUsb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/verified-user.d.ts b/react-icons/md/verified-user.d.ts index 332ab3f002..51b6ed43ae 100644 --- a/react-icons/md/verified-user.d.ts +++ b/react-icons/md/verified-user.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVerifiedUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-bottom.d.ts b/react-icons/md/vertical-align-bottom.d.ts index 5163fcbbed..e4a88e4783 100644 --- a/react-icons/md/vertical-align-bottom.d.ts +++ b/react-icons/md/vertical-align-bottom.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVerticalAlignBottom extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-center.d.ts b/react-icons/md/vertical-align-center.d.ts index e9943c0e01..6db4ab60ef 100644 --- a/react-icons/md/vertical-align-center.d.ts +++ b/react-icons/md/vertical-align-center.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVerticalAlignCenter extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vertical-align-top.d.ts b/react-icons/md/vertical-align-top.d.ts index 082840e08c..c08a02e004 100644 --- a/react-icons/md/vertical-align-top.d.ts +++ b/react-icons/md/vertical-align-top.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVerticalAlignTop extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vibration.d.ts b/react-icons/md/vibration.d.ts index 6a3a6c9770..7e3bf93443 100644 --- a/react-icons/md/vibration.d.ts +++ b/react-icons/md/vibration.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVibration extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-call.d.ts b/react-icons/md/video-call.d.ts index 2e846030f4..0757b41db5 100644 --- a/react-icons/md/video-call.d.ts +++ b/react-icons/md/video-call.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideoCall extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-collection.d.ts b/react-icons/md/video-collection.d.ts index 2ae7844e64..4b04658d79 100644 --- a/react-icons/md/video-collection.d.ts +++ b/react-icons/md/video-collection.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideoCollection extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-label.d.ts b/react-icons/md/video-label.d.ts index ed31c93626..75b59db647 100644 --- a/react-icons/md/video-label.d.ts +++ b/react-icons/md/video-label.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideoLabel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/video-library.d.ts b/react-icons/md/video-library.d.ts index 0ab753b0d4..87f58e4970 100644 --- a/react-icons/md/video-library.d.ts +++ b/react-icons/md/video-library.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideoLibrary extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videocam-off.d.ts b/react-icons/md/videocam-off.d.ts index 7a5174f77a..e7327fb3fc 100644 --- a/react-icons/md/videocam-off.d.ts +++ b/react-icons/md/videocam-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideocamOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videocam.d.ts b/react-icons/md/videocam.d.ts index 114b9ffabc..2ecb7fe76d 100644 --- a/react-icons/md/videocam.d.ts +++ b/react-icons/md/videocam.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideocam extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/videogame-asset.d.ts b/react-icons/md/videogame-asset.d.ts index f3168d7aff..08819560c0 100644 --- a/react-icons/md/videogame-asset.d.ts +++ b/react-icons/md/videogame-asset.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVideogameAsset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-agenda.d.ts b/react-icons/md/view-agenda.d.ts index e44d4322cc..f288374864 100644 --- a/react-icons/md/view-agenda.d.ts +++ b/react-icons/md/view-agenda.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewAgenda extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-array.d.ts b/react-icons/md/view-array.d.ts index 9f09393b50..d9d93e485b 100644 --- a/react-icons/md/view-array.d.ts +++ b/react-icons/md/view-array.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewArray extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-carousel.d.ts b/react-icons/md/view-carousel.d.ts index 6ea94e127c..92a6f94e6b 100644 --- a/react-icons/md/view-carousel.d.ts +++ b/react-icons/md/view-carousel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewCarousel extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-column.d.ts b/react-icons/md/view-column.d.ts index 34d3d2c742..c2abcbf98b 100644 --- a/react-icons/md/view-column.d.ts +++ b/react-icons/md/view-column.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewColumn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-comfortable.d.ts b/react-icons/md/view-comfortable.d.ts index eb75a5cfc1..7863a79612 100644 --- a/react-icons/md/view-comfortable.d.ts +++ b/react-icons/md/view-comfortable.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewComfortable extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-comfy.d.ts b/react-icons/md/view-comfy.d.ts index 8ad9432293..72601d671f 100644 --- a/react-icons/md/view-comfy.d.ts +++ b/react-icons/md/view-comfy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewComfy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-compact.d.ts b/react-icons/md/view-compact.d.ts index 663aa2e1c1..e5a0adb7fd 100644 --- a/react-icons/md/view-compact.d.ts +++ b/react-icons/md/view-compact.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewCompact extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-day.d.ts b/react-icons/md/view-day.d.ts index 5fb5625f0f..b31e96aa3a 100644 --- a/react-icons/md/view-day.d.ts +++ b/react-icons/md/view-day.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewDay extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-headline.d.ts b/react-icons/md/view-headline.d.ts index ea131765a9..a427ad9690 100644 --- a/react-icons/md/view-headline.d.ts +++ b/react-icons/md/view-headline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewHeadline extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-list.d.ts b/react-icons/md/view-list.d.ts index 6d2a670820..5e312ee65c 100644 --- a/react-icons/md/view-list.d.ts +++ b/react-icons/md/view-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewList extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-module.d.ts b/react-icons/md/view-module.d.ts index 20814db577..ca7aa2ece8 100644 --- a/react-icons/md/view-module.d.ts +++ b/react-icons/md/view-module.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewModule extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-quilt.d.ts b/react-icons/md/view-quilt.d.ts index 13c73c5375..71dd71d430 100644 --- a/react-icons/md/view-quilt.d.ts +++ b/react-icons/md/view-quilt.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewQuilt extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-stream.d.ts b/react-icons/md/view-stream.d.ts index 9f898ed880..917f8518fd 100644 --- a/react-icons/md/view-stream.d.ts +++ b/react-icons/md/view-stream.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewStream extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/view-week.d.ts b/react-icons/md/view-week.d.ts index bafa896326..1cbe165b36 100644 --- a/react-icons/md/view-week.d.ts +++ b/react-icons/md/view-week.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdViewWeek extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vignette.d.ts b/react-icons/md/vignette.d.ts index d555a44da0..439bf9529b 100644 --- a/react-icons/md/vignette.d.ts +++ b/react-icons/md/vignette.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVignette extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/visibility-off.d.ts b/react-icons/md/visibility-off.d.ts index 0c08afeabe..876af69b35 100644 --- a/react-icons/md/visibility-off.d.ts +++ b/react-icons/md/visibility-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVisibilityOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/visibility.d.ts b/react-icons/md/visibility.d.ts index 5a917999e3..eeec8dc229 100644 --- a/react-icons/md/visibility.d.ts +++ b/react-icons/md/visibility.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVisibility extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/voice-chat.d.ts b/react-icons/md/voice-chat.d.ts index 21a1470156..80e06ec32a 100644 --- a/react-icons/md/voice-chat.d.ts +++ b/react-icons/md/voice-chat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVoiceChat extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/voicemail.d.ts b/react-icons/md/voicemail.d.ts index 3582bca35d..ebf64ad20f 100644 --- a/react-icons/md/voicemail.d.ts +++ b/react-icons/md/voicemail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVoicemail extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-down.d.ts b/react-icons/md/volume-down.d.ts index 9c73e40c60..166b3c787c 100644 --- a/react-icons/md/volume-down.d.ts +++ b/react-icons/md/volume-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-mute.d.ts b/react-icons/md/volume-mute.d.ts index a648ef6788..bb189fb588 100644 --- a/react-icons/md/volume-mute.d.ts +++ b/react-icons/md/volume-mute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-off.d.ts b/react-icons/md/volume-off.d.ts index 72ffd436f5..5a89b539d4 100644 --- a/react-icons/md/volume-off.d.ts +++ b/react-icons/md/volume-off.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVolumeOff extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/volume-up.d.ts b/react-icons/md/volume-up.d.ts index a28d29a92e..5ed4249930 100644 --- a/react-icons/md/volume-up.d.ts +++ b/react-icons/md/volume-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vpn-key.d.ts b/react-icons/md/vpn-key.d.ts index 9c3da5ac9f..c3843fb7e6 100644 --- a/react-icons/md/vpn-key.d.ts +++ b/react-icons/md/vpn-key.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVpnKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/vpn-lock.d.ts b/react-icons/md/vpn-lock.d.ts index 02307de308..d40bbd7c2b 100644 --- a/react-icons/md/vpn-lock.d.ts +++ b/react-icons/md/vpn-lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdVpnLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wallpaper.d.ts b/react-icons/md/wallpaper.d.ts index 09f436ea72..199ade8484 100644 --- a/react-icons/md/wallpaper.d.ts +++ b/react-icons/md/wallpaper.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWallpaper extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/warning.d.ts b/react-icons/md/warning.d.ts index cb52080f49..147618ac73 100644 --- a/react-icons/md/warning.d.ts +++ b/react-icons/md/warning.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/watch-later.d.ts b/react-icons/md/watch-later.d.ts index 6ff56ea604..118ba96233 100644 --- a/react-icons/md/watch-later.d.ts +++ b/react-icons/md/watch-later.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWatchLater extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/watch.d.ts b/react-icons/md/watch.d.ts index 0304107a36..83cdbf6719 100644 --- a/react-icons/md/watch.d.ts +++ b/react-icons/md/watch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-auto.d.ts b/react-icons/md/wb-auto.d.ts index 7094dbab5e..c919fb73dc 100644 --- a/react-icons/md/wb-auto.d.ts +++ b/react-icons/md/wb-auto.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWbAuto extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-cloudy.d.ts b/react-icons/md/wb-cloudy.d.ts index e6cc818893..6fd3ceacd4 100644 --- a/react-icons/md/wb-cloudy.d.ts +++ b/react-icons/md/wb-cloudy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWbCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-incandescent.d.ts b/react-icons/md/wb-incandescent.d.ts index 7539a62e08..4df631690b 100644 --- a/react-icons/md/wb-incandescent.d.ts +++ b/react-icons/md/wb-incandescent.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWbIncandescent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-iridescent.d.ts b/react-icons/md/wb-iridescent.d.ts index 9a30790d34..e0f2b85002 100644 --- a/react-icons/md/wb-iridescent.d.ts +++ b/react-icons/md/wb-iridescent.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWbIridescent extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wb-sunny.d.ts b/react-icons/md/wb-sunny.d.ts index 1ef8f5bcd9..9a082e802a 100644 --- a/react-icons/md/wb-sunny.d.ts +++ b/react-icons/md/wb-sunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWbSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wc.d.ts b/react-icons/md/wc.d.ts index 707fa091a7..d0137162f4 100644 --- a/react-icons/md/wc.d.ts +++ b/react-icons/md/wc.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWc extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/web-asset.d.ts b/react-icons/md/web-asset.d.ts index 8d85e297f1..a148257564 100644 --- a/react-icons/md/web-asset.d.ts +++ b/react-icons/md/web-asset.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWebAsset extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/web.d.ts b/react-icons/md/web.d.ts index 39427baba2..814eddbe01 100644 --- a/react-icons/md/web.d.ts +++ b/react-icons/md/web.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWeb extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/weekend.d.ts b/react-icons/md/weekend.d.ts index fd9459e0fc..27f0830708 100644 --- a/react-icons/md/weekend.d.ts +++ b/react-icons/md/weekend.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWeekend extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/whatshot.d.ts b/react-icons/md/whatshot.d.ts index 0953f5a3ab..a5ce34b1e9 100644 --- a/react-icons/md/whatshot.d.ts +++ b/react-icons/md/whatshot.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWhatshot extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/widgets.d.ts b/react-icons/md/widgets.d.ts index 0e946f8d1a..2558c42d72 100644 --- a/react-icons/md/widgets.d.ts +++ b/react-icons/md/widgets.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWidgets extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi-lock.d.ts b/react-icons/md/wifi-lock.d.ts index f59d1531ad..ec5677cae2 100644 --- a/react-icons/md/wifi-lock.d.ts +++ b/react-icons/md/wifi-lock.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWifiLock extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi-tethering.d.ts b/react-icons/md/wifi-tethering.d.ts index b2101a889d..7ec4badacf 100644 --- a/react-icons/md/wifi-tethering.d.ts +++ b/react-icons/md/wifi-tethering.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWifiTethering extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wifi.d.ts b/react-icons/md/wifi.d.ts index c0e6523233..c53319dc58 100644 --- a/react-icons/md/wifi.d.ts +++ b/react-icons/md/wifi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWifi extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/work.d.ts b/react-icons/md/work.d.ts index 4fd83c108f..2d492182c2 100644 --- a/react-icons/md/work.d.ts +++ b/react-icons/md/work.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWork extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/wrap-text.d.ts b/react-icons/md/wrap-text.d.ts index 63310fe255..e16f24a264 100644 --- a/react-icons/md/wrap-text.d.ts +++ b/react-icons/md/wrap-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdWrapText extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/youtube-searched-for.d.ts b/react-icons/md/youtube-searched-for.d.ts index a64fc5f798..63be33ac90 100644 --- a/react-icons/md/youtube-searched-for.d.ts +++ b/react-icons/md/youtube-searched-for.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdYoutubeSearchedFor extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-in.d.ts b/react-icons/md/zoom-in.d.ts index b5969ca02e..7923a71fe1 100644 --- a/react-icons/md/zoom-in.d.ts +++ b/react-icons/md/zoom-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdZoomIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-out-map.d.ts b/react-icons/md/zoom-out-map.d.ts index 1a2af3f147..ff0b3fa3c5 100644 --- a/react-icons/md/zoom-out-map.d.ts +++ b/react-icons/md/zoom-out-map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdZoomOutMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/md/zoom-out.d.ts b/react-icons/md/zoom-out.d.ts index 064f6dcbca..41eb2d8c77 100644 --- a/react-icons/md/zoom-out.d.ts +++ b/react-icons/md/zoom-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class MdZoomOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/adjust-brightness.d.ts b/react-icons/ti/adjust-brightness.d.ts index 596936255a..301d8a11f2 100644 --- a/react-icons/ti/adjust-brightness.d.ts +++ b/react-icons/ti/adjust-brightness.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAdjustBrightness extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/adjust-contrast.d.ts b/react-icons/ti/adjust-contrast.d.ts index 8993740265..1c521da080 100644 --- a/react-icons/ti/adjust-contrast.d.ts +++ b/react-icons/ti/adjust-contrast.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAdjustContrast extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/anchor-outline.d.ts b/react-icons/ti/anchor-outline.d.ts index 47097b6ec3..d983cb2022 100644 --- a/react-icons/ti/anchor-outline.d.ts +++ b/react-icons/ti/anchor-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAnchorOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/anchor.d.ts b/react-icons/ti/anchor.d.ts index b551e044c9..a79b900d48 100644 --- a/react-icons/ti/anchor.d.ts +++ b/react-icons/ti/anchor.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAnchor extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/archive.d.ts b/react-icons/ti/archive.d.ts index d5df8751a8..60d92b2bec 100644 --- a/react-icons/ti/archive.d.ts +++ b/react-icons/ti/archive.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArchive extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-back-outline.d.ts b/react-icons/ti/arrow-back-outline.d.ts index 1f3d9b55cf..0ccb58323a 100644 --- a/react-icons/ti/arrow-back-outline.d.ts +++ b/react-icons/ti/arrow-back-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowBackOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-back.d.ts b/react-icons/ti/arrow-back.d.ts index 89cb507ac2..aa937e7de4 100644 --- a/react-icons/ti/arrow-back.d.ts +++ b/react-icons/ti/arrow-back.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowBack extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down-outline.d.ts b/react-icons/ti/arrow-down-outline.d.ts index d057ac1741..02f5d3b5f2 100644 --- a/react-icons/ti/arrow-down-outline.d.ts +++ b/react-icons/ti/arrow-down-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowDownOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down-thick.d.ts b/react-icons/ti/arrow-down-thick.d.ts index 1b40860bdb..264eaa3bd7 100644 --- a/react-icons/ti/arrow-down-thick.d.ts +++ b/react-icons/ti/arrow-down-thick.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowDownThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-down.d.ts b/react-icons/ti/arrow-down.d.ts index 0142b7bb50..f1a950853c 100644 --- a/react-icons/ti/arrow-down.d.ts +++ b/react-icons/ti/arrow-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-forward-outline.d.ts b/react-icons/ti/arrow-forward-outline.d.ts index 295ef2b65b..7ff4d91ff0 100644 --- a/react-icons/ti/arrow-forward-outline.d.ts +++ b/react-icons/ti/arrow-forward-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowForwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-forward.d.ts b/react-icons/ti/arrow-forward.d.ts index 77ff1dbcdf..63ade0a596 100644 --- a/react-icons/ti/arrow-forward.d.ts +++ b/react-icons/ti/arrow-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left-outline.d.ts b/react-icons/ti/arrow-left-outline.d.ts index 8373a35a8a..fb99127e6d 100644 --- a/react-icons/ti/arrow-left-outline.d.ts +++ b/react-icons/ti/arrow-left-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowLeftOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left-thick.d.ts b/react-icons/ti/arrow-left-thick.d.ts index e3544e3ef5..61d59c572b 100644 --- a/react-icons/ti/arrow-left-thick.d.ts +++ b/react-icons/ti/arrow-left-thick.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowLeftThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-left.d.ts b/react-icons/ti/arrow-left.d.ts index 83f97e675e..04d5458133 100644 --- a/react-icons/ti/arrow-left.d.ts +++ b/react-icons/ti/arrow-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-loop-outline.d.ts b/react-icons/ti/arrow-loop-outline.d.ts index d2e0464a75..32cc3d31b4 100644 --- a/react-icons/ti/arrow-loop-outline.d.ts +++ b/react-icons/ti/arrow-loop-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowLoopOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-loop.d.ts b/react-icons/ti/arrow-loop.d.ts index d9f38d92f6..649c2aaeeb 100644 --- a/react-icons/ti/arrow-loop.d.ts +++ b/react-icons/ti/arrow-loop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowLoop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-maximise-outline.d.ts b/react-icons/ti/arrow-maximise-outline.d.ts index aa96161155..57ace57901 100644 --- a/react-icons/ti/arrow-maximise-outline.d.ts +++ b/react-icons/ti/arrow-maximise-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMaximiseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-maximise.d.ts b/react-icons/ti/arrow-maximise.d.ts index e019b58b8d..a7550e6d08 100644 --- a/react-icons/ti/arrow-maximise.d.ts +++ b/react-icons/ti/arrow-maximise.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMaximise extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-minimise-outline.d.ts b/react-icons/ti/arrow-minimise-outline.d.ts index ade9ad485e..ef17685222 100644 --- a/react-icons/ti/arrow-minimise-outline.d.ts +++ b/react-icons/ti/arrow-minimise-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMinimiseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-minimise.d.ts b/react-icons/ti/arrow-minimise.d.ts index c083ef682c..6b352e070a 100644 --- a/react-icons/ti/arrow-minimise.d.ts +++ b/react-icons/ti/arrow-minimise.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMinimise extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-move-outline.d.ts b/react-icons/ti/arrow-move-outline.d.ts index ecc382dc0c..78b2547bcf 100644 --- a/react-icons/ti/arrow-move-outline.d.ts +++ b/react-icons/ti/arrow-move-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMoveOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-move.d.ts b/react-icons/ti/arrow-move.d.ts index 26104332e5..33674ca08b 100644 --- a/react-icons/ti/arrow-move.d.ts +++ b/react-icons/ti/arrow-move.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowMove extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-repeat-outline.d.ts b/react-icons/ti/arrow-repeat-outline.d.ts index 287e0ecf04..684f9cce45 100644 --- a/react-icons/ti/arrow-repeat-outline.d.ts +++ b/react-icons/ti/arrow-repeat-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowRepeatOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-repeat.d.ts b/react-icons/ti/arrow-repeat.d.ts index 8882eff7d6..6d9f5910b4 100644 --- a/react-icons/ti/arrow-repeat.d.ts +++ b/react-icons/ti/arrow-repeat.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowRepeat extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right-outline.d.ts b/react-icons/ti/arrow-right-outline.d.ts index 2134b51834..8eacd04e09 100644 --- a/react-icons/ti/arrow-right-outline.d.ts +++ b/react-icons/ti/arrow-right-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowRightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right-thick.d.ts b/react-icons/ti/arrow-right-thick.d.ts index f10f3f238c..a6cd6d4401 100644 --- a/react-icons/ti/arrow-right-thick.d.ts +++ b/react-icons/ti/arrow-right-thick.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowRightThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-right.d.ts b/react-icons/ti/arrow-right.d.ts index 972bc24311..6853dd7a7c 100644 --- a/react-icons/ti/arrow-right.d.ts +++ b/react-icons/ti/arrow-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-shuffle.d.ts b/react-icons/ti/arrow-shuffle.d.ts index 29c1988c44..f024667e48 100644 --- a/react-icons/ti/arrow-shuffle.d.ts +++ b/react-icons/ti/arrow-shuffle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowShuffle extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sorted-down.d.ts b/react-icons/ti/arrow-sorted-down.d.ts index b8de6a783b..ceed9988f6 100644 --- a/react-icons/ti/arrow-sorted-down.d.ts +++ b/react-icons/ti/arrow-sorted-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowSortedDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sorted-up.d.ts b/react-icons/ti/arrow-sorted-up.d.ts index 4c755bd395..da7ccc928f 100644 --- a/react-icons/ti/arrow-sorted-up.d.ts +++ b/react-icons/ti/arrow-sorted-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowSortedUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sync-outline.d.ts b/react-icons/ti/arrow-sync-outline.d.ts index 316a8fc76f..147228ca59 100644 --- a/react-icons/ti/arrow-sync-outline.d.ts +++ b/react-icons/ti/arrow-sync-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowSyncOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-sync.d.ts b/react-icons/ti/arrow-sync.d.ts index ddfe0a676a..4125ea4c86 100644 --- a/react-icons/ti/arrow-sync.d.ts +++ b/react-icons/ti/arrow-sync.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowSync extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-unsorted.d.ts b/react-icons/ti/arrow-unsorted.d.ts index 97962a866a..e2ddd2f338 100644 --- a/react-icons/ti/arrow-unsorted.d.ts +++ b/react-icons/ti/arrow-unsorted.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowUnsorted extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up-outline.d.ts b/react-icons/ti/arrow-up-outline.d.ts index 230d7da1ca..28ca9ea814 100644 --- a/react-icons/ti/arrow-up-outline.d.ts +++ b/react-icons/ti/arrow-up-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowUpOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up-thick.d.ts b/react-icons/ti/arrow-up-thick.d.ts index 06367f1dc2..97f7fcf59f 100644 --- a/react-icons/ti/arrow-up-thick.d.ts +++ b/react-icons/ti/arrow-up-thick.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowUpThick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/arrow-up.d.ts b/react-icons/ti/arrow-up.d.ts index aaad8108e4..4e04c7a4f0 100644 --- a/react-icons/ti/arrow-up.d.ts +++ b/react-icons/ti/arrow-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiArrowUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/at.d.ts b/react-icons/ti/at.d.ts index fb58ac6010..a9ef9efe0c 100644 --- a/react-icons/ti/at.d.ts +++ b/react-icons/ti/at.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAt extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/attachment-outline.d.ts b/react-icons/ti/attachment-outline.d.ts index 71b865944e..2b7731118a 100644 --- a/react-icons/ti/attachment-outline.d.ts +++ b/react-icons/ti/attachment-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAttachmentOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/attachment.d.ts b/react-icons/ti/attachment.d.ts index f75a95d608..513f5132a8 100644 --- a/react-icons/ti/attachment.d.ts +++ b/react-icons/ti/attachment.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiAttachment extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/backspace-outline.d.ts b/react-icons/ti/backspace-outline.d.ts index 087c4d1d2c..a2609b5bf9 100644 --- a/react-icons/ti/backspace-outline.d.ts +++ b/react-icons/ti/backspace-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBackspaceOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/backspace.d.ts b/react-icons/ti/backspace.d.ts index abfb24a367..dfbef1eeaf 100644 --- a/react-icons/ti/backspace.d.ts +++ b/react-icons/ti/backspace.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBackspace extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-charge.d.ts b/react-icons/ti/battery-charge.d.ts index 1d8ccbe5c3..c19cc1ade5 100644 --- a/react-icons/ti/battery-charge.d.ts +++ b/react-icons/ti/battery-charge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBatteryCharge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-full.d.ts b/react-icons/ti/battery-full.d.ts index e7dafc411c..3dce0e1e5e 100644 --- a/react-icons/ti/battery-full.d.ts +++ b/react-icons/ti/battery-full.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBatteryFull extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-high.d.ts b/react-icons/ti/battery-high.d.ts index 7908343ccd..5fd4f71585 100644 --- a/react-icons/ti/battery-high.d.ts +++ b/react-icons/ti/battery-high.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBatteryHigh extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-low.d.ts b/react-icons/ti/battery-low.d.ts index 31a3d170ab..bdd1129420 100644 --- a/react-icons/ti/battery-low.d.ts +++ b/react-icons/ti/battery-low.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBatteryLow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/battery-mid.d.ts b/react-icons/ti/battery-mid.d.ts index ffd918cf39..7cbe309629 100644 --- a/react-icons/ti/battery-mid.d.ts +++ b/react-icons/ti/battery-mid.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBatteryMid extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/beaker.d.ts b/react-icons/ti/beaker.d.ts index 02484f3c3a..2b5f62cd9a 100644 --- a/react-icons/ti/beaker.d.ts +++ b/react-icons/ti/beaker.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBeaker extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/beer.d.ts b/react-icons/ti/beer.d.ts index 37c18ee453..02a0baf127 100644 --- a/react-icons/ti/beer.d.ts +++ b/react-icons/ti/beer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBeer extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/bell.d.ts b/react-icons/ti/bell.d.ts index 4074ec7a34..44c3f19470 100644 --- a/react-icons/ti/bell.d.ts +++ b/react-icons/ti/bell.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBell extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/book.d.ts b/react-icons/ti/book.d.ts index c3a0ad12a0..f53a59f50d 100644 --- a/react-icons/ti/book.d.ts +++ b/react-icons/ti/book.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBook extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/bookmark.d.ts b/react-icons/ti/bookmark.d.ts index bc2736986d..b1facac22e 100644 --- a/react-icons/ti/bookmark.d.ts +++ b/react-icons/ti/bookmark.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBookmark extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/briefcase.d.ts b/react-icons/ti/briefcase.d.ts index bdc5ff8c9d..b48dfc4514 100644 --- a/react-icons/ti/briefcase.d.ts +++ b/react-icons/ti/briefcase.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBriefcase extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/brush.d.ts b/react-icons/ti/brush.d.ts index 3d66ffafe8..51d546c8eb 100644 --- a/react-icons/ti/brush.d.ts +++ b/react-icons/ti/brush.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBrush extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/business-card.d.ts b/react-icons/ti/business-card.d.ts index b75c8dd8f0..da99e85b5b 100644 --- a/react-icons/ti/business-card.d.ts +++ b/react-icons/ti/business-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiBusinessCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calculator.d.ts b/react-icons/ti/calculator.d.ts index 1673ca6f56..44ac054ee0 100644 --- a/react-icons/ti/calculator.d.ts +++ b/react-icons/ti/calculator.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCalculator extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calendar-outline.d.ts b/react-icons/ti/calendar-outline.d.ts index 9375d9b9cd..4837ad1ed7 100644 --- a/react-icons/ti/calendar-outline.d.ts +++ b/react-icons/ti/calendar-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCalendarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calendar.d.ts b/react-icons/ti/calendar.d.ts index d898cb1de5..1fa9b40a37 100644 --- a/react-icons/ti/calendar.d.ts +++ b/react-icons/ti/calendar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCalendar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calender-outline.d.ts b/react-icons/ti/calender-outline.d.ts index 6b8272a6fa..72f8f58a31 100644 --- a/react-icons/ti/calender-outline.d.ts +++ b/react-icons/ti/calender-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCalenderOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/calender.d.ts b/react-icons/ti/calender.d.ts index 65de8fa2b6..7513859621 100644 --- a/react-icons/ti/calender.d.ts +++ b/react-icons/ti/calender.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCalender extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/camera-outline.d.ts b/react-icons/ti/camera-outline.d.ts index 36dbea9108..ff44e81d3a 100644 --- a/react-icons/ti/camera-outline.d.ts +++ b/react-icons/ti/camera-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCameraOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/camera.d.ts b/react-icons/ti/camera.d.ts index 65df0425c6..d82afe4e3f 100644 --- a/react-icons/ti/camera.d.ts +++ b/react-icons/ti/camera.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCamera extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cancel-outline.d.ts b/react-icons/ti/cancel-outline.d.ts index 4efe1949ae..0264863aa4 100644 --- a/react-icons/ti/cancel-outline.d.ts +++ b/react-icons/ti/cancel-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCancelOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cancel.d.ts b/react-icons/ti/cancel.d.ts index 75473c3dda..3fad265aa1 100644 --- a/react-icons/ti/cancel.d.ts +++ b/react-icons/ti/cancel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCancel extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-area-outline.d.ts b/react-icons/ti/chart-area-outline.d.ts index 10e5732b02..1f4bf842b6 100644 --- a/react-icons/ti/chart-area-outline.d.ts +++ b/react-icons/ti/chart-area-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartAreaOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-area.d.ts b/react-icons/ti/chart-area.d.ts index 22aa1c87fd..fa6330381f 100644 --- a/react-icons/ti/chart-area.d.ts +++ b/react-icons/ti/chart-area.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartArea extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-bar-outline.d.ts b/react-icons/ti/chart-bar-outline.d.ts index 77c0e9bd55..11c2ddf889 100644 --- a/react-icons/ti/chart-bar-outline.d.ts +++ b/react-icons/ti/chart-bar-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartBarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-bar.d.ts b/react-icons/ti/chart-bar.d.ts index 57c9c6401d..ed4604e4aa 100644 --- a/react-icons/ti/chart-bar.d.ts +++ b/react-icons/ti/chart-bar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartBar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-line-outline.d.ts b/react-icons/ti/chart-line-outline.d.ts index 7bc4d7d31d..634bbd3a1c 100644 --- a/react-icons/ti/chart-line-outline.d.ts +++ b/react-icons/ti/chart-line-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartLineOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-line.d.ts b/react-icons/ti/chart-line.d.ts index d3a83096b4..a5ad4d196c 100644 --- a/react-icons/ti/chart-line.d.ts +++ b/react-icons/ti/chart-line.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartLine extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-pie-outline.d.ts b/react-icons/ti/chart-pie-outline.d.ts index 49c1d5e4a3..9e52bf956f 100644 --- a/react-icons/ti/chart-pie-outline.d.ts +++ b/react-icons/ti/chart-pie-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartPieOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chart-pie.d.ts b/react-icons/ti/chart-pie.d.ts index 043d613fa2..9a2169533e 100644 --- a/react-icons/ti/chart-pie.d.ts +++ b/react-icons/ti/chart-pie.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChartPie extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-left-outline.d.ts b/react-icons/ti/chevron-left-outline.d.ts index 2a80ae47bc..4468417051 100644 --- a/react-icons/ti/chevron-left-outline.d.ts +++ b/react-icons/ti/chevron-left-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChevronLeftOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-left.d.ts b/react-icons/ti/chevron-left.d.ts index dc38a0e899..8b80b12237 100644 --- a/react-icons/ti/chevron-left.d.ts +++ b/react-icons/ti/chevron-left.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChevronLeft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-right-outline.d.ts b/react-icons/ti/chevron-right-outline.d.ts index a4c5497b98..03f8a0bcb4 100644 --- a/react-icons/ti/chevron-right-outline.d.ts +++ b/react-icons/ti/chevron-right-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChevronRightOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/chevron-right.d.ts b/react-icons/ti/chevron-right.d.ts index a595783f39..8c4cb0754e 100644 --- a/react-icons/ti/chevron-right.d.ts +++ b/react-icons/ti/chevron-right.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiChevronRight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/clipboard.d.ts b/react-icons/ti/clipboard.d.ts index 232aff9210..c3f9887dcb 100644 --- a/react-icons/ti/clipboard.d.ts +++ b/react-icons/ti/clipboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiClipboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cloud-storage-outline.d.ts b/react-icons/ti/cloud-storage-outline.d.ts index 70a1b09ee2..f9f7f9aaf5 100644 --- a/react-icons/ti/cloud-storage-outline.d.ts +++ b/react-icons/ti/cloud-storage-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCloudStorageOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cloud-storage.d.ts b/react-icons/ti/cloud-storage.d.ts index a0b55596e9..a766450e09 100644 --- a/react-icons/ti/cloud-storage.d.ts +++ b/react-icons/ti/cloud-storage.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCloudStorage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/code-outline.d.ts b/react-icons/ti/code-outline.d.ts index 18898601b7..7e79fd4462 100644 --- a/react-icons/ti/code-outline.d.ts +++ b/react-icons/ti/code-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCodeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/code.d.ts b/react-icons/ti/code.d.ts index e56523e7ac..47593bae21 100644 --- a/react-icons/ti/code.d.ts +++ b/react-icons/ti/code.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCode extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/coffee.d.ts b/react-icons/ti/coffee.d.ts index 4f56bda6c6..ac443517e0 100644 --- a/react-icons/ti/coffee.d.ts +++ b/react-icons/ti/coffee.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCoffee extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cog-outline.d.ts b/react-icons/ti/cog-outline.d.ts index 4358079e25..e11347f1ce 100644 --- a/react-icons/ti/cog-outline.d.ts +++ b/react-icons/ti/cog-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCogOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cog.d.ts b/react-icons/ti/cog.d.ts index f2c8c3b247..bc7699e24a 100644 --- a/react-icons/ti/cog.d.ts +++ b/react-icons/ti/cog.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCog extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/compass.d.ts b/react-icons/ti/compass.d.ts index b674f8798e..e183cf4a93 100644 --- a/react-icons/ti/compass.d.ts +++ b/react-icons/ti/compass.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCompass extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/contacts.d.ts b/react-icons/ti/contacts.d.ts index d3f1b6de96..6214a5a37e 100644 --- a/react-icons/ti/contacts.d.ts +++ b/react-icons/ti/contacts.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiContacts extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/credit-card.d.ts b/react-icons/ti/credit-card.d.ts index 5ba40a4889..909905c4d7 100644 --- a/react-icons/ti/credit-card.d.ts +++ b/react-icons/ti/credit-card.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCreditCard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/cross.d.ts b/react-icons/ti/cross.d.ts index 66ead9ed6f..e2e1f277ac 100644 --- a/react-icons/ti/cross.d.ts +++ b/react-icons/ti/cross.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCross extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/css3.d.ts b/react-icons/ti/css3.d.ts index 2e4ff86921..8157cb4b2f 100644 --- a/react-icons/ti/css3.d.ts +++ b/react-icons/ti/css3.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiCss3 extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/database.d.ts b/react-icons/ti/database.d.ts index cd19a38395..1c9356b9bb 100644 --- a/react-icons/ti/database.d.ts +++ b/react-icons/ti/database.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDatabase extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/delete-outline.d.ts b/react-icons/ti/delete-outline.d.ts index ce1a46afe0..1349491ea2 100644 --- a/react-icons/ti/delete-outline.d.ts +++ b/react-icons/ti/delete-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDeleteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/delete.d.ts b/react-icons/ti/delete.d.ts index 54b7a52798..ad7aecd415 100644 --- a/react-icons/ti/delete.d.ts +++ b/react-icons/ti/delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-desktop.d.ts b/react-icons/ti/device-desktop.d.ts index 4082937cfa..289e2d1adb 100644 --- a/react-icons/ti/device-desktop.d.ts +++ b/react-icons/ti/device-desktop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDeviceDesktop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-laptop.d.ts b/react-icons/ti/device-laptop.d.ts index 223e8cb78f..d297a92941 100644 --- a/react-icons/ti/device-laptop.d.ts +++ b/react-icons/ti/device-laptop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDeviceLaptop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-phone.d.ts b/react-icons/ti/device-phone.d.ts index 099ba01e32..8f427eaacc 100644 --- a/react-icons/ti/device-phone.d.ts +++ b/react-icons/ti/device-phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDevicePhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/device-tablet.d.ts b/react-icons/ti/device-tablet.d.ts index 4d2e7c7ecb..71ddf58c41 100644 --- a/react-icons/ti/device-tablet.d.ts +++ b/react-icons/ti/device-tablet.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDeviceTablet extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/directions.d.ts b/react-icons/ti/directions.d.ts index 9b8033529b..fb9df44e4b 100644 --- a/react-icons/ti/directions.d.ts +++ b/react-icons/ti/directions.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDirections extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/divide-outline.d.ts b/react-icons/ti/divide-outline.d.ts index 1ce6008736..21b7fae5b7 100644 --- a/react-icons/ti/divide-outline.d.ts +++ b/react-icons/ti/divide-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDivideOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/divide.d.ts b/react-icons/ti/divide.d.ts index ba049b42b6..7c01635634 100644 --- a/react-icons/ti/divide.d.ts +++ b/react-icons/ti/divide.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDivide extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-add.d.ts b/react-icons/ti/document-add.d.ts index c96e6da84a..0233e00abc 100644 --- a/react-icons/ti/document-add.d.ts +++ b/react-icons/ti/document-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDocumentAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-delete.d.ts b/react-icons/ti/document-delete.d.ts index fdcc134d84..1628b5e7f3 100644 --- a/react-icons/ti/document-delete.d.ts +++ b/react-icons/ti/document-delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDocumentDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document-text.d.ts b/react-icons/ti/document-text.d.ts index 132a18e341..7225a988b0 100644 --- a/react-icons/ti/document-text.d.ts +++ b/react-icons/ti/document-text.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDocumentText extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/document.d.ts b/react-icons/ti/document.d.ts index 18b90c8078..443cc61b93 100644 --- a/react-icons/ti/document.d.ts +++ b/react-icons/ti/document.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDocument extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/download-outline.d.ts b/react-icons/ti/download-outline.d.ts index 9c7b4117d9..522e4842df 100644 --- a/react-icons/ti/download-outline.d.ts +++ b/react-icons/ti/download-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDownloadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/download.d.ts b/react-icons/ti/download.d.ts index 165981a873..3d78cd7a9c 100644 --- a/react-icons/ti/download.d.ts +++ b/react-icons/ti/download.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDownload extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/dropbox.d.ts b/react-icons/ti/dropbox.d.ts index 6d5db24646..4239a95c87 100644 --- a/react-icons/ti/dropbox.d.ts +++ b/react-icons/ti/dropbox.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiDropbox extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/edit.d.ts b/react-icons/ti/edit.d.ts index 0a20f0d9bb..2821797d1d 100644 --- a/react-icons/ti/edit.d.ts +++ b/react-icons/ti/edit.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEdit extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eject-outline.d.ts b/react-icons/ti/eject-outline.d.ts index 9238d38c60..95a42f9084 100644 --- a/react-icons/ti/eject-outline.d.ts +++ b/react-icons/ti/eject-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEjectOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eject.d.ts b/react-icons/ti/eject.d.ts index 04578932aa..b362940e4d 100644 --- a/react-icons/ti/eject.d.ts +++ b/react-icons/ti/eject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/equals-outline.d.ts b/react-icons/ti/equals-outline.d.ts index cd8ffdada6..f82e98b90d 100644 --- a/react-icons/ti/equals-outline.d.ts +++ b/react-icons/ti/equals-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEqualsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/equals.d.ts b/react-icons/ti/equals.d.ts index 4a41e9c5a6..99f543b7e4 100644 --- a/react-icons/ti/equals.d.ts +++ b/react-icons/ti/equals.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEquals extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/export-outline.d.ts b/react-icons/ti/export-outline.d.ts index a16dc24f03..fa94602205 100644 --- a/react-icons/ti/export-outline.d.ts +++ b/react-icons/ti/export-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiExportOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/export.d.ts b/react-icons/ti/export.d.ts index 815b8b9860..2dd56e2ebe 100644 --- a/react-icons/ti/export.d.ts +++ b/react-icons/ti/export.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiExport extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eye-outline.d.ts b/react-icons/ti/eye-outline.d.ts index f948c1f806..c251d8c981 100644 --- a/react-icons/ti/eye-outline.d.ts +++ b/react-icons/ti/eye-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEyeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/eye.d.ts b/react-icons/ti/eye.d.ts index 2766026c15..7d834667fa 100644 --- a/react-icons/ti/eye.d.ts +++ b/react-icons/ti/eye.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiEye extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/feather.d.ts b/react-icons/ti/feather.d.ts index e3ee080a39..93d2aeefa3 100644 --- a/react-icons/ti/feather.d.ts +++ b/react-icons/ti/feather.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFeather extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/film.d.ts b/react-icons/ti/film.d.ts index ca097907b5..c40da10be4 100644 --- a/react-icons/ti/film.d.ts +++ b/react-icons/ti/film.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFilm extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/filter.d.ts b/react-icons/ti/filter.d.ts index 7a792ce53d..460337dd31 100644 --- a/react-icons/ti/filter.d.ts +++ b/react-icons/ti/filter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFilter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flag-outline.d.ts b/react-icons/ti/flag-outline.d.ts index 39b61f70df..7ed7540c56 100644 --- a/react-icons/ti/flag-outline.d.ts +++ b/react-icons/ti/flag-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlagOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flag.d.ts b/react-icons/ti/flag.d.ts index 6756d5ad02..429004cc9c 100644 --- a/react-icons/ti/flag.d.ts +++ b/react-icons/ti/flag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flash-outline.d.ts b/react-icons/ti/flash-outline.d.ts index 4206624b4a..ea4e04e800 100644 --- a/react-icons/ti/flash-outline.d.ts +++ b/react-icons/ti/flash-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlashOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flash.d.ts b/react-icons/ti/flash.d.ts index c155d980bb..6f754b0990 100644 --- a/react-icons/ti/flash.d.ts +++ b/react-icons/ti/flash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlash extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-children.d.ts b/react-icons/ti/flow-children.d.ts index 9ab26c796d..0ef516c6d5 100644 --- a/react-icons/ti/flow-children.d.ts +++ b/react-icons/ti/flow-children.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlowChildren extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-merge.d.ts b/react-icons/ti/flow-merge.d.ts index c31657001f..10738a1975 100644 --- a/react-icons/ti/flow-merge.d.ts +++ b/react-icons/ti/flow-merge.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlowMerge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-parallel.d.ts b/react-icons/ti/flow-parallel.d.ts index b50cece646..3b9741178a 100644 --- a/react-icons/ti/flow-parallel.d.ts +++ b/react-icons/ti/flow-parallel.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlowParallel extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/flow-switch.d.ts b/react-icons/ti/flow-switch.d.ts index f211d0bff6..69ee164d62 100644 --- a/react-icons/ti/flow-switch.d.ts +++ b/react-icons/ti/flow-switch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFlowSwitch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-add.d.ts b/react-icons/ti/folder-add.d.ts index bb77eb4f17..66ae262d65 100644 --- a/react-icons/ti/folder-add.d.ts +++ b/react-icons/ti/folder-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFolderAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-delete.d.ts b/react-icons/ti/folder-delete.d.ts index bf3bfe3958..7b448ba689 100644 --- a/react-icons/ti/folder-delete.d.ts +++ b/react-icons/ti/folder-delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFolderDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder-open.d.ts b/react-icons/ti/folder-open.d.ts index 6f0f188e86..37b76dd291 100644 --- a/react-icons/ti/folder-open.d.ts +++ b/react-icons/ti/folder-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFolderOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/folder.d.ts b/react-icons/ti/folder.d.ts index 0ce5764483..0604d1a259 100644 --- a/react-icons/ti/folder.d.ts +++ b/react-icons/ti/folder.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiFolder extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/gift.d.ts b/react-icons/ti/gift.d.ts index 1335e2a466..c55a3ca5a8 100644 --- a/react-icons/ti/gift.d.ts +++ b/react-icons/ti/gift.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiGift extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/globe-outline.d.ts b/react-icons/ti/globe-outline.d.ts index 4a35336cee..c23a68d7e7 100644 --- a/react-icons/ti/globe-outline.d.ts +++ b/react-icons/ti/globe-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiGlobeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/globe.d.ts b/react-icons/ti/globe.d.ts index 9a8c4d81b5..f7e8e737d2 100644 --- a/react-icons/ti/globe.d.ts +++ b/react-icons/ti/globe.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiGlobe extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/group-outline.d.ts b/react-icons/ti/group-outline.d.ts index c90a63b8d8..b167600574 100644 --- a/react-icons/ti/group-outline.d.ts +++ b/react-icons/ti/group-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiGroupOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/group.d.ts b/react-icons/ti/group.d.ts index 4f5fd1ecb0..aa4b6639df 100644 --- a/react-icons/ti/group.d.ts +++ b/react-icons/ti/group.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiGroup extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/headphones.d.ts b/react-icons/ti/headphones.d.ts index 7fa32b06de..e48460c45a 100644 --- a/react-icons/ti/headphones.d.ts +++ b/react-icons/ti/headphones.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHeadphones extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-full-outline.d.ts b/react-icons/ti/heart-full-outline.d.ts index 528f286bcd..3a0c556394 100644 --- a/react-icons/ti/heart-full-outline.d.ts +++ b/react-icons/ti/heart-full-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHeartFullOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-half-outline.d.ts b/react-icons/ti/heart-half-outline.d.ts index d36d3ef634..0ce00b48da 100644 --- a/react-icons/ti/heart-half-outline.d.ts +++ b/react-icons/ti/heart-half-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHeartHalfOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart-outline.d.ts b/react-icons/ti/heart-outline.d.ts index a456814f14..889e71cad4 100644 --- a/react-icons/ti/heart-outline.d.ts +++ b/react-icons/ti/heart-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHeartOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/heart.d.ts b/react-icons/ti/heart.d.ts index 9b7f9a63d6..07d291b914 100644 --- a/react-icons/ti/heart.d.ts +++ b/react-icons/ti/heart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHeart extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/home-outline.d.ts b/react-icons/ti/home-outline.d.ts index d8e356aea5..88725b4d59 100644 --- a/react-icons/ti/home-outline.d.ts +++ b/react-icons/ti/home-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHomeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/home.d.ts b/react-icons/ti/home.d.ts index d4b20e2a1b..79fe66b989 100644 --- a/react-icons/ti/home.d.ts +++ b/react-icons/ti/home.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHome extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/html5.d.ts b/react-icons/ti/html5.d.ts index 8d5d862ddd..fdf11b3e1a 100644 --- a/react-icons/ti/html5.d.ts +++ b/react-icons/ti/html5.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiHtml5 extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/image-outline.d.ts b/react-icons/ti/image-outline.d.ts index 47cdff063f..b4a2790f47 100644 --- a/react-icons/ti/image-outline.d.ts +++ b/react-icons/ti/image-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiImageOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/image.d.ts b/react-icons/ti/image.d.ts index ed7769b86a..5d42fd9722 100644 --- a/react-icons/ti/image.d.ts +++ b/react-icons/ti/image.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiImage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/index.d.ts b/react-icons/ti/index.d.ts index 4156d41c8b..0e78b73fd9 100644 --- a/react-icons/ti/index.d.ts +++ b/react-icons/ti/index.d.ts @@ -1,3 +1,4 @@ +// TypeScript Version: 2.1 import _TiAdjustBrightness from "./adjust-brightness"; import _TiAdjustContrast from "./adjust-contrast"; import _TiAnchorOutline from "./anchor-outline"; diff --git a/react-icons/ti/infinity-outline.d.ts b/react-icons/ti/infinity-outline.d.ts index 99f4df44ec..933f3f3fea 100644 --- a/react-icons/ti/infinity-outline.d.ts +++ b/react-icons/ti/infinity-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfinityOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/infinity.d.ts b/react-icons/ti/infinity.d.ts index cd61ba08e9..23b785225d 100644 --- a/react-icons/ti/infinity.d.ts +++ b/react-icons/ti/infinity.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfinity extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-large-outline.d.ts b/react-icons/ti/info-large-outline.d.ts index 7c8ea2ce3b..3355ed8c8a 100644 --- a/react-icons/ti/info-large-outline.d.ts +++ b/react-icons/ti/info-large-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfoLargeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-large.d.ts b/react-icons/ti/info-large.d.ts index d041ff5004..63899d3050 100644 --- a/react-icons/ti/info-large.d.ts +++ b/react-icons/ti/info-large.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfoLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info-outline.d.ts b/react-icons/ti/info-outline.d.ts index 7730a94e80..e22aeee30b 100644 --- a/react-icons/ti/info-outline.d.ts +++ b/react-icons/ti/info-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/info.d.ts b/react-icons/ti/info.d.ts index 910e7b78be..c7973c14f5 100644 --- a/react-icons/ti/info.d.ts +++ b/react-icons/ti/info.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInfo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/input-checked-outline.d.ts b/react-icons/ti/input-checked-outline.d.ts index 0ae10c5aed..a58c6529aa 100644 --- a/react-icons/ti/input-checked-outline.d.ts +++ b/react-icons/ti/input-checked-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInputCheckedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/input-checked.d.ts b/react-icons/ti/input-checked.d.ts index 05e5d8e863..67ab5f42fc 100644 --- a/react-icons/ti/input-checked.d.ts +++ b/react-icons/ti/input-checked.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiInputChecked extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/key-outline.d.ts b/react-icons/ti/key-outline.d.ts index 2d04dd40f8..708a18e2f5 100644 --- a/react-icons/ti/key-outline.d.ts +++ b/react-icons/ti/key-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiKeyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/key.d.ts b/react-icons/ti/key.d.ts index 153334362e..1f381ab7c8 100644 --- a/react-icons/ti/key.d.ts +++ b/react-icons/ti/key.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiKey extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/keyboard.d.ts b/react-icons/ti/keyboard.d.ts index c08d26f31b..b61e7213bf 100644 --- a/react-icons/ti/keyboard.d.ts +++ b/react-icons/ti/keyboard.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiKeyboard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/leaf.d.ts b/react-icons/ti/leaf.d.ts index ff1e20feed..8d825ceeaa 100644 --- a/react-icons/ti/leaf.d.ts +++ b/react-icons/ti/leaf.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLeaf extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lightbulb.d.ts b/react-icons/ti/lightbulb.d.ts index 00aa241f89..81fc2fd2c8 100644 --- a/react-icons/ti/lightbulb.d.ts +++ b/react-icons/ti/lightbulb.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLightbulb extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/link-outline.d.ts b/react-icons/ti/link-outline.d.ts index aa88dbf990..97c83ba957 100644 --- a/react-icons/ti/link-outline.d.ts +++ b/react-icons/ti/link-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLinkOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/link.d.ts b/react-icons/ti/link.d.ts index 88dedeec88..6815ae94ed 100644 --- a/react-icons/ti/link.d.ts +++ b/react-icons/ti/link.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLink extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-arrow-outline.d.ts b/react-icons/ti/location-arrow-outline.d.ts index de09dd0674..2cc783d438 100644 --- a/react-icons/ti/location-arrow-outline.d.ts +++ b/react-icons/ti/location-arrow-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLocationArrowOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-arrow.d.ts b/react-icons/ti/location-arrow.d.ts index 822b6c34bd..5bf8cea431 100644 --- a/react-icons/ti/location-arrow.d.ts +++ b/react-icons/ti/location-arrow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLocationArrow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location-outline.d.ts b/react-icons/ti/location-outline.d.ts index 8ad13faca7..bb4e2bb16d 100644 --- a/react-icons/ti/location-outline.d.ts +++ b/react-icons/ti/location-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLocationOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/location.d.ts b/react-icons/ti/location.d.ts index 6b6f1f2053..7d885fa226 100644 --- a/react-icons/ti/location.d.ts +++ b/react-icons/ti/location.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLocation extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-closed-outline.d.ts b/react-icons/ti/lock-closed-outline.d.ts index 22bba33c82..64c64e7a43 100644 --- a/react-icons/ti/lock-closed-outline.d.ts +++ b/react-icons/ti/lock-closed-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLockClosedOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-closed.d.ts b/react-icons/ti/lock-closed.d.ts index 941292bc3f..e1692ec279 100644 --- a/react-icons/ti/lock-closed.d.ts +++ b/react-icons/ti/lock-closed.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLockClosed extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-open-outline.d.ts b/react-icons/ti/lock-open-outline.d.ts index a003f56fc8..a229b2fe1e 100644 --- a/react-icons/ti/lock-open-outline.d.ts +++ b/react-icons/ti/lock-open-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLockOpenOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/lock-open.d.ts b/react-icons/ti/lock-open.d.ts index 793afc929d..64f4a5fc6b 100644 --- a/react-icons/ti/lock-open.d.ts +++ b/react-icons/ti/lock-open.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiLockOpen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/mail.d.ts b/react-icons/ti/mail.d.ts index 50e22df8f0..11970ba04c 100644 --- a/react-icons/ti/mail.d.ts +++ b/react-icons/ti/mail.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMail extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/map.d.ts b/react-icons/ti/map.d.ts index a4232ab434..af02bb1235 100644 --- a/react-icons/ti/map.d.ts +++ b/react-icons/ti/map.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMap extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-eject-outline.d.ts b/react-icons/ti/media-eject-outline.d.ts index f4a4ec314d..7f48d6f622 100644 --- a/react-icons/ti/media-eject-outline.d.ts +++ b/react-icons/ti/media-eject-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaEjectOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-eject.d.ts b/react-icons/ti/media-eject.d.ts index aae290207f..60fb5dad53 100644 --- a/react-icons/ti/media-eject.d.ts +++ b/react-icons/ti/media-eject.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaEject extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-fast-forward-outline.d.ts b/react-icons/ti/media-fast-forward-outline.d.ts index 9fd3a0b44c..9f6ce95161 100644 --- a/react-icons/ti/media-fast-forward-outline.d.ts +++ b/react-icons/ti/media-fast-forward-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaFastForwardOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-fast-forward.d.ts b/react-icons/ti/media-fast-forward.d.ts index f96582a23f..a0fd63802c 100644 --- a/react-icons/ti/media-fast-forward.d.ts +++ b/react-icons/ti/media-fast-forward.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaFastForward extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-pause-outline.d.ts b/react-icons/ti/media-pause-outline.d.ts index 2488cb7731..3b131883a8 100644 --- a/react-icons/ti/media-pause-outline.d.ts +++ b/react-icons/ti/media-pause-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPauseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-pause.d.ts b/react-icons/ti/media-pause.d.ts index 07e23dc8c5..d6ccbe43d8 100644 --- a/react-icons/ti/media-pause.d.ts +++ b/react-icons/ti/media-pause.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPause extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-outline.d.ts b/react-icons/ti/media-play-outline.d.ts index db49c26a4b..9f0cfde0e8 100644 --- a/react-icons/ti/media-play-outline.d.ts +++ b/react-icons/ti/media-play-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPlayOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-reverse-outline.d.ts b/react-icons/ti/media-play-reverse-outline.d.ts index 1390231aec..ef84f545c9 100644 --- a/react-icons/ti/media-play-reverse-outline.d.ts +++ b/react-icons/ti/media-play-reverse-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPlayReverseOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play-reverse.d.ts b/react-icons/ti/media-play-reverse.d.ts index ebd83c738a..cefa9d02b0 100644 --- a/react-icons/ti/media-play-reverse.d.ts +++ b/react-icons/ti/media-play-reverse.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPlayReverse extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-play.d.ts b/react-icons/ti/media-play.d.ts index 87134282a9..ba8fe73bd7 100644 --- a/react-icons/ti/media-play.d.ts +++ b/react-icons/ti/media-play.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaPlay extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-record-outline.d.ts b/react-icons/ti/media-record-outline.d.ts index 012aaebf1d..13b6d02ea8 100644 --- a/react-icons/ti/media-record-outline.d.ts +++ b/react-icons/ti/media-record-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaRecordOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-record.d.ts b/react-icons/ti/media-record.d.ts index f94da12a9e..e37312e2c8 100644 --- a/react-icons/ti/media-record.d.ts +++ b/react-icons/ti/media-record.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaRecord extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-rewind-outline.d.ts b/react-icons/ti/media-rewind-outline.d.ts index 506a37639e..6673419051 100644 --- a/react-icons/ti/media-rewind-outline.d.ts +++ b/react-icons/ti/media-rewind-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaRewindOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-rewind.d.ts b/react-icons/ti/media-rewind.d.ts index dec64cff1a..6355fc70c8 100644 --- a/react-icons/ti/media-rewind.d.ts +++ b/react-icons/ti/media-rewind.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaRewind extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-stop-outline.d.ts b/react-icons/ti/media-stop-outline.d.ts index cecc1238b6..284b6d619a 100644 --- a/react-icons/ti/media-stop-outline.d.ts +++ b/react-icons/ti/media-stop-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaStopOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/media-stop.d.ts b/react-icons/ti/media-stop.d.ts index 2dc50bd65a..7ed85be809 100644 --- a/react-icons/ti/media-stop.d.ts +++ b/react-icons/ti/media-stop.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMediaStop extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/message-typing.d.ts b/react-icons/ti/message-typing.d.ts index 559edc55b2..593360a0c1 100644 --- a/react-icons/ti/message-typing.d.ts +++ b/react-icons/ti/message-typing.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMessageTyping extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/message.d.ts b/react-icons/ti/message.d.ts index 66b35f3436..d7fdef598c 100644 --- a/react-icons/ti/message.d.ts +++ b/react-icons/ti/message.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMessage extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/messages.d.ts b/react-icons/ti/messages.d.ts index bc34ba77c5..3061a4b1d8 100644 --- a/react-icons/ti/messages.d.ts +++ b/react-icons/ti/messages.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMessages extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/microphone-outline.d.ts b/react-icons/ti/microphone-outline.d.ts index 576c405276..15b36cd6ba 100644 --- a/react-icons/ti/microphone-outline.d.ts +++ b/react-icons/ti/microphone-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMicrophoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/microphone.d.ts b/react-icons/ti/microphone.d.ts index ff42d8d24e..3840e20255 100644 --- a/react-icons/ti/microphone.d.ts +++ b/react-icons/ti/microphone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMicrophone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/minus-outline.d.ts b/react-icons/ti/minus-outline.d.ts index 4c58f8b1f7..2770ce005c 100644 --- a/react-icons/ti/minus-outline.d.ts +++ b/react-icons/ti/minus-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMinusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/minus.d.ts b/react-icons/ti/minus.d.ts index 6bc72816ee..20d69e69e8 100644 --- a/react-icons/ti/minus.d.ts +++ b/react-icons/ti/minus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMinus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/mortar-board.d.ts b/react-icons/ti/mortar-board.d.ts index 77306e7798..c5b18dd504 100644 --- a/react-icons/ti/mortar-board.d.ts +++ b/react-icons/ti/mortar-board.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiMortarBoard extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/news.d.ts b/react-icons/ti/news.d.ts index 064ddd778c..9afffc6ee5 100644 --- a/react-icons/ti/news.d.ts +++ b/react-icons/ti/news.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiNews extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/notes-outline.d.ts b/react-icons/ti/notes-outline.d.ts index c8c828dec2..be4f5413d6 100644 --- a/react-icons/ti/notes-outline.d.ts +++ b/react-icons/ti/notes-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiNotesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/notes.d.ts b/react-icons/ti/notes.d.ts index 302a40958a..f2592b376f 100644 --- a/react-icons/ti/notes.d.ts +++ b/react-icons/ti/notes.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiNotes extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pen.d.ts b/react-icons/ti/pen.d.ts index 48e1f2769d..a2fd27eee9 100644 --- a/react-icons/ti/pen.d.ts +++ b/react-icons/ti/pen.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPen extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pencil.d.ts b/react-icons/ti/pencil.d.ts index b87c34f011..93b63951b7 100644 --- a/react-icons/ti/pencil.d.ts +++ b/react-icons/ti/pencil.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPencil extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/phone-outline.d.ts b/react-icons/ti/phone-outline.d.ts index 701be542a6..fcfa477bb5 100644 --- a/react-icons/ti/phone-outline.d.ts +++ b/react-icons/ti/phone-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPhoneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/phone.d.ts b/react-icons/ti/phone.d.ts index edbc041074..b0e7e7feea 100644 --- a/react-icons/ti/phone.d.ts +++ b/react-icons/ti/phone.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPhone extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pi-outline.d.ts b/react-icons/ti/pi-outline.d.ts index 091b8d9326..6869435ee4 100644 --- a/react-icons/ti/pi-outline.d.ts +++ b/react-icons/ti/pi-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPiOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pi.d.ts b/react-icons/ti/pi.d.ts index 6ebd0d14d9..1617294646 100644 --- a/react-icons/ti/pi.d.ts +++ b/react-icons/ti/pi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPi extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pin-outline.d.ts b/react-icons/ti/pin-outline.d.ts index 67493da5ad..b373513a10 100644 --- a/react-icons/ti/pin-outline.d.ts +++ b/react-icons/ti/pin-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPinOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pin.d.ts b/react-icons/ti/pin.d.ts index 2f57819616..099fb4f3c7 100644 --- a/react-icons/ti/pin.d.ts +++ b/react-icons/ti/pin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPin extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/pipette.d.ts b/react-icons/ti/pipette.d.ts index 8e170a3cf0..1121ff32e2 100644 --- a/react-icons/ti/pipette.d.ts +++ b/react-icons/ti/pipette.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPipette extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plane-outline.d.ts b/react-icons/ti/plane-outline.d.ts index b03ec32fa7..41f5f816ad 100644 --- a/react-icons/ti/plane-outline.d.ts +++ b/react-icons/ti/plane-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPlaneOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plane.d.ts b/react-icons/ti/plane.d.ts index 94859c916f..8876824ca8 100644 --- a/react-icons/ti/plane.d.ts +++ b/react-icons/ti/plane.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPlane extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plug.d.ts b/react-icons/ti/plug.d.ts index 72bf334ba4..ff7acd70e7 100644 --- a/react-icons/ti/plug.d.ts +++ b/react-icons/ti/plug.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPlug extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plus-outline.d.ts b/react-icons/ti/plus-outline.d.ts index 90f94429bd..07878f2724 100644 --- a/react-icons/ti/plus-outline.d.ts +++ b/react-icons/ti/plus-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPlusOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/plus.d.ts b/react-icons/ti/plus.d.ts index 67da8332a9..83bb89db55 100644 --- a/react-icons/ti/plus.d.ts +++ b/react-icons/ti/plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/point-of-interest-outline.d.ts b/react-icons/ti/point-of-interest-outline.d.ts index 2524c60855..2e94299ade 100644 --- a/react-icons/ti/point-of-interest-outline.d.ts +++ b/react-icons/ti/point-of-interest-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPointOfInterestOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/point-of-interest.d.ts b/react-icons/ti/point-of-interest.d.ts index 034fd2d631..4b60c5714a 100644 --- a/react-icons/ti/point-of-interest.d.ts +++ b/react-icons/ti/point-of-interest.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPointOfInterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/power-outline.d.ts b/react-icons/ti/power-outline.d.ts index 29c1297149..fb1989b052 100644 --- a/react-icons/ti/power-outline.d.ts +++ b/react-icons/ti/power-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPowerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/power.d.ts b/react-icons/ti/power.d.ts index f5c1ef8761..bff6aafd9d 100644 --- a/react-icons/ti/power.d.ts +++ b/react-icons/ti/power.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPower extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/printer.d.ts b/react-icons/ti/printer.d.ts index b22a9adce5..1282c2f00f 100644 --- a/react-icons/ti/printer.d.ts +++ b/react-icons/ti/printer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPrinter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/puzzle-outline.d.ts b/react-icons/ti/puzzle-outline.d.ts index fc35550aac..c48cab8864 100644 --- a/react-icons/ti/puzzle-outline.d.ts +++ b/react-icons/ti/puzzle-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPuzzleOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/puzzle.d.ts b/react-icons/ti/puzzle.d.ts index 4f200af790..47e1532f46 100644 --- a/react-icons/ti/puzzle.d.ts +++ b/react-icons/ti/puzzle.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiPuzzle extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/radar-outline.d.ts b/react-icons/ti/radar-outline.d.ts index 3d78fe41cc..cd738b7d4e 100644 --- a/react-icons/ti/radar-outline.d.ts +++ b/react-icons/ti/radar-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRadarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/radar.d.ts b/react-icons/ti/radar.d.ts index 0705f0b4c9..9bf0baaeb5 100644 --- a/react-icons/ti/radar.d.ts +++ b/react-icons/ti/radar.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRadar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/refresh-outline.d.ts b/react-icons/ti/refresh-outline.d.ts index 4c49aa6958..8c5e85d643 100644 --- a/react-icons/ti/refresh-outline.d.ts +++ b/react-icons/ti/refresh-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRefreshOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/refresh.d.ts b/react-icons/ti/refresh.d.ts index 597b6ce3f7..de9f31e098 100644 --- a/react-icons/ti/refresh.d.ts +++ b/react-icons/ti/refresh.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRefresh extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/rss-outline.d.ts b/react-icons/ti/rss-outline.d.ts index 4a8815516c..68e073ee0f 100644 --- a/react-icons/ti/rss-outline.d.ts +++ b/react-icons/ti/rss-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRssOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/rss.d.ts b/react-icons/ti/rss.d.ts index bd7896bb2f..9beb85a66d 100644 --- a/react-icons/ti/rss.d.ts +++ b/react-icons/ti/rss.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiRss extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/scissors-outline.d.ts b/react-icons/ti/scissors-outline.d.ts index be3c744160..68aaff6c40 100644 --- a/react-icons/ti/scissors-outline.d.ts +++ b/react-icons/ti/scissors-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiScissorsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/scissors.d.ts b/react-icons/ti/scissors.d.ts index c580e89b36..dfa70d7f36 100644 --- a/react-icons/ti/scissors.d.ts +++ b/react-icons/ti/scissors.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiScissors extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/shopping-bag.d.ts b/react-icons/ti/shopping-bag.d.ts index 7fb312ff26..62366e0555 100644 --- a/react-icons/ti/shopping-bag.d.ts +++ b/react-icons/ti/shopping-bag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiShoppingBag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/shopping-cart.d.ts b/react-icons/ti/shopping-cart.d.ts index 45346962f8..e56c94e9f7 100644 --- a/react-icons/ti/shopping-cart.d.ts +++ b/react-icons/ti/shopping-cart.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiShoppingCart extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-at-circular.d.ts b/react-icons/ti/social-at-circular.d.ts index 66589c3bdc..d8e93ddba8 100644 --- a/react-icons/ti/social-at-circular.d.ts +++ b/react-icons/ti/social-at-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialAtCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-dribbble-circular.d.ts b/react-icons/ti/social-dribbble-circular.d.ts index d347f8c3da..68b605c14e 100644 --- a/react-icons/ti/social-dribbble-circular.d.ts +++ b/react-icons/ti/social-dribbble-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialDribbbleCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-dribbble.d.ts b/react-icons/ti/social-dribbble.d.ts index 9c7f97ecff..69bf5aa0ca 100644 --- a/react-icons/ti/social-dribbble.d.ts +++ b/react-icons/ti/social-dribbble.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialDribbble extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-facebook-circular.d.ts b/react-icons/ti/social-facebook-circular.d.ts index cf8381bf91..d3c781a910 100644 --- a/react-icons/ti/social-facebook-circular.d.ts +++ b/react-icons/ti/social-facebook-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialFacebookCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-facebook.d.ts b/react-icons/ti/social-facebook.d.ts index c5fb07eef6..987aa840d8 100644 --- a/react-icons/ti/social-facebook.d.ts +++ b/react-icons/ti/social-facebook.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialFacebook extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-flickr-circular.d.ts b/react-icons/ti/social-flickr-circular.d.ts index 1b8ccf81db..47d3b5a0a7 100644 --- a/react-icons/ti/social-flickr-circular.d.ts +++ b/react-icons/ti/social-flickr-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialFlickrCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-flickr.d.ts b/react-icons/ti/social-flickr.d.ts index a5ec6185e4..aca7a7fe68 100644 --- a/react-icons/ti/social-flickr.d.ts +++ b/react-icons/ti/social-flickr.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialFlickr extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-github-circular.d.ts b/react-icons/ti/social-github-circular.d.ts index 9f56ff055b..18f9e5792a 100644 --- a/react-icons/ti/social-github-circular.d.ts +++ b/react-icons/ti/social-github-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialGithubCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-github.d.ts b/react-icons/ti/social-github.d.ts index 4ea50420cf..f4a6934aa0 100644 --- a/react-icons/ti/social-github.d.ts +++ b/react-icons/ti/social-github.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialGithub extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-google-plus-circular.d.ts b/react-icons/ti/social-google-plus-circular.d.ts index 8f49a49abe..0c0da14423 100644 --- a/react-icons/ti/social-google-plus-circular.d.ts +++ b/react-icons/ti/social-google-plus-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialGooglePlusCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-google-plus.d.ts b/react-icons/ti/social-google-plus.d.ts index 05040796b3..048b92803e 100644 --- a/react-icons/ti/social-google-plus.d.ts +++ b/react-icons/ti/social-google-plus.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialGooglePlus extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-instagram-circular.d.ts b/react-icons/ti/social-instagram-circular.d.ts index 89ac3765ec..b1984e843f 100644 --- a/react-icons/ti/social-instagram-circular.d.ts +++ b/react-icons/ti/social-instagram-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialInstagramCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-instagram.d.ts b/react-icons/ti/social-instagram.d.ts index c59385aaf8..2cf8e947b5 100644 --- a/react-icons/ti/social-instagram.d.ts +++ b/react-icons/ti/social-instagram.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialInstagram extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-last-fm-circular.d.ts b/react-icons/ti/social-last-fm-circular.d.ts index ad5629d115..4840e8d1f7 100644 --- a/react-icons/ti/social-last-fm-circular.d.ts +++ b/react-icons/ti/social-last-fm-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialLastFmCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-last-fm.d.ts b/react-icons/ti/social-last-fm.d.ts index 532cbe8962..cb0a1b49c8 100644 --- a/react-icons/ti/social-last-fm.d.ts +++ b/react-icons/ti/social-last-fm.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialLastFm extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-linkedin-circular.d.ts b/react-icons/ti/social-linkedin-circular.d.ts index ee784428be..865e71c5d8 100644 --- a/react-icons/ti/social-linkedin-circular.d.ts +++ b/react-icons/ti/social-linkedin-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialLinkedinCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-linkedin.d.ts b/react-icons/ti/social-linkedin.d.ts index ea6ab8842a..375ba290fd 100644 --- a/react-icons/ti/social-linkedin.d.ts +++ b/react-icons/ti/social-linkedin.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialLinkedin extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-pinterest-circular.d.ts b/react-icons/ti/social-pinterest-circular.d.ts index f3a8d5fe54..f432cf5adc 100644 --- a/react-icons/ti/social-pinterest-circular.d.ts +++ b/react-icons/ti/social-pinterest-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialPinterestCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-pinterest.d.ts b/react-icons/ti/social-pinterest.d.ts index 1e87668d6c..63a474c97e 100644 --- a/react-icons/ti/social-pinterest.d.ts +++ b/react-icons/ti/social-pinterest.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialPinterest extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-skype-outline.d.ts b/react-icons/ti/social-skype-outline.d.ts index eb07aadc7c..e3efecc73f 100644 --- a/react-icons/ti/social-skype-outline.d.ts +++ b/react-icons/ti/social-skype-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialSkypeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-skype.d.ts b/react-icons/ti/social-skype.d.ts index f4cd7d2e7e..a5d22f640b 100644 --- a/react-icons/ti/social-skype.d.ts +++ b/react-icons/ti/social-skype.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialSkype extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-tumbler-circular.d.ts b/react-icons/ti/social-tumbler-circular.d.ts index 3cb8a76816..9b48cd3903 100644 --- a/react-icons/ti/social-tumbler-circular.d.ts +++ b/react-icons/ti/social-tumbler-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialTumblerCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-tumbler.d.ts b/react-icons/ti/social-tumbler.d.ts index e5a9cdd8e1..a149d2cfb2 100644 --- a/react-icons/ti/social-tumbler.d.ts +++ b/react-icons/ti/social-tumbler.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialTumbler extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-twitter-circular.d.ts b/react-icons/ti/social-twitter-circular.d.ts index 2e620a4b4a..02ac7d361b 100644 --- a/react-icons/ti/social-twitter-circular.d.ts +++ b/react-icons/ti/social-twitter-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialTwitterCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-twitter.d.ts b/react-icons/ti/social-twitter.d.ts index b16b20fc25..9866ed4313 100644 --- a/react-icons/ti/social-twitter.d.ts +++ b/react-icons/ti/social-twitter.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialTwitter extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-vimeo-circular.d.ts b/react-icons/ti/social-vimeo-circular.d.ts index 1dc19b0077..71a5d79bce 100644 --- a/react-icons/ti/social-vimeo-circular.d.ts +++ b/react-icons/ti/social-vimeo-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialVimeoCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-vimeo.d.ts b/react-icons/ti/social-vimeo.d.ts index 30432e4eae..5b29be3ef3 100644 --- a/react-icons/ti/social-vimeo.d.ts +++ b/react-icons/ti/social-vimeo.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialVimeo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-youtube-circular.d.ts b/react-icons/ti/social-youtube-circular.d.ts index 02840ae42c..9429b00bf1 100644 --- a/react-icons/ti/social-youtube-circular.d.ts +++ b/react-icons/ti/social-youtube-circular.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialYoutubeCircular extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/social-youtube.d.ts b/react-icons/ti/social-youtube.d.ts index fe216972ea..dc7cbdf97f 100644 --- a/react-icons/ti/social-youtube.d.ts +++ b/react-icons/ti/social-youtube.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSocialYoutube extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-alphabetically-outline.d.ts b/react-icons/ti/sort-alphabetically-outline.d.ts index 70aa417903..febb2f4e1f 100644 --- a/react-icons/ti/sort-alphabetically-outline.d.ts +++ b/react-icons/ti/sort-alphabetically-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSortAlphabeticallyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-alphabetically.d.ts b/react-icons/ti/sort-alphabetically.d.ts index 310f4f70cf..bcaefdac7e 100644 --- a/react-icons/ti/sort-alphabetically.d.ts +++ b/react-icons/ti/sort-alphabetically.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSortAlphabetically extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-numerically-outline.d.ts b/react-icons/ti/sort-numerically-outline.d.ts index d471e0dc12..1ab9d543b4 100644 --- a/react-icons/ti/sort-numerically-outline.d.ts +++ b/react-icons/ti/sort-numerically-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSortNumericallyOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/sort-numerically.d.ts b/react-icons/ti/sort-numerically.d.ts index 03bb5ea517..bc2a9b3294 100644 --- a/react-icons/ti/sort-numerically.d.ts +++ b/react-icons/ti/sort-numerically.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSortNumerically extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spanner-outline.d.ts b/react-icons/ti/spanner-outline.d.ts index af1782b6ec..f96e12c629 100644 --- a/react-icons/ti/spanner-outline.d.ts +++ b/react-icons/ti/spanner-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSpannerOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spanner.d.ts b/react-icons/ti/spanner.d.ts index caadbac51b..4ce975ed7e 100644 --- a/react-icons/ti/spanner.d.ts +++ b/react-icons/ti/spanner.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSpanner extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/spiral.d.ts b/react-icons/ti/spiral.d.ts index 08b6256cd0..49025e1d35 100644 --- a/react-icons/ti/spiral.d.ts +++ b/react-icons/ti/spiral.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSpiral extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-full-outline.d.ts b/react-icons/ti/star-full-outline.d.ts index f0a4a21891..4bea37a1af 100644 --- a/react-icons/ti/star-full-outline.d.ts +++ b/react-icons/ti/star-full-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarFullOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-half-outline.d.ts b/react-icons/ti/star-half-outline.d.ts index 506d371624..6b9b736859 100644 --- a/react-icons/ti/star-half-outline.d.ts +++ b/react-icons/ti/star-half-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarHalfOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-half.d.ts b/react-icons/ti/star-half.d.ts index 77b1e03ee1..48442d42c5 100644 --- a/react-icons/ti/star-half.d.ts +++ b/react-icons/ti/star-half.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarHalf extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star-outline.d.ts b/react-icons/ti/star-outline.d.ts index 51761c4a8e..9041873a29 100644 --- a/react-icons/ti/star-outline.d.ts +++ b/react-icons/ti/star-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/star.d.ts b/react-icons/ti/star.d.ts index 47d9abf9f8..3d686a5509 100644 --- a/react-icons/ti/star.d.ts +++ b/react-icons/ti/star.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStar extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/starburst-outline.d.ts b/react-icons/ti/starburst-outline.d.ts index 89f22a38a0..19f8257d69 100644 --- a/react-icons/ti/starburst-outline.d.ts +++ b/react-icons/ti/starburst-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarburstOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/starburst.d.ts b/react-icons/ti/starburst.d.ts index 6f704427a8..50daa7c3ad 100644 --- a/react-icons/ti/starburst.d.ts +++ b/react-icons/ti/starburst.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStarburst extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/stopwatch.d.ts b/react-icons/ti/stopwatch.d.ts index 43a9c51ee2..ccf8c61ba7 100644 --- a/react-icons/ti/stopwatch.d.ts +++ b/react-icons/ti/stopwatch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiStopwatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/support.d.ts b/react-icons/ti/support.d.ts index af36f51d0c..a5d9f1f417 100644 --- a/react-icons/ti/support.d.ts +++ b/react-icons/ti/support.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiSupport extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tabs-outline.d.ts b/react-icons/ti/tabs-outline.d.ts index f463ce23bd..a9d701a2c7 100644 --- a/react-icons/ti/tabs-outline.d.ts +++ b/react-icons/ti/tabs-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTabsOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tag.d.ts b/react-icons/ti/tag.d.ts index cb8d9cdced..b7ebce6e2e 100644 --- a/react-icons/ti/tag.d.ts +++ b/react-icons/ti/tag.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTag extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tags.d.ts b/react-icons/ti/tags.d.ts index 003def5e02..7733b0ce90 100644 --- a/react-icons/ti/tags.d.ts +++ b/react-icons/ti/tags.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTags extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-large-outline.d.ts b/react-icons/ti/th-large-outline.d.ts index 476043f358..fec0fac8b7 100644 --- a/react-icons/ti/th-large-outline.d.ts +++ b/react-icons/ti/th-large-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThLargeOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-large.d.ts b/react-icons/ti/th-large.d.ts index e8321ddc96..d4f225e2b5 100644 --- a/react-icons/ti/th-large.d.ts +++ b/react-icons/ti/th-large.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThLarge extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-list-outline.d.ts b/react-icons/ti/th-list-outline.d.ts index 3ade28003c..3a6e7b020a 100644 --- a/react-icons/ti/th-list-outline.d.ts +++ b/react-icons/ti/th-list-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThListOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-list.d.ts b/react-icons/ti/th-list.d.ts index 2337e49595..5ea9446c30 100644 --- a/react-icons/ti/th-list.d.ts +++ b/react-icons/ti/th-list.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThList extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-menu-outline.d.ts b/react-icons/ti/th-menu-outline.d.ts index e303022e52..3e0c6199f9 100644 --- a/react-icons/ti/th-menu-outline.d.ts +++ b/react-icons/ti/th-menu-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThMenuOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-menu.d.ts b/react-icons/ti/th-menu.d.ts index a051fc81bf..8fce86b636 100644 --- a/react-icons/ti/th-menu.d.ts +++ b/react-icons/ti/th-menu.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThMenu extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-small-outline.d.ts b/react-icons/ti/th-small-outline.d.ts index ee8333c8dc..3e2586791c 100644 --- a/react-icons/ti/th-small-outline.d.ts +++ b/react-icons/ti/th-small-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThSmallOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/th-small.d.ts b/react-icons/ti/th-small.d.ts index 4e44e78794..e5e61cfb70 100644 --- a/react-icons/ti/th-small.d.ts +++ b/react-icons/ti/th-small.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThSmall extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thermometer.d.ts b/react-icons/ti/thermometer.d.ts index b513f44163..eae0049769 100644 --- a/react-icons/ti/thermometer.d.ts +++ b/react-icons/ti/thermometer.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThermometer extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-down.d.ts b/react-icons/ti/thumbs-down.d.ts index 23d345e4f0..b400214a0c 100644 --- a/react-icons/ti/thumbs-down.d.ts +++ b/react-icons/ti/thumbs-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThumbsDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-ok.d.ts b/react-icons/ti/thumbs-ok.d.ts index 08e7421282..cb931b0dbc 100644 --- a/react-icons/ti/thumbs-ok.d.ts +++ b/react-icons/ti/thumbs-ok.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThumbsOk extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/thumbs-up.d.ts b/react-icons/ti/thumbs-up.d.ts index 6a3fe07e0a..1cf8664694 100644 --- a/react-icons/ti/thumbs-up.d.ts +++ b/react-icons/ti/thumbs-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiThumbsUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tick-outline.d.ts b/react-icons/ti/tick-outline.d.ts index 6a5ffafd63..860b5e3b99 100644 --- a/react-icons/ti/tick-outline.d.ts +++ b/react-icons/ti/tick-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTickOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tick.d.ts b/react-icons/ti/tick.d.ts index 18a354b762..dd4bd7a435 100644 --- a/react-icons/ti/tick.d.ts +++ b/react-icons/ti/tick.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTick extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/ticket.d.ts b/react-icons/ti/ticket.d.ts index 8ac3c23ae5..1f7f9fa601 100644 --- a/react-icons/ti/ticket.d.ts +++ b/react-icons/ti/ticket.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTicket extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/time.d.ts b/react-icons/ti/time.d.ts index 4985b1ac80..2139bca590 100644 --- a/react-icons/ti/time.d.ts +++ b/react-icons/ti/time.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTime extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/times-outline.d.ts b/react-icons/ti/times-outline.d.ts index 6d1f708dd6..d3567177ea 100644 --- a/react-icons/ti/times-outline.d.ts +++ b/react-icons/ti/times-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTimesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/times.d.ts b/react-icons/ti/times.d.ts index eb52e976d8..9afba90efa 100644 --- a/react-icons/ti/times.d.ts +++ b/react-icons/ti/times.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTimes extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/trash.d.ts b/react-icons/ti/trash.d.ts index 2ea6d74897..78f3a3182e 100644 --- a/react-icons/ti/trash.d.ts +++ b/react-icons/ti/trash.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTrash extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/tree.d.ts b/react-icons/ti/tree.d.ts index 8e33ecc871..8bdd0df2b9 100644 --- a/react-icons/ti/tree.d.ts +++ b/react-icons/ti/tree.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiTree extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/upload-outline.d.ts b/react-icons/ti/upload-outline.d.ts index 1598f91a33..c66dcdcc5e 100644 --- a/react-icons/ti/upload-outline.d.ts +++ b/react-icons/ti/upload-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUploadOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/upload.d.ts b/react-icons/ti/upload.d.ts index c1397ba2b5..ffd8be2934 100644 --- a/react-icons/ti/upload.d.ts +++ b/react-icons/ti/upload.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUpload extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-add-outline.d.ts b/react-icons/ti/user-add-outline.d.ts index caa00e4959..c87470f20b 100644 --- a/react-icons/ti/user-add-outline.d.ts +++ b/react-icons/ti/user-add-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUserAddOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-add.d.ts b/react-icons/ti/user-add.d.ts index bd3df08c99..8575680546 100644 --- a/react-icons/ti/user-add.d.ts +++ b/react-icons/ti/user-add.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUserAdd extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-delete-outline.d.ts b/react-icons/ti/user-delete-outline.d.ts index 7bc763000c..656aa79c57 100644 --- a/react-icons/ti/user-delete-outline.d.ts +++ b/react-icons/ti/user-delete-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUserDeleteOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-delete.d.ts b/react-icons/ti/user-delete.d.ts index c7cedd6900..d647fffa64 100644 --- a/react-icons/ti/user-delete.d.ts +++ b/react-icons/ti/user-delete.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUserDelete extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user-outline.d.ts b/react-icons/ti/user-outline.d.ts index 9c507402cb..ed0b07e30f 100644 --- a/react-icons/ti/user-outline.d.ts +++ b/react-icons/ti/user-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUserOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/user.d.ts b/react-icons/ti/user.d.ts index 414ba3894b..6a1b217222 100644 --- a/react-icons/ti/user.d.ts +++ b/react-icons/ti/user.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiUser extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-android.d.ts b/react-icons/ti/vendor-android.d.ts index 4c57ccee33..a893acc614 100644 --- a/react-icons/ti/vendor-android.d.ts +++ b/react-icons/ti/vendor-android.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVendorAndroid extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-apple.d.ts b/react-icons/ti/vendor-apple.d.ts index 436c2caada..aecbcd7478 100644 --- a/react-icons/ti/vendor-apple.d.ts +++ b/react-icons/ti/vendor-apple.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVendorApple extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/vendor-microsoft.d.ts b/react-icons/ti/vendor-microsoft.d.ts index 10dd1a07a1..92d3c75285 100644 --- a/react-icons/ti/vendor-microsoft.d.ts +++ b/react-icons/ti/vendor-microsoft.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVendorMicrosoft extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/video-outline.d.ts b/react-icons/ti/video-outline.d.ts index 2ccf448259..f966dede09 100644 --- a/react-icons/ti/video-outline.d.ts +++ b/react-icons/ti/video-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVideoOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/video.d.ts b/react-icons/ti/video.d.ts index 3b1a19e0f7..a5c261b64a 100644 --- a/react-icons/ti/video.d.ts +++ b/react-icons/ti/video.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVideo extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-down.d.ts b/react-icons/ti/volume-down.d.ts index 963d104757..148467fe98 100644 --- a/react-icons/ti/volume-down.d.ts +++ b/react-icons/ti/volume-down.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVolumeDown extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-mute.d.ts b/react-icons/ti/volume-mute.d.ts index a33e76bcea..61b4dbe8e1 100644 --- a/react-icons/ti/volume-mute.d.ts +++ b/react-icons/ti/volume-mute.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVolumeMute extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume-up.d.ts b/react-icons/ti/volume-up.d.ts index 9cc3c4f5f2..f8416b96f2 100644 --- a/react-icons/ti/volume-up.d.ts +++ b/react-icons/ti/volume-up.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVolumeUp extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/volume.d.ts b/react-icons/ti/volume.d.ts index c61dd7c41f..ca4e3a2e47 100644 --- a/react-icons/ti/volume.d.ts +++ b/react-icons/ti/volume.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiVolume extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/warning-outline.d.ts b/react-icons/ti/warning-outline.d.ts index cef6ac7f42..7394a90d91 100644 --- a/react-icons/ti/warning-outline.d.ts +++ b/react-icons/ti/warning-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWarningOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/warning.d.ts b/react-icons/ti/warning.d.ts index 341e792948..9a3f2467f0 100644 --- a/react-icons/ti/warning.d.ts +++ b/react-icons/ti/warning.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWarning extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/watch.d.ts b/react-icons/ti/watch.d.ts index 4160fbae7e..080afa00f9 100644 --- a/react-icons/ti/watch.d.ts +++ b/react-icons/ti/watch.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWatch extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/waves-outline.d.ts b/react-icons/ti/waves-outline.d.ts index 9bea5539fb..9eee0b273a 100644 --- a/react-icons/ti/waves-outline.d.ts +++ b/react-icons/ti/waves-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWavesOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/waves.d.ts b/react-icons/ti/waves.d.ts index cc2c664129..b151f636ac 100644 --- a/react-icons/ti/waves.d.ts +++ b/react-icons/ti/waves.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWaves extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-cloudy.d.ts b/react-icons/ti/weather-cloudy.d.ts index cc5399e067..297ecce599 100644 --- a/react-icons/ti/weather-cloudy.d.ts +++ b/react-icons/ti/weather-cloudy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-downpour.d.ts b/react-icons/ti/weather-downpour.d.ts index 657584a211..cb9e625633 100644 --- a/react-icons/ti/weather-downpour.d.ts +++ b/react-icons/ti/weather-downpour.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherDownpour extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-night.d.ts b/react-icons/ti/weather-night.d.ts index 524c0218d7..4701968c4e 100644 --- a/react-icons/ti/weather-night.d.ts +++ b/react-icons/ti/weather-night.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherNight extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-partly-sunny.d.ts b/react-icons/ti/weather-partly-sunny.d.ts index ebc1cc3498..6942efe761 100644 --- a/react-icons/ti/weather-partly-sunny.d.ts +++ b/react-icons/ti/weather-partly-sunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherPartlySunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-shower.d.ts b/react-icons/ti/weather-shower.d.ts index ab787b977a..4cbff134e9 100644 --- a/react-icons/ti/weather-shower.d.ts +++ b/react-icons/ti/weather-shower.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherShower extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-snow.d.ts b/react-icons/ti/weather-snow.d.ts index 18ba76ac43..9c237efa7a 100644 --- a/react-icons/ti/weather-snow.d.ts +++ b/react-icons/ti/weather-snow.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherSnow extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-stormy.d.ts b/react-icons/ti/weather-stormy.d.ts index 18d125a931..033a19ee91 100644 --- a/react-icons/ti/weather-stormy.d.ts +++ b/react-icons/ti/weather-stormy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherStormy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-sunny.d.ts b/react-icons/ti/weather-sunny.d.ts index e067521c0c..848024f799 100644 --- a/react-icons/ti/weather-sunny.d.ts +++ b/react-icons/ti/weather-sunny.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherSunny extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-windy-cloudy.d.ts b/react-icons/ti/weather-windy-cloudy.d.ts index a361569a87..2cacc972e8 100644 --- a/react-icons/ti/weather-windy-cloudy.d.ts +++ b/react-icons/ti/weather-windy-cloudy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherWindyCloudy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/weather-windy.d.ts b/react-icons/ti/weather-windy.d.ts index d3869fbf25..ffd27bd865 100644 --- a/react-icons/ti/weather-windy.d.ts +++ b/react-icons/ti/weather-windy.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWeatherWindy extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wi-fi-outline.d.ts b/react-icons/ti/wi-fi-outline.d.ts index b20aff78e6..6fe84be3b7 100644 --- a/react-icons/ti/wi-fi-outline.d.ts +++ b/react-icons/ti/wi-fi-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWiFiOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wi-fi.d.ts b/react-icons/ti/wi-fi.d.ts index d22c056e18..0c4049b6cb 100644 --- a/react-icons/ti/wi-fi.d.ts +++ b/react-icons/ti/wi-fi.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWiFi extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/wine.d.ts b/react-icons/ti/wine.d.ts index 229c168a68..c5913e8196 100644 --- a/react-icons/ti/wine.d.ts +++ b/react-icons/ti/wine.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWine extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/world-outline.d.ts b/react-icons/ti/world-outline.d.ts index 01eebc2c91..77ddf5e93e 100644 --- a/react-icons/ti/world-outline.d.ts +++ b/react-icons/ti/world-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWorldOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/world.d.ts b/react-icons/ti/world.d.ts index 641377c5ee..8f628e7f18 100644 --- a/react-icons/ti/world.d.ts +++ b/react-icons/ti/world.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiWorld extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-in-outline.d.ts b/react-icons/ti/zoom-in-outline.d.ts index c2bf90e19b..440c211498 100644 --- a/react-icons/ti/zoom-in-outline.d.ts +++ b/react-icons/ti/zoom-in-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoomInOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-in.d.ts b/react-icons/ti/zoom-in.d.ts index 4162828821..47dcc68a9a 100644 --- a/react-icons/ti/zoom-in.d.ts +++ b/react-icons/ti/zoom-in.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoomIn extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-out-outline.d.ts b/react-icons/ti/zoom-out-outline.d.ts index 040d208f96..221a5b97cd 100644 --- a/react-icons/ti/zoom-out-outline.d.ts +++ b/react-icons/ti/zoom-out-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoomOutOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-out.d.ts b/react-icons/ti/zoom-out.d.ts index b8f83cf228..ed35bdfcb4 100644 --- a/react-icons/ti/zoom-out.d.ts +++ b/react-icons/ti/zoom-out.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoomOut extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom-outline.d.ts b/react-icons/ti/zoom-outline.d.ts index acc1270230..95126e1e50 100644 --- a/react-icons/ti/zoom-outline.d.ts +++ b/react-icons/ti/zoom-outline.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoomOutline extends React.Component { } \ No newline at end of file diff --git a/react-icons/ti/zoom.d.ts b/react-icons/ti/zoom.d.ts index 994301ba74..b7e6b69c55 100644 --- a/react-icons/ti/zoom.d.ts +++ b/react-icons/ti/zoom.d.ts @@ -1,3 +1,5 @@ +// TypeScript Version: 2.1 + import * as React from 'react'; import { IconBaseProps } from 'react-icon-base'; export default class TiZoom extends React.Component { } \ No newline at end of file From 2265316a1015ec5d89aec54f73f2b26e99f16527 Mon Sep 17 00:00:00 2001 From: Larry Bahr Date: Thu, 2 Feb 2017 17:03:43 -0600 Subject: [PATCH 098/231] Added cordova-plugin-device-name Added cordova-plugin-device-name type definitions --- cordova-plugin-device-name/README.md | 8 ++++++ .../cordova-plugin-device-name-tests.ts | 4 +++ cordova-plugin-device-name/index.d.ts | 26 +++++++++++++++++++ cordova-plugin-device-name/tsconfig.json | 23 ++++++++++++++++ 4 files changed, 61 insertions(+) create mode 100644 cordova-plugin-device-name/README.md create mode 100644 cordova-plugin-device-name/cordova-plugin-device-name-tests.ts create mode 100644 cordova-plugin-device-name/index.d.ts create mode 100644 cordova-plugin-device-name/tsconfig.json diff --git a/cordova-plugin-device-name/README.md b/cordova-plugin-device-name/README.md new file mode 100644 index 0000000000..6826b06c32 --- /dev/null +++ b/cordova-plugin-device-name/README.md @@ -0,0 +1,8 @@ +# Installation +> `npm install --save @types/cordova-plugin-device-name` + +# Summary +This package contains type definitions for cordova-plugin-device-name (https://www.npmjs.com/package/cordova-plugin-device-name) + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/cordova-plugin-device-name diff --git a/cordova-plugin-device-name/cordova-plugin-device-name-tests.ts b/cordova-plugin-device-name/cordova-plugin-device-name-tests.ts new file mode 100644 index 0000000000..c101f14d97 --- /dev/null +++ b/cordova-plugin-device-name/cordova-plugin-device-name-tests.ts @@ -0,0 +1,4 @@ +/// + +var deviceName = cordova.plugins.deviceName; +console.log(deviceName.name) // e.g: Becvert's iPad diff --git a/cordova-plugin-device-name/index.d.ts b/cordova-plugin-device-name/index.d.ts new file mode 100644 index 0000000000..479f443cfd --- /dev/null +++ b/cordova-plugin-device-name/index.d.ts @@ -0,0 +1,26 @@ +// Type definitions for cordova-plugin-device-name v1.1.0 +// Project: https://www.npmjs.com/package/cordova-plugin-device-name +// Definitions by: Larry Bahr +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// +// Licensed under the MIT license. + +interface CordovaPlugins { + /** + * cordova-plugin-device-name interface + */ + deviceName: CordovaPluginDeviceName.CordovaPluginDeviceName; +} + +/** + * Keep the type global namespace clean by using a module + */ +declare module CordovaPluginDeviceName { + interface CordovaPluginDeviceName { + /** + * User-friendly name of the device. + * @example cordova.plugins.deviceName.name // e.g: Larry's Android + */ + name: string; + } +} \ No newline at end of file diff --git a/cordova-plugin-device-name/tsconfig.json b/cordova-plugin-device-name/tsconfig.json new file mode 100644 index 0000000000..5012f628be --- /dev/null +++ b/cordova-plugin-device-name/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": false, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "cordova-plugin-device-name-tests.ts" + ] +} \ No newline at end of file From 0ae246ab30e407763fbaf3ba8bb107dfea8ac253 Mon Sep 17 00:00:00 2001 From: Justin Bay Date: Thu, 2 Feb 2017 19:14:32 -0500 Subject: [PATCH 099/231] Enzyme: .filter(selector) returns `this` add strongly typed prop selector for filter --- enzyme/enzyme-tests.tsx | 8 ++++---- enzyme/index.d.ts | 14 ++++++-------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/enzyme/enzyme-tests.tsx b/enzyme/enzyme-tests.tsx index 120365eab4..82a8dc9822 100644 --- a/enzyme/enzyme-tests.tsx +++ b/enzyme/enzyme-tests.tsx @@ -60,8 +60,8 @@ namespace ShallowWrapperTest { function test_filter() { shallowWrapper = shallowWrapper.filter(MyComponent); - statelessWrapper = shallowWrapper.filter(MyStatelessComponent); - shallowWrapper = shallowWrapper.filter({ prop: 'value' }); + statelessWrapper = statelessWrapper.filter(MyStatelessComponent); + shallowWrapper = shallowWrapper.filter({ numberProp: 12 }); elementWrapper = shallowWrapper.filter('.selector'); } @@ -384,8 +384,8 @@ namespace ReactWrapperTest { function test_filter() { reactWrapper = reactWrapper.filter(MyComponent); - statelessWrapper = reactWrapper.filter(MyStatelessComponent); - reactWrapper = reactWrapper.filter({ prop: 'myprop' }); + statelessWrapper = statelessWrapper.filter(MyStatelessComponent); + reactWrapper = reactWrapper.filter({ numberProp: 12 }); elementWrapper = reactWrapper.filter('.selector'); } diff --git a/enzyme/index.d.ts b/enzyme/index.d.ts index 7559985e21..b939fd46d9 100644 --- a/enzyme/index.d.ts +++ b/enzyme/index.d.ts @@ -352,10 +352,9 @@ export interface ShallowWrapper extends CommonWrapper { * Removes nodes in the current wrapper that do not match the provided selector. * @param selector The selector to match. */ - filter(component: ComponentClass): ShallowWrapper; - filter(statelessComponent: StatelessComponent): ShallowWrapper; - filter(props: EnzymePropSelector): ShallowWrapper; - filter(selector: string): ShallowWrapper; + filter(component: ComponentClass | StatelessComponent): this; + filter(props: Partial

): this; + filter(selector: string): this; /** * Finds every node in the render tree that returns true for the provided predicate function. @@ -459,10 +458,9 @@ export interface ReactWrapper extends CommonWrapper { * Removes nodes in the current wrapper that do not match the provided selector. * @param selector The selector to match. */ - filter(component: ComponentClass): ReactWrapper; - filter(statelessComponent: StatelessComponent): ReactWrapper; - filter(props: EnzymePropSelector): ReactWrapper; - filter(selector: string): ReactWrapper; + filter(component: ComponentClass | StatelessComponent): this; + filter(props: Partial

): this; + filter(selector: string): this; /** * Returns a new wrapper with all of the children of the node(s) in the current wrapper. Optionally, a selector From b802fda7506e1a2be2e7080b2082fd009176a82b Mon Sep 17 00:00:00 2001 From: Benjamin Shope Date: Thu, 2 Feb 2017 16:37:27 -0800 Subject: [PATCH 100/231] Fix draftjs parmater --- draft-js/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft-js/index.d.ts b/draft-js/index.d.ts index e02044a006..1805a17ab0 100644 --- a/draft-js/index.d.ts +++ b/draft-js/index.d.ts @@ -458,7 +458,7 @@ declare namespace Draft { entityMap: { [key: string]: RawDraftEntity }; } - function convertFromHTMLtoContentBlocks(html: string, DOMBuilder: Function, blockRenderMap?: DraftBlockRenderMap): Array; + function convertFromHTMLtoContentBlocks(html: string, DOMBuilder?: Function, blockRenderMap?: DraftBlockRenderMap): Array; function convertFromRawToDraftState(rawState: RawDraftContentState): ContentState; function convertFromDraftStateToRaw(contentState: ContentState): RawDraftContentState; } From 495a0e355ecd1bebd45f562bf7f084222eeb49b7 Mon Sep 17 00:00:00 2001 From: Sindre Moen Date: Fri, 3 Feb 2017 14:01:07 +0100 Subject: [PATCH 101/231] =?UTF-8?q?Add=20=E2=80=9Cwhere=E2=80=9D=20selecto?= =?UTF-8?q?r=20version=20of=20Document#populate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mongoose/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mongoose/index.d.ts b/mongoose/index.d.ts index 56ad48e617..0ede2141a8 100644 --- a/mongoose/index.d.ts +++ b/mongoose/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for Mongoose 4.7.0 // Project: http://mongoosejs.com/ -// Definitions by: simonxca , horiuchi +// Definitions by: simonxca , horiuchi , sindrenm // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// @@ -994,10 +994,12 @@ declare module "mongoose" { * call execPopulate(). Passing the same path a second time will overwrite * the previous path options. See Model.populate() for explaination of options. * @param path The path to populate or an options object + * @param names The properties to fetch from the populated document * @param callback When passed, population is invoked */ populate(callback: (err: any, res: this) => void): this; populate(path: string, callback?: (err: any, res: this) => void): this; + populate(path: string, names: string, callback?: (err: any, res: this) => void): this; populate(options: ModelPopulateOptions | ModelPopulateOptions[], callback?: (err: any, res: this) => void): this; /** Gets _id(s) used during population of the given path. If the path was not populated, undefined is returned. */ From d0128ad5161c0975513ca4ff745f3ba9e8f2b65d Mon Sep 17 00:00:00 2001 From: Artur Eshenbrener Date: Fri, 3 Feb 2017 18:13:17 +0300 Subject: [PATCH 102/231] react: make defaultProps Optional Actually, defaultProps is `Optional

` --- react/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/index.d.ts b/react/index.d.ts index f25e5c0afd..e929e5ed7a 100644 --- a/react/index.d.ts +++ b/react/index.d.ts @@ -207,7 +207,7 @@ declare namespace React { (props: P & { children?: ReactNode }, context?: any): ReactElement | null; propTypes?: ValidationMap

; contextTypes?: ValidationMap; - defaultProps?: P; + defaultProps?: Partial

; displayName?: string; } @@ -216,7 +216,7 @@ declare namespace React { propTypes?: ValidationMap

; contextTypes?: ValidationMap; childContextTypes?: ValidationMap; - defaultProps?: P; + defaultProps?: Partial

; displayName?: string; } From cca2a80dda648c3ebfc5fac757f056086f3e4c33 Mon Sep 17 00:00:00 2001 From: Francis Filion Date: Fri, 3 Feb 2017 13:19:39 -0500 Subject: [PATCH 103/231] In CouchDB 2.0, the update_seq has become a string. --- pouchdb-core/index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pouchdb-core/index.d.ts b/pouchdb-core/index.d.ts index 9797443f95..f591e521ca 100644 --- a/pouchdb-core/index.d.ts +++ b/pouchdb-core/index.d.ts @@ -45,7 +45,7 @@ declare namespace PouchDB { doc_count: number; /** Sequence number of the database. It starts at 0 and gets incremented every time a document is added or modified */ - update_seq: number; + update_seq: number | string; } interface Revision { @@ -221,8 +221,9 @@ declare namespace PouchDB { /** * Start the results from the change immediately after the given sequence number. * You can also pass `'now'` if you want only new changes (when `live` is `true`). + * */ - since?: 'now' | number; + since?: 'now' | number | string; /** * Request timeout (in milliseconds). From cae031eac4fb2ec35eef4fa8d3bdf8f5e9d6cf34 Mon Sep 17 00:00:00 2001 From: Larry Bahr Date: Fri, 3 Feb 2017 13:13:36 -0600 Subject: [PATCH 104/231] Added cordova_app_version_plugin Added type definitions for https://www.npmjs.com/package/cordova_app_version_plugin --- cordova_app_version_plugin/README.md | 8 ++++++ .../cordova_app_version_plugin-tests.ts | 3 +++ cordova_app_version_plugin/index.d.ts | 26 +++++++++++++++++++ cordova_app_version_plugin/tsconfig.json | 23 ++++++++++++++++ 4 files changed, 60 insertions(+) create mode 100644 cordova_app_version_plugin/README.md create mode 100644 cordova_app_version_plugin/cordova_app_version_plugin-tests.ts create mode 100644 cordova_app_version_plugin/index.d.ts create mode 100644 cordova_app_version_plugin/tsconfig.json diff --git a/cordova_app_version_plugin/README.md b/cordova_app_version_plugin/README.md new file mode 100644 index 0000000000..17e7e72ad3 --- /dev/null +++ b/cordova_app_version_plugin/README.md @@ -0,0 +1,8 @@ +# Installation +> `npm install --save @types/cordova_app_version_plugin` + +# Summary +This package contains type definitions for cordova_app_version_plugin (https://www.npmjs.com/package/cordova_app_version_plugin) + +# Details +Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/cordova_app_version_plugin diff --git a/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts b/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts new file mode 100644 index 0000000000..5e4eb16e66 --- /dev/null +++ b/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts @@ -0,0 +1,3 @@ +/// + +var appVersion = window.cordova.plugins.version.getAppVersion(); // e.g. "1.5.0" diff --git a/cordova_app_version_plugin/index.d.ts b/cordova_app_version_plugin/index.d.ts new file mode 100644 index 0000000000..b8a70216a6 --- /dev/null +++ b/cordova_app_version_plugin/index.d.ts @@ -0,0 +1,26 @@ +// Type definitions for cordova_app_version_plugin v0.2.6 +// Project: https://www.npmjs.com/package/cordova_app_version_plugin +// Definitions by: Larry Bahr +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// +// Licensed under the MIT license. + +interface CordovaPlugins { + /** + * cordova_app_version_plugin interface + */ + version: CordovaAppVersionPlugin.CordovaAppVersionPlugin; +} + +/** + * Keep the type global namespace clean by using a module + */ +declare module CordovaAppVersionPlugin { + interface CordovaAppVersionPlugin { + /** + * App version from config.xml's version (e.g. ) + * @example window.cordova.plugins.version.getAppVersion() // e.g: "1.5.0" + */ + getAppVersion(): string; + } +} \ No newline at end of file diff --git a/cordova_app_version_plugin/tsconfig.json b/cordova_app_version_plugin/tsconfig.json new file mode 100644 index 0000000000..13e07865d9 --- /dev/null +++ b/cordova_app_version_plugin/tsconfig.json @@ -0,0 +1,23 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": false, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "cordova_app_version_plugin-tests.ts" + ] +} \ No newline at end of file From 896c3963361bee686e91a34c82a0f4e1d4fa63b5 Mon Sep 17 00:00:00 2001 From: Larry Bahr Date: Fri, 3 Feb 2017 13:18:01 -0600 Subject: [PATCH 105/231] Revert "Added cordova_app_version_plugin" This reverts commit cae031eac4fb2ec35eef4fa8d3bdf8f5e9d6cf34. --- cordova_app_version_plugin/README.md | 8 ------ .../cordova_app_version_plugin-tests.ts | 3 --- cordova_app_version_plugin/index.d.ts | 26 ------------------- cordova_app_version_plugin/tsconfig.json | 23 ---------------- 4 files changed, 60 deletions(-) delete mode 100644 cordova_app_version_plugin/README.md delete mode 100644 cordova_app_version_plugin/cordova_app_version_plugin-tests.ts delete mode 100644 cordova_app_version_plugin/index.d.ts delete mode 100644 cordova_app_version_plugin/tsconfig.json diff --git a/cordova_app_version_plugin/README.md b/cordova_app_version_plugin/README.md deleted file mode 100644 index 17e7e72ad3..0000000000 --- a/cordova_app_version_plugin/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Installation -> `npm install --save @types/cordova_app_version_plugin` - -# Summary -This package contains type definitions for cordova_app_version_plugin (https://www.npmjs.com/package/cordova_app_version_plugin) - -# Details -Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/cordova_app_version_plugin diff --git a/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts b/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts deleted file mode 100644 index 5e4eb16e66..0000000000 --- a/cordova_app_version_plugin/cordova_app_version_plugin-tests.ts +++ /dev/null @@ -1,3 +0,0 @@ -/// - -var appVersion = window.cordova.plugins.version.getAppVersion(); // e.g. "1.5.0" diff --git a/cordova_app_version_plugin/index.d.ts b/cordova_app_version_plugin/index.d.ts deleted file mode 100644 index b8a70216a6..0000000000 --- a/cordova_app_version_plugin/index.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Type definitions for cordova_app_version_plugin v0.2.6 -// Project: https://www.npmjs.com/package/cordova_app_version_plugin -// Definitions by: Larry Bahr -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// -// Licensed under the MIT license. - -interface CordovaPlugins { - /** - * cordova_app_version_plugin interface - */ - version: CordovaAppVersionPlugin.CordovaAppVersionPlugin; -} - -/** - * Keep the type global namespace clean by using a module - */ -declare module CordovaAppVersionPlugin { - interface CordovaAppVersionPlugin { - /** - * App version from config.xml's version (e.g. ) - * @example window.cordova.plugins.version.getAppVersion() // e.g: "1.5.0" - */ - getAppVersion(): string; - } -} \ No newline at end of file diff --git a/cordova_app_version_plugin/tsconfig.json b/cordova_app_version_plugin/tsconfig.json deleted file mode 100644 index 13e07865d9..0000000000 --- a/cordova_app_version_plugin/tsconfig.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "compilerOptions": { - "module": "commonjs", - "lib": [ - "es6", - "dom" - ], - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": false, - "baseUrl": "../", - "typeRoots": [ - "../" - ], - "types": [], - "noEmit": true, - "forceConsistentCasingInFileNames": true - }, - "files": [ - "index.d.ts", - "cordova_app_version_plugin-tests.ts" - ] -} \ No newline at end of file From f97b35d128d900c9ab3aa0cb431b1517ea48881c Mon Sep 17 00:00:00 2001 From: Mitchell Wills Date: Fri, 3 Feb 2017 11:02:29 -0800 Subject: [PATCH 106/231] Add includeAuthorizationData parameter to gapi.auth2 GoogleUser.getAuthResponse --- gapi.auth2/gapi.auth2-tests.ts | 6 ++++++ gapi.auth2/index.d.ts | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gapi.auth2/gapi.auth2-tests.ts b/gapi.auth2/gapi.auth2-tests.ts index a3ba839a36..2cfaa49980 100644 --- a/gapi.auth2/gapi.auth2-tests.ts +++ b/gapi.auth2/gapi.auth2-tests.ts @@ -19,6 +19,12 @@ function test_getAuthInstance(){ var auth = gapi.auth2.getAuthInstance(); } +function test_getAuthResponse(){ + var user = gapi.auth2.getAuthInstance().currentUser.get(); + var authResponse = user.getAuthResponse(); + var authResponseWithAuth = user.getAuthResponse(true); +} + function test_render(){ var success = (googleUser: gapi.auth2.GoogleUser): void => { console.log(googleUser); diff --git a/gapi.auth2/index.d.ts b/gapi.auth2/index.d.ts index 593cae78d8..6037f0238e 100644 --- a/gapi.auth2/index.d.ts +++ b/gapi.auth2/index.d.ts @@ -151,7 +151,7 @@ declare namespace gapi.auth2 { /** * Get the response object from the user's auth session. */ - getAuthResponse(): AuthResponse; + getAuthResponse(includeAuthorizationData?: boolean): AuthResponse; /** * Returns true if the user granted the specified scopes. From 1b19290993e68920c4123aea25980ae335ca3f41 Mon Sep 17 00:00:00 2001 From: yyc <395976266@qq.com> Date: Sat, 4 Feb 2017 17:54:55 +0800 Subject: [PATCH 107/231] fix: fix wonder-commonlib,wonder-frp->index.d.ts->global type --- wonder-commonlib/index.d.ts | 5 +++-- wonder-frp/index.d.ts | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/wonder-commonlib/index.d.ts b/wonder-commonlib/index.d.ts index 464b6ada4e..9c6881920d 100644 --- a/wonder-commonlib/index.d.ts +++ b/wonder-commonlib/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for wonder-commonlib 0.1 +// Type definitions for wonder-commonlib 0.1.1 // Project: https://github.com/yyc-git/Wonder-CommonLib // Definitions by: YYC // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -21,7 +21,8 @@ declare module wdCb { } } -declare var global: any, window: Window; +declare var global:NodeJS.Global,window:Window; + declare module wdCb { var root: any; } diff --git a/wonder-frp/index.d.ts b/wonder-frp/index.d.ts index c7459d6690..bb9b146112 100644 --- a/wonder-frp/index.d.ts +++ b/wonder-frp/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for wonder-frp 0.1 +// Type definitions for wonder-frp 0.1.1 // Project: https://github.com/yyc-git/Wonder-FRP // Definitions by: YYC // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -103,7 +103,7 @@ declare module wdFrp { } } -declare var global: any, window: Window; +declare var global:NodeJS.Global,window:Window; declare module wdFrp { var root: any; } From 1be45766a6d6f0c2de3bcf0bd9e76ed93b806980 Mon Sep 17 00:00:00 2001 From: yyc <395976266@qq.com> Date: Sat, 4 Feb 2017 18:53:07 +0800 Subject: [PATCH 108/231] fix: reference to node --- wonder-commonlib/index.d.ts | 3 +++ wonder-frp/index.d.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/wonder-commonlib/index.d.ts b/wonder-commonlib/index.d.ts index 9c6881920d..1cad038d52 100644 --- a/wonder-commonlib/index.d.ts +++ b/wonder-commonlib/index.d.ts @@ -3,6 +3,9 @@ // Definitions by: YYC // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + declare module wdCb { class JudgeUtils { static isArray(arr: any): boolean; diff --git a/wonder-frp/index.d.ts b/wonder-frp/index.d.ts index bb9b146112..00910bc80d 100644 --- a/wonder-frp/index.d.ts +++ b/wonder-frp/index.d.ts @@ -4,6 +4,7 @@ // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// +/// declare module wdFrp { class JudgeUtils extends wdCb.JudgeUtils { From e6bfafb4761b76c61e1d6472b2480eab10765105 Mon Sep 17 00:00:00 2001 From: Warren Seymour Date: Wed, 11 Jan 2017 15:07:21 +0000 Subject: [PATCH 109/231] Add type definition for `hapi-auth-jwt2` --- hapi-auth-jwt2/hapi-auth-jwt2-tests.ts | 41 ++++++++ hapi-auth-jwt2/index.d.ts | 126 +++++++++++++++++++++++++ hapi-auth-jwt2/tsconfig.json | 20 ++++ hapi-auth-jwt2/tslint.json | 1 + 4 files changed, 188 insertions(+) create mode 100644 hapi-auth-jwt2/hapi-auth-jwt2-tests.ts create mode 100644 hapi-auth-jwt2/index.d.ts create mode 100644 hapi-auth-jwt2/tsconfig.json create mode 100644 hapi-auth-jwt2/tslint.json diff --git a/hapi-auth-jwt2/hapi-auth-jwt2-tests.ts b/hapi-auth-jwt2/hapi-auth-jwt2-tests.ts new file mode 100644 index 0000000000..65bc862e64 --- /dev/null +++ b/hapi-auth-jwt2/hapi-auth-jwt2-tests.ts @@ -0,0 +1,41 @@ +import Hapi = require('hapi'); +import hapiAuthJwt2 = require('hapi-auth-jwt2'); + +var server = new Hapi.Server(); +server.connection({port: 8000}); + +interface User { + id: number; + name: string; +} + +interface Users { + [id: number]: User +} + +var users:Users = { + 1: { + id: 1, + name: 'Test User' + } +}; + +var validate = function(decoded: User, request: Hapi.Request, callback: hapiAuthJwt2.ValidateCallback) { + if (!users[decoded.id]) { + return callback(null, false); + } + + return callback(null, true); +} + +server.register(hapiAuthJwt2, function(err) { + server.auth.strategy('jwt', 'jwt', { + key: 'NeverShareYourSecret', + validateFunc: validate, + verifyOptions: { + algorithms: ['HS256'] + } + }); +}); + +server.start(); diff --git a/hapi-auth-jwt2/index.d.ts b/hapi-auth-jwt2/index.d.ts new file mode 100644 index 0000000000..1bcbbc817e --- /dev/null +++ b/hapi-auth-jwt2/index.d.ts @@ -0,0 +1,126 @@ +// Type definitions for hapi-auth-jwt2 7.0 +// Project: http://github.com/dwyl/hapi-auth-jwt2 +// Definitions by: Warren Seymour +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +import {Request, Response} from 'hapi'; + +/** + * A key lookup function + * + * @param decoded the *decoded* but *unverified* JWT received from client + * @param callback the key lookup callback + */ +type KeyLookup = (decoded: any, callback: KeyLookupCallback) => void; + +/** + * Called when key lookup function has completed + * + * @param err an internal error + * @param key the secret key + * @param extraInfo any additional information that you would like + * to use in `validateFunc` which can be accessed via + * `request.plugins['hapi-auth-jwt2'].extraInfo` + */ +type KeyLookupCallback = (err: any, key: string, extraInfo?: any) => void; + +/** + * Called when Validation has completed + * + * @param err an internal error + * @param valid `true` if the JWT was valid, otherwise `false` + * @param credentials alternative credentials to be set instead of `decoded` + */ +type ValidateCallback = (err: any, valid: boolean, credentials?: any) => void; + +/** + * Options passed to `hapi.auth.strategy` when this plugin is used + */ +export interface Options { + /** + * The secret key used to check the signature of the token *or* a *key lookup function* + */ + key?: string | KeyLookup; + + /** + * The function which is run once the Token has been decoded + * + * @param decoded the *decoded* and *verified* JWT received from the client in *request.headers.authorization* + * @param request the original *request* received from the client + * @param callback the validation callback + */ + validateFunc(decoded: {}, request: Request, callback: ValidateCallback): void; + + /** + * Settings to define how tokens are verified by the jsonwebtoken library + */ + verifyOptions?: { + /** + * Ignore expired tokens + */ + ignoreExpiration?: boolean; + + /** + * Do not enforce token audience + */ + audience?: boolean; + + /** + * Do not require the issuer to be valid + */ + issuer?: boolean; + + /** + * List of allowed algorithms + */ + algorithms?: string[]; + }; + + /** + * function called to decorate the response with authentication headers + * before the response headers or payload is written + * + * @param request the Request object + * @param reply is called if an error occurred + */ + responseFunc?(request: Request, reply: (err: any, response: Response) => void): void; + + /** + * If you prefer to pass your token via url, simply add a token url + * parameter to your request or use a custom parameter by setting `urlKey. + * To disable the url parameter set urlKey to `false` or ''. + * @default 'token' + */ + urlKey?: string | boolean; + + /** + * If you prefer to set your own cookie key or your project has a cookie + * called 'token' for another purpose, you can set a custom key for your + * cookie by setting `options.cookieKey='yourkeyhere'`. To disable cookies + * set cookieKey to `false` or ''. + * @default 'token' + */ + cookieKey?: string | boolean; + + /** + * If you want to set a custom key for your header token use the + * `headerKey` option. To disable header token set headerKey to `false` or + * ''. + * @default 'authorization' + */ + headerKey?: string | boolean; + + /** + * Allow custom token type, e.g. `Authorization: 12345678` + */ + tokenType?: string; + + /** + * Set to `true` to receive the complete token (`decoded.header`, + * `decoded.payload` and `decoded.signature`) as decoded argument to key + * lookup and `verifyFunc` callbacks (*not `validateFunc`*) + * @default false + */ + complete?: boolean; +} + +export default function hapiAuthJwt2(): void; diff --git a/hapi-auth-jwt2/tsconfig.json b/hapi-auth-jwt2/tsconfig.json new file mode 100644 index 0000000000..764570cbac --- /dev/null +++ b/hapi-auth-jwt2/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "hapi-auth-jwt2-tests.ts" + ] +} diff --git a/hapi-auth-jwt2/tslint.json b/hapi-auth-jwt2/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/hapi-auth-jwt2/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 2e5b5fa26748da6866af358de89788f89cb11e2e Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Sat, 4 Feb 2017 06:48:49 -0500 Subject: [PATCH 110/231] fix(passport-local-mongoose): callbacks signatures See https://github.com/saintedlama/passport-local-mongoose/blob/master/index.js#L254 and see https://github.com/saintedlama/passport-local-mongoose/blob/master/index.js#L294 --- passport-local-mongoose/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passport-local-mongoose/index.d.ts b/passport-local-mongoose/index.d.ts index eabe00f978..5d59411de8 100644 --- a/passport-local-mongoose/index.d.ts +++ b/passport-local-mongoose/index.d.ts @@ -20,8 +20,8 @@ declare module 'mongoose' { authenticate(): (username: string, password: string, cb: (err: any, res: T, error: any) => void) => void; serializeUser(): (user: PassportLocalModel, cb: (err: any) => void) => void; deserializeUser(): (username: string, cb: (err: any) => void) => void; - register(user: T, password: string, cb: (err: any) => void): void; - findByUsername(username: string, selectHashSaltFields: boolean, cb: (err: any) => void): any; + register(user: T, password: string, cb: (err: any, account: any) => void): void; + findByUsername(username: string, selectHashSaltFields: boolean, cb: (err: any, account: any) => void): any; createStrategy(): passportLocal.Strategy; } From 6435478e4d1c6eb147c758d88cb00b938d9c16da Mon Sep 17 00:00:00 2001 From: TANAKA Koichi Date: Sun, 5 Feb 2017 01:39:17 +0900 Subject: [PATCH 111/231] Add definition for env-to-object --- env-to-object/env-to-object-tests.ts | 33 ++++++++++++++++++++++++++ env-to-object/index.d.ts | 35 ++++++++++++++++++++++++++++ env-to-object/tsconfig.json | 20 ++++++++++++++++ env-to-object/tslint.json | 1 + 4 files changed, 89 insertions(+) create mode 100644 env-to-object/env-to-object-tests.ts create mode 100644 env-to-object/index.d.ts create mode 100644 env-to-object/tsconfig.json create mode 100644 env-to-object/tslint.json diff --git a/env-to-object/env-to-object-tests.ts b/env-to-object/env-to-object-tests.ts new file mode 100644 index 0000000000..77ea18327e --- /dev/null +++ b/env-to-object/env-to-object-tests.ts @@ -0,0 +1,33 @@ +import * as envToObject from 'env-to-object'; + +const map = { + 'NODE_ENV': { + 'keypath': 'env', + 'type': 'string' + }, + 'PORT': { + 'keypath': 'server.port', + 'type': 'number' + }, + 'SSL': { + 'keypath': 'server.ssl', + 'type': 'boolean' + }, + 'LOG_LEVEL': { + 'keypath': 'logger.level', + 'type': 'string' + }, + 'INT': { + 'keypath': 'int', + 'type': 'integer', + 'radix': '2' + } +}; + +const result1:any = envToObject(map); +const result2:any = envToObject(map, { + 'my-custom-type': (str: string, opts: any) => { + let foo: any = JSON.parse(str); + return foo; + } +}); diff --git a/env-to-object/index.d.ts b/env-to-object/index.d.ts new file mode 100644 index 0000000000..1bda571f98 --- /dev/null +++ b/env-to-object/index.d.ts @@ -0,0 +1,35 @@ +// Type definitions for env-to-object 1.1 +// Project: https://github.com/kgryte/node-env-to-object#readme +// Definitions by: TANAKA Koichi +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare namespace env { + export interface Mappings { + [enviromentVariableName: string]: Mapping; + } + + export type Mapping = IntegerMapping | BooleanMapping | GenericMapping; + + interface GenericMapping { + keypath: string; + type?: string; + [opt: string]: any; + } + + interface IntegerMapping extends GenericMapping { + type: "integer"; + radix: number; + } + + interface BooleanMapping { + type: "boolean"; + strict: boolean; + } + + export interface Parsers { + [parserName: string]: (str: string, opts: any) => any; + } +} + +declare function env(map: env.Mappings, parsers?: env.Parsers): any; +export = env; diff --git a/env-to-object/tsconfig.json b/env-to-object/tsconfig.json new file mode 100644 index 0000000000..68efe0c7ca --- /dev/null +++ b/env-to-object/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "env-to-object-tests.ts" + ] +} diff --git a/env-to-object/tslint.json b/env-to-object/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/env-to-object/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 4e5c9999631e60b9a6e8b7186642abf41aa08b37 Mon Sep 17 00:00:00 2001 From: simonxca Date: Sat, 4 Feb 2017 09:04:40 -0800 Subject: [PATCH 112/231] Remove from author list --- passport-local-mongoose/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passport-local-mongoose/index.d.ts b/passport-local-mongoose/index.d.ts index eabe00f978..36a58a1828 100644 --- a/passport-local-mongoose/index.d.ts +++ b/passport-local-mongoose/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for passport-local-mongoose 4.0.0 // Project: https://github.com/saintedlama/passport-local-mongoose -// Definitions by: Linus Brolin , simonxca +// Definitions by: Linus Brolin // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// From 8c493766e4d2d8cd6837630efeab93101659b3b6 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sat, 4 Feb 2017 23:31:14 +0300 Subject: [PATCH 113/231] [mongodb] Cursor & AggregationCursor methods now return generic type T Also have removed an extra `extends any` declaration --- mongodb/index.d.ts | 76 +++++++++++++++++++++++----------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index 33021e1fb9..8355bf12c5 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -1122,17 +1122,17 @@ export interface WriteOpResult { export type CursorResult = any | void | boolean; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html -export interface Cursor extends Readable { +export interface Cursor extends Readable { sortValue: string; timeout: boolean; readPreference: ReadPreference; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#addCursorFlag - addCursorFlag(flag: string, value: boolean): Cursor; + addCursorFlag(flag: string, value: boolean): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#addQueryModifier - addQueryModifier(name: string, value: boolean): Cursor; + addQueryModifier(name: string, value: boolean): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#batchSize - batchSize(value: number): Cursor; + batchSize(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#clone // https://github.com/christkv/mongodb-core/blob/2.0/lib/cursor.js#L333 clone(): Cursor; // still returns the same type @@ -1140,7 +1140,7 @@ export interface Cursor extends Readable { close(): Promise; close(callback: MongoCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#comment - comment(value: string): Cursor; + comment(value: string): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#count count(applySkipLimit: boolean, callback: MongoCallback): void; count(applySkipLimit: boolean, options?: CursorCommentOptions): Promise; @@ -1149,55 +1149,55 @@ export interface Cursor extends Readable { explain(): Promise; explain(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#filter - filter(filter: Object): Cursor; + filter(filter: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#forEach forEach(iterator: IteratorCallback, callback: EndCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#hasNext hasNext(): Promise; hasNext(callback: MongoCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#hint - hint(hint: Object): Cursor; + hint(hint: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#isClosed isClosed(): boolean; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#limit - limit(value: number): Cursor; + limit(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#map - map(transform: Function): Cursor; + map(transform: Function): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#max - max(max: number): Cursor; + max(max: number): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxAwaitTimeMS - maxAwaitTimeMS(value: number): Cursor; + maxAwaitTimeMS(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxScan - maxScan(maxScan: Object): Cursor; + maxScan(maxScan: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#maxTimeMS - maxTimeMS(value: number): Cursor; + maxTimeMS(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#min - min(min: number): Cursor; + min(min: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#next next(): Promise; next(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#project - project(value: Object): Cursor; + project(value: Object): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#read read(size: number): string | Buffer | void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#next - returnKey(returnKey: Object): Cursor; + returnKey(returnKey: Object): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#rewind rewind(): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#setCursorOption - setCursorOption(field: string, value: Object): Cursor; + setCursorOption(field: string, value: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#setReadPreference - setReadPreference(readPreference: string | ReadPreference): Cursor; + setReadPreference(readPreference: string | ReadPreference): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#showRecordId - showRecordId(showRecordId: Object): Cursor; + showRecordId(showRecordId: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#skip - skip(value: number): Cursor; + skip(value: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#snapshot - snapshot(snapshot: Object): Cursor; + snapshot(snapshot: Object): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#sort - sort(keyOrList: string | Object[] | Object, direction?: number): Cursor; + sort(keyOrList: string | Object[] | Object, direction?: number): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#stream - stream(options?: { transform?: Function }): Cursor; + stream(options?: { transform?: Function }): Cursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/Cursor.html#toArray toArray(): Promise; toArray(callback: MongoCallback): void; @@ -1228,11 +1228,11 @@ export interface EndCallback { export type AggregationCursorResult = any | void; // TODO: change to generic version //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html -export interface AggregationCursor extends Readable { +export interface AggregationCursor extends Readable { // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#batchSize - batchSize(value: number): AggregationCursor; + batchSize(value: number): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#clone - clone(): AggregationCursor; + clone(): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#close close(): Promise; close(callback: MongoCallback): void; @@ -1242,41 +1242,41 @@ export interface AggregationCursor extends Readable { explain(): Promise; explain(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#geoNear - geoNear(document: Object): AggregationCursor; + geoNear(document: Object): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#group - group(document: Object): AggregationCursor; + group(document: Object): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#isClosed isClosed(): boolean; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#limit - limit(value: number): AggregationCursor; + limit(value: number): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#match - match(document: Object): AggregationCursor; + match(document: Object): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#maxTimeMS - maxTimeMS(value: number): AggregationCursor; + maxTimeMS(value: number): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#next next(): Promise; next(callback: MongoCallback): void; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#out - out(destination: string): AggregationCursor; + out(destination: string): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#project - project(document: Object): AggregationCursor; + project(document: Object): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#read read(size: number): string | Buffer | void; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#redact - redact(document: Object): AggregationCursor; + redact(document: Object): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#rewind - rewind(): AggregationCursor; + rewind(): AggregationCursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#setEncoding - skip(value: number): AggregationCursor; + skip(value: number): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#sort - sort(document: Object): AggregationCursor; + sort(document: Object): AggregationCursor; // http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#toArray toArray(): Promise; toArray(callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unshift unshift(stream: Buffer | string): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/AggregationCursor.html#unwind - unwind(field: string): AggregationCursor; + unwind(field: string): AggregationCursor; } //http://mongodb.github.io/node-mongodb-native/2.1/api/CommandCursor.html From 64515f0db6fdc8080a5962601c1e7b7f583df778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Nguyen?= Date: Sun, 5 Feb 2017 08:11:04 +0100 Subject: [PATCH 114/231] Adding type definitions for cookie-signature --- cookie-signature/cookie-signature-tests.ts | 7 +++++++ cookie-signature/index.d.ts | 21 +++++++++++++++++++++ cookie-signature/tsconfig.json | 22 ++++++++++++++++++++++ cookie-signature/tslint.json | 1 + 4 files changed, 51 insertions(+) create mode 100644 cookie-signature/cookie-signature-tests.ts create mode 100644 cookie-signature/index.d.ts create mode 100644 cookie-signature/tsconfig.json create mode 100644 cookie-signature/tslint.json diff --git a/cookie-signature/cookie-signature-tests.ts b/cookie-signature/cookie-signature-tests.ts new file mode 100644 index 0000000000..f76d6dcb59 --- /dev/null +++ b/cookie-signature/cookie-signature-tests.ts @@ -0,0 +1,7 @@ +import * as cookie from "cookie-signature"; + +let val = cookie.sign('hello', 'tobiiscool'); + +val = cookie.sign('hello', 'tobiiscool'); +cookie.unsign(val, 'tobiiscool'); +cookie.unsign(val, 'luna'); diff --git a/cookie-signature/index.d.ts b/cookie-signature/index.d.ts new file mode 100644 index 0000000000..b9b29911a6 --- /dev/null +++ b/cookie-signature/index.d.ts @@ -0,0 +1,21 @@ +// Type definitions for cookie-signature 1.0 +// Project: https://github.com/tj/node-cookie-signature +// Definitions by: François Nguyen +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/** + * Sign the given `val` with `secret`. + * @param {string} val + * @param {string} secret + * @return {string} + */ +export function sign(value: string, secret: string): string; + +/** + * Unsign and decode the given `val` with `secret`, + * returning `false` if the signature is invalid. + * @param {string} val + * @param {string} secret + * @return {string|boolean} + */ +export function unsign(value: string, secret: string): string | boolean; diff --git a/cookie-signature/tsconfig.json b/cookie-signature/tsconfig.json new file mode 100644 index 0000000000..57344e816a --- /dev/null +++ b/cookie-signature/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "cookie-signature-tests.ts" + ] +} diff --git a/cookie-signature/tslint.json b/cookie-signature/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/cookie-signature/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 3117141656d5095d77a80147ed22de438efd8c51 Mon Sep 17 00:00:00 2001 From: Hinell Date: Sun, 5 Feb 2017 12:50:31 +0300 Subject: [PATCH 115/231] [mongoose] Fixed typescript version build https://travis-ci.org/DefinitelyTyped/DefinitelyTyped/builds/198517411 --- mongoose/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mongoose/index.d.ts b/mongoose/index.d.ts index 56ad48e617..444cb7c53a 100644 --- a/mongoose/index.d.ts +++ b/mongoose/index.d.ts @@ -2,10 +2,12 @@ // Project: http://mongoosejs.com/ // Definitions by: simonxca , horiuchi // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// /// + /* * Guidelines for maintaining these definitions: * - If you spot an error here or there, please submit a PR. From 0a4823399e2cd4fc95585f11d5757c70b05af2c5 Mon Sep 17 00:00:00 2001 From: TANAKA Koichi Date: Sun, 5 Feb 2017 19:23:34 +0900 Subject: [PATCH 116/231] env-to-object: fix 2nd argument Official README is wrong. --- env-to-object/env-to-object-tests.ts | 8 +++++--- env-to-object/index.d.ts | 6 +++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/env-to-object/env-to-object-tests.ts b/env-to-object/env-to-object-tests.ts index 77ea18327e..e2c1fd4e53 100644 --- a/env-to-object/env-to-object-tests.ts +++ b/env-to-object/env-to-object-tests.ts @@ -26,8 +26,10 @@ const map = { const result1:any = envToObject(map); const result2:any = envToObject(map, { - 'my-custom-type': (str: string, opts: any) => { - let foo: any = JSON.parse(str); - return foo; + parsers: { + 'my-custom-type': (str: string, opts: any) => { + let foo: any = JSON.parse(str); + return foo; + } } }); diff --git a/env-to-object/index.d.ts b/env-to-object/index.d.ts index 1bda571f98..1ec7a3c994 100644 --- a/env-to-object/index.d.ts +++ b/env-to-object/index.d.ts @@ -29,7 +29,11 @@ declare namespace env { export interface Parsers { [parserName: string]: (str: string, opts: any) => any; } + + export interface Options { + parsers: Parsers; + } } -declare function env(map: env.Mappings, parsers?: env.Parsers): any; +declare function env(map: env.Mappings, options?: env.Options): any; export = env; From 4f8a6b2510dcb0bcc631d1e6c87ac44e8b2d418d Mon Sep 17 00:00:00 2001 From: akim95 Date: Mon, 6 Feb 2017 00:47:34 +0800 Subject: [PATCH 117/231] update realm type definitions to realm 1.0 --- realm/index.d.ts | 174 ++++++++++++++++++++++++++++++++++--------- realm/realm-tests.ts | 40 +++++++++- 2 files changed, 177 insertions(+), 37 deletions(-) diff --git a/realm/index.d.ts b/realm/index.d.ts index 034d9e390f..01975fa15a 100644 --- a/realm/index.d.ts +++ b/realm/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for realm-js 0.14 +// Type definitions for realm-js 1.0 // Project: https://github.com/realm/realm-js // Definitions by: Akim // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -6,13 +6,13 @@ declare namespace Realm { /** * PropertyType - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~PropertyType } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~PropertyType } */ export type PropertyType = string | 'bool' | 'int' | 'float' | 'double' | 'string' | 'data' | 'date' | 'list'; /** * ObjectSchemaProperty - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~ObjectSchemaProperty } + * @see { @link https://realm.io/docs/javascriptlatest/api/Realm.html#~ObjectSchemaProperty } */ export interface ObjectSchemaProperty { type: PropertyType; @@ -29,7 +29,7 @@ declare namespace Realm { /** * ObjectSchema - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~ObjectSchema } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~ObjectSchema } */ export interface ObjectSchema { name: string; @@ -39,7 +39,7 @@ declare namespace Realm { /** * ObjectClass - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~ObjectClass } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~ObjectClass } */ export interface ObjectClass { schema: ObjectSchema; @@ -47,15 +47,20 @@ declare namespace Realm { /** * ObjectType - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~ObjectType } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~ObjectType } */ export interface ObjectType { type: ObjectClass; } + interface SyncConfiguration { + user: User; + url: string; + } + /** * realm configuration - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.html#~Configuration } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~Configuration } */ export interface Configuration { encryptionKey?: any; @@ -64,6 +69,7 @@ declare namespace Realm { readOnly?: boolean; schema?: ObjectClass[] | ObjectSchema[]; schemaVersion?: number; + sync?: SyncConfiguration; } // object props type @@ -73,13 +79,13 @@ declare namespace Realm { /** * SortDescriptor - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.Collection.html#~SortDescriptor } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Collection.html#~SortDescriptor } */ export type SortDescriptor = string | [string, boolean] | any[]; /** * Iterator - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.Collection.html#~Iterator } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Collection.html#~Iterator } */ export interface IteratorResult { done: boolean; @@ -87,12 +93,13 @@ declare namespace Realm { } export interface Iterator { - next(value?: any): IteratorResult; + next(done: boolean, value?: any): IteratorResult; + [Symbol.iterator](): any; } /** * Collection - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.Collection.html } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Collection.html } */ export interface Collection { readonly length: number; @@ -117,7 +124,7 @@ declare namespace Realm { sorted(descriptor: string | SortDescriptor, reverse?: boolean): Results; /** - * @returns Iterator + * @returns Iterator */ [Symbol.iterator](): Iterator; @@ -150,70 +157,87 @@ declare namespace Realm { /** * @param {number} start? * @param {number} end? - * @returns T[] | Object[] + * @returns T */ slice(start?: number, end?: number): T[]; /** * @param {(object:any,index?:any,collection?:any)=>void} callback * @param {any} thisArg? - * @returns Object|void + * @returns T */ find(callback: (object: any, index?: any, collection?: any) => void, thisArg?: any): T | null | undefined; /** - * @param {(object:any,index?:any,collection?:any)=>void} callback + * @param {(object:any,index?:number,collection?:any)=>void} callback * @param {any} thisArg? * @returns number */ findIndex(callback: (object: any, index?: number, collection?: any) => void, thisArg?: any): number; /** - * @param {(object:T|any,index?:number,collection?:any)=>void} callback + * @param {(object:T,index?:number,collection?:any)=>void} callback * @param {any} thisArg? * @returns void */ forEach(callback: (object: T, index?: number, collection?: any) => void, thisArg?: any): void; /** - * @param {(object:T|any,index?:number,collection?:any)=>void} callback + * @param {(object:T,index?:number,collection?:any)=>void} callback * @param {any} thisArg? * @returns boolean */ every(callback: (object: T, index?: number, collection?: any) => void, thisArg?: any): boolean; /** - * @param {(object:any,index?:number,collection?:any)=>void} callback + * @param {(object:T,index?:number,collection?:any)=>void} callback * @param {any} thisArg? * @returns boolean */ some(callback: (object: T, index?: number, collection?: any) => void, thisArg?: any): boolean; /** - * @param {(object:any,index?:number,collection?:any)=>void} callback + * @param {(object:T,index?:number,collection?:any)=>void} callback * @param {any} thisArg? * @returns any */ map(callback: (object: T, index?: number, collection?: any) => void, thisArg?: any): any[]; /** - * @param {(previousValue:T|any,object?:any,index?:number,collection?:any)=>void} callback + * @param {(previousValue:T,object?:T,index?:number,collection?:any)=>void} callback * @param {any} initialValue? * @returns any */ reduce(callback: (previousValue: T, object?: T, index?: number, collection?: any) => void, initialValue?: any): any; /** - * @param {(previousValue:any,object?:any,index?:any,collection?:any)=>void} callback + * @param {(previousValue:T,object?:T,index?:any,collection?:any)=>void} callback * @param {any} initialValue? * @returns any */ reduceRight(callback: (previousValue: T, object?: T, index?: any, collection?: any) => void, initialValue?: any): any; + + /** + * @param {(collection:any,changes:any)=>void} callback + * @returns void + */ + addListener(callback: (collection: any, changes: any) => void): void; + + /** + * @returns void + */ + removeAllListeners(): void; + + /** + * @param {()=>void} callback + * @returns void + */ + removeListener(callback: () => void): void; } /** * Object - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.Object.html } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Object.html } */ export interface Object { /** @@ -224,22 +248,22 @@ declare namespace Realm { /** * List - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.List.html } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.List.html } */ export interface List extends Collection { /** - * @returns Object|void + * @returns T */ pop(): T | null | undefined; /** - * @param {any} object + * @param {T} object * @returns number */ push(object: T): number; /** - * @returns Object|void + * @returns T */ shift(): T | null | undefined; @@ -247,12 +271,12 @@ declare namespace Realm { * @param {number} index * @param {number} count? * @param {any} object? - * @returns Object + * @returns T */ splice(index: number, count?: number, object?: any): T[]; /** - * @param {any} object + * @param {T} object * @returns number */ unshift(object: T): number; @@ -260,9 +284,81 @@ declare namespace Realm { /** * Results - * @see { @link https://realm.io/docs/react-native/latest/api/Realm.Results.html } + * @see { @link https://realm.io/docs/javascriptlatest/api/Realm.Results.html } */ export type Results = Collection; + + /** + * User + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.User.html } + */ + export interface User { + all: any; + current: User; + readonly identity: string; + readonly isAdmin: boolean; + readonly server: string; + readonly token: string; + adminUser(adminToken: string): User; + login(server: string, username: string, password: string, callback: (error: any, user: any) => void): void; + loginWithProvider(server: string, provider: string, providerToken: string, callback: (error: any, user: any) => void): void; + register(server: string, username: string, password: string, callback: (error: any, user: any) => void): void; + registerWithProvider(server: string, provider: string, providerToken: string, callback: (error: any, user: any) => void): void; + logout(): void; + openManagementRealm(): Realm; + } + + /** + * Session + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.Session.html } + */ + export interface Session { + readonly config: any; + readonly state: string; + readonly url: string; + readonly user: User; + } + + /** + * AuthError + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.AuthError.html } + */ + export interface AuthError { + readonly code: number; + readonly type: string; + } + + /** + * ChangeEvent + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.ChangeEvent.html } + */ + export interface ChangeEvent { + readonly changes: any; + readonly oldRealm: Realm; + readonly path: string; + readonly realm: Realm; + } + + /** + * LogLevel + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.html#~LogLevel } + */ + type LogLevelType = string | 'error' | 'info' | 'defug'; + + /** + * Sync + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Sync.html } + */ + interface Sync { + User: User; + Session: Session; + AuthError: AuthError; + ChangeEvent: ChangeEvent; + addListener(serverURL: string, adminUser: User, regex: string, name: string, changeCallback: () => void): void; + removeAllListeners(name?: string[]): void; + removeListener(regex: string, name: string, changeCallback: () => void): void; + setLogLevel(logLevel: LogLevelType): void; + } } declare class Realm { @@ -274,12 +370,18 @@ declare class Realm { readonly schema: Realm.ObjectSchema[]; + readonly schemaVersion: number; + + static Sync: Realm.Sync; + + syncSession: Realm.Session; + /** - * @param {string} path? + * @param {string} path * @param {any} encryptionKey? * @returns number */ - schemaVersion(path?: string, encryptionKey?: any): number; + static schemaVersion(path: string, encryptionKey?: any): number; /** * @param {Realm.Configuration} config? @@ -293,14 +395,14 @@ declare class Realm { /** * @param {string|Realm.ObjectType} type - * @param {Realm.ObjectPropsType} properties + * @param {T&Realm.ObjectPropsType} properties * @param {boolean} update? - * @returns Realm.Object|T|any + * @returns T */ create(type: string | Realm.ObjectType, properties: T & Realm.ObjectPropsType, update?: boolean): T; /** - * @param {Realm.Object|Realm.Object[]|Realm.List|Realm.Results|any} object + * @param {Realm.Object|Realm.Object[]|Realm.List|Realm.Results|any} object * @returns void */ delete(object: Realm.Object | Realm.Object[] | Realm.List | Realm.Results | any): void; @@ -313,13 +415,13 @@ declare class Realm { /** * @param {string|Realm.ObjectType} type * @param {number|string} key - * @returns Realm.Object|void + * @returns T */ objectForPrimaryKey(type: string | Realm.ObjectType, key: number | string): T | void; /** * @param {string|Realm.ObjectType} type - * @returns Realm.Results + * @returns Realm */ objects(type: string | Realm.ObjectType): Realm.ObjectType & Realm.Results; diff --git a/realm/realm-tests.ts b/realm/realm-tests.ts index e99247919b..2daf41ef74 100644 --- a/realm/realm-tests.ts +++ b/realm/realm-tests.ts @@ -15,7 +15,7 @@ const personSchema = { const key = new Int8Array(64); // constructor test -let realm = new Realm({ +const realm = new Realm({ schema: [personSchema], encryptionKey: key }); @@ -59,3 +59,41 @@ realm.removeAllListeners(); allPerson.find((person: any) => { return person.name === 'Jack'; }); + +const currentVersion = Realm.schemaVersion(Realm.defaultPath); + +// username/password authentication +Realm.Sync.User.register('http://localhost:9080', 'username@example.com', 'p@s$w0rd', (error, user) => { /* ... */ }); + +Realm.Sync.User.login('http://localhost.com:9080', 'username@example.com', 'p@s$w0rd', (error, user) => { + + const todoSchema = { + name: 'Todo', + primaryKey: 'id', + properties: { + id: 'int', + task: 'string', + } + }; + + // sync test + const realm = new Realm({ + schema: [todoSchema], + sync: { user, url: 'realm://localhost:9080/~/todos' } + }); + + // session test + const session = realm.syncSession; + const sessionUrl = session.config.url; +}); + +// facebook authentication +const fbAccessToken = 'acc3ssT0ken...'; +Realm.Sync.User.registerWithProvider('http://localhost:9080', 'facebook', fbAccessToken, (error, user) => { /* ... */ }); + +// user test +const user = Realm.Sync.User.current; +const users = Realm.Sync.User.all; + +// access control test +const managementRealm = user.openManagementRealm(); From 68baefd577c9454269b800c7ba742323ac37c414 Mon Sep 17 00:00:00 2001 From: akim95 Date: Mon, 6 Feb 2017 01:06:24 +0800 Subject: [PATCH 118/231] fix url ref --- realm/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realm/index.d.ts b/realm/index.d.ts index 01975fa15a..3c3a438621 100644 --- a/realm/index.d.ts +++ b/realm/index.d.ts @@ -12,7 +12,7 @@ declare namespace Realm { /** * ObjectSchemaProperty - * @see { @link https://realm.io/docs/javascriptlatest/api/Realm.html#~ObjectSchemaProperty } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.html#~ObjectSchemaProperty } */ export interface ObjectSchemaProperty { type: PropertyType; @@ -284,7 +284,7 @@ declare namespace Realm { /** * Results - * @see { @link https://realm.io/docs/javascriptlatest/api/Realm.Results.html } + * @see { @link https://realm.io/docs/javascript/latest/api/Realm.Results.html } */ export type Results = Collection; From 01536df168ebf2629cd25a7606660db9b558c260 Mon Sep 17 00:00:00 2001 From: Hinell Date: Mon, 6 Feb 2017 00:02:44 +0300 Subject: [PATCH 119/231] [mongodb] collection.findOne is coming back Closes #14444 Quick fix according to docs and mongodb issue tracker: http://mongodb.github.io/node-mongodb-native/2.2/api/Collection.html#findOne https://jira.mongodb.org/browse/NODE-890 --- mongodb/index.d.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/mongodb/index.d.ts b/mongodb/index.d.ts index bab845a01d..3603b8877c 100644 --- a/mongodb/index.d.ts +++ b/mongodb/index.d.ts @@ -620,11 +620,8 @@ export interface Collection { /** @deprecated */ find(query: Object, fields?: Object, skip?: number, limit?: number, timeout?: number): Cursor; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#findOne - /** @deprecated use find().limit(1).next(function(err, doc){}) */ findOne(filter: Object, callback: MongoCallback): void; - /** @deprecated use find().limit(1).next(function(err, doc){}) */ findOne(filter: Object, options?: FindOneOptions): Promise; - /** @deprecated use find().limit(1).next(function(err, doc){}) */ findOne(filter: Object, options: FindOneOptions, callback: MongoCallback): void; //http://mongodb.github.io/node-mongodb-native/2.1/api/Collection.html#findOneAndDelete findOneAndDelete(filter: Object, callback: MongoCallback): void; From b2282a583592d3976af68653f7608f9b562e11ab Mon Sep 17 00:00:00 2001 From: Rodrigo Cabello Date: Thu, 2 Feb 2017 18:59:49 +0100 Subject: [PATCH 120/231] adding web sockets definitions --- hyco-ws/hyco-ws-tests.ts | 8 ++++---- hyco-ws/index.d.ts | 30 ++++++++++++------------------ hyco-ws/tsconfig.json | 2 +- hyco-ws/tslint.json | 1 + 4 files changed, 18 insertions(+), 23 deletions(-) create mode 100644 hyco-ws/tslint.json diff --git a/hyco-ws/hyco-ws-tests.ts b/hyco-ws/hyco-ws-tests.ts index d24aa85c2c..05b500d81c 100644 --- a/hyco-ws/hyco-ws-tests.ts +++ b/hyco-ws/hyco-ws-tests.ts @@ -1,10 +1,10 @@ -import * as WebSocketRelay from 'hyco-ws'; import * as WebSocket from 'ws'; +import * as AzureRelay from 'hyco-ws'; -const wss: any = WebSocketRelay.createRelayedServer( +const wss = AzureRelay.createRelayedServer( { - server: WebSocketRelay.createRelayListenUri('uri_namespace', 'uri_path'), - token: WebSocketRelay.createRelayToken( + server: AzureRelay.createRelayListenUri('uri_namespace', 'uri_path'), + token: AzureRelay.createRelayToken( 'http://exampleurl.com}', 'key_rule', 'key') diff --git a/hyco-ws/index.d.ts b/hyco-ws/index.d.ts index 413f883c1e..d6b07d4422 100644 --- a/hyco-ws/index.d.ts +++ b/hyco-ws/index.d.ts @@ -3,12 +3,12 @@ // Definitions by: Manuel Rodrigo Cabello // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -/// /// -declare module 'hyco-ws' { - namespace WebSocketRelay { +import * as WebSocket from 'ws'; + +declare namespace hycows { class HybridConnectionWebSocketServer extends NodeJS.EventEmitter { constructor(options: Object); @@ -21,19 +21,13 @@ declare module 'hyco-ws' { controlChannel: WebSocket; } - interface RealyConnection { + export function createRelayedServer(options: Object, fn: (ws: WebSocket) => void): HybridConnectionWebSocketServer; + export function relayedConnect(address: string, fn: () => void): WebSocket; + export function createRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + export function appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; + export function createRelayBaseUri(serviceBusNamespace: string, path: string): string; + export function createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; + export function createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; +} - createRelayedServer(options: Object, fn: (ws: WebSocket) => void): HybridConnectionWebSocketServer; - relayedConnect(address: string, fn: () => void): WebSocket; - createRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; - appendRelayToken(uri: string, key_name: string, key: string, expiry?: number): string; - createRelayBaseUri(serviceBusNamespace: string, path: string): string; - createRelaySendUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; - createRelayListenUri(serviceBusNamespace: string, path: string, token?: any, id?: any): string; - } - } - - var RelayConnection: WebSocketRelay.RealyConnection; - - export = RelayConnection; -} \ No newline at end of file +export = hycows; \ No newline at end of file diff --git a/hyco-ws/tsconfig.json b/hyco-ws/tsconfig.json index 0d67bbf8da..a625ff1bab 100644 --- a/hyco-ws/tsconfig.json +++ b/hyco-ws/tsconfig.json @@ -6,7 +6,7 @@ ], "noImplicitAny": true, "noImplicitThis": true, - "strictNullChecks": false, + "strictNullChecks": true, "experimentalDecorators": true, "baseUrl": "../", "typeRoots": [ diff --git a/hyco-ws/tslint.json b/hyco-ws/tslint.json new file mode 100644 index 0000000000..2221e40e4a --- /dev/null +++ b/hyco-ws/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } \ No newline at end of file From 5b30a7bfe790829931fa3b6f9c9e527334b3b2c4 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Mon, 6 Feb 2017 19:40:19 +0900 Subject: [PATCH 121/231] add defaults field --- pg/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg/index.d.ts b/pg/index.d.ts index 75f3f33dd5..a18c9b6d42 100644 --- a/pg/index.d.ts +++ b/pg/index.d.ts @@ -130,4 +130,4 @@ export declare class Events extends events.EventEmitter { export const types: typeof pgTypes; - +export const defaults: Defaults & ClientConfig; From 3c083f098b71b70cd000a6644cb88574db47a569 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Mon, 6 Feb 2017 19:41:21 +0900 Subject: [PATCH 122/231] Update pg-tests.ts --- pg/pg-tests.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pg/pg-tests.ts b/pg/pg-tests.ts index 8936f01ee0..15dfdde3d9 100644 --- a/pg/pg-tests.ts +++ b/pg/pg-tests.ts @@ -7,6 +7,7 @@ var conString = "postgres://username:password@localhost/database"; pg.types.setTypeParser(20, (val) => Number(val)); // Client pooling +pg.defaults.ssl = true; pg.connect(conString, (err, client, done) => { if (err) { return console.error("Error fetching client from pool", err); @@ -71,4 +72,4 @@ pool.connect(function(err, client, done) { pool.on('error', function (err, client) { console.error('idle client error', err.message, err.stack) -}) \ No newline at end of file +}) From d88d452cf09a8d17161595cf41832e5c8d9ac799 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Mon, 6 Feb 2017 23:46:11 +0900 Subject: [PATCH 123/231] resolve most of lint error --- pg/index.d.ts | 41 ++++++++++++++--------------------------- 1 file changed, 14 insertions(+), 27 deletions(-) diff --git a/pg/index.d.ts b/pg/index.d.ts index a18c9b6d42..ca555b1f83 100644 --- a/pg/index.d.ts +++ b/pg/index.d.ts @@ -1,11 +1,9 @@ -// Type definitions for pg 6.1.0 +// Type definitions for pg 6.1 // Project: https://github.com/brianc/node-postgres // Definitions by: Phips Peter // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// -/// - import events = require("events"); import stream = require("stream"); @@ -63,41 +61,34 @@ export interface ResultBuilder extends QueryResult { } export declare class Pool extends events.EventEmitter { - - constructor(); - // `new Pool('pg://user@localhost/mydb')` is not allowed. // But it passes type check because of issue: // https://github.com/Microsoft/TypeScript/issues/7485 - constructor(config: PoolConfig); + constructor(config?: PoolConfig); connect(): Promise; connect(callback: (err: Error, client: Client, done: () => void) => void): void; end(): Promise; - query(queryText: string): Promise; - query(queryText: string, values: any[]): Promise; + query(queryText: string, values?: any[]): Promise; query(queryText: string, callback: (err: Error, result: QueryResult) => void): void; query(queryText: string, values: any[], callback: (err: Error, result: QueryResult) => void): void; - public on(event: "error", listener: (err: Error, client: Client) => void): this; - public on(event: "connect", listener: (client: Client) => void): this; - public on(event: "acquire", listener: (client: Client) => void): this; - public on(event: string, listener: Function): this; + on(event: "error", listener: (err: Error, client: Client) => void): this; + on(event: "connect" | "acquire", listener: (client: Client) => void): this; } export declare class Client extends events.EventEmitter { constructor(connection: string); constructor(config: ClientConfig); - connect(callback?: (err:Error) => void): void; + connect(callback?: (err: Error) => void): void; end(callback?: (err: Error) => void): void; release(): void; - query(queryText: string): Promise; - query(queryText: string, values: any[]): Promise; + query(queryText: string, values?: any[]): Promise; query(queryText: string, callback?: (err: Error, result: QueryResult) => void): Query; query(config: QueryConfig, callback?: (err: Error, result: QueryResult) => void): Query; @@ -109,23 +100,19 @@ export declare class Client extends events.EventEmitter { pauseDrain(): void; resumeDrain(): void; - public on(event: "drain", listener: () => void): this; - public on(event: "error", listener: (err: Error) => void): this; - public on(event: "notification", listener: (message: any) => void): this; - public on(event: "notice", listener: (message: any) => void): this; - public on(event: string, listener: Function): this; + on(event: "drain", listener: () => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "notification" | "notice", listener: (message: any) => void): this; } export declare class Query extends events.EventEmitter { - public on(event: "row", listener: (row: any, result?: ResultBuilder) => void): this; - public on(event: "error", listener: (err: Error) => void): this; - public on(event: "end", listener: (result: ResultBuilder) => void): this; - public on(event: string, listener: Function): this; + on(event: "row", listener: (row: any, result?: ResultBuilder) => void): this; + on(event: "error", listener: (err: Error) => void): this; + on(event: "end", listener: (result: ResultBuilder) => void): this; } export declare class Events extends events.EventEmitter { - public on(event: "error", listener: (err: Error, client: Client) => void): this; - public on(event: string, listener: Function): this; + on(event: "error", listener: (err: Error, client: Client) => void): this; } export const types: typeof pgTypes; From 7ca457781255646ae9375ffdc01e025185ea7ab7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ondrej=20Slint=C3=A1k?= Date: Mon, 6 Feb 2017 23:39:25 +0100 Subject: [PATCH 124/231] Add extended AuthenticateOptions interface to passport-facebook This is useful since passing options with authType to passport's authenticate method fails since passport itself doesn't know about it. You can use this extended instead to retype it to the one that this method supports instead. --- passport-facebook/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/passport-facebook/index.d.ts b/passport-facebook/index.d.ts index bcc742dae5..7b6cedeac5 100644 --- a/passport-facebook/index.d.ts +++ b/passport-facebook/index.d.ts @@ -19,6 +19,10 @@ interface Profile extends passport.Profile { _json: any; } +export interface AuthenticateOptions extends passport.AuthenticateOptions { + authType?: string; +} + interface IStrategyOption { clientID: string; clientSecret: string; From 84d5133f5d09312f93922b5e5042fec199767189 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 00:23:17 +0100 Subject: [PATCH 125/231] range-parser --- range-parser/index.d.ts | 26 ++++++++++++++++++++++++++ range-parser/range-parser-tests.ts | 9 +++++++++ range-parser/tsconfig.json | 20 ++++++++++++++++++++ range-parser/tslint.json | 1 + 4 files changed, 56 insertions(+) create mode 100644 range-parser/index.d.ts create mode 100644 range-parser/range-parser-tests.ts create mode 100644 range-parser/tsconfig.json create mode 100644 range-parser/tslint.json diff --git a/range-parser/index.d.ts b/range-parser/index.d.ts new file mode 100644 index 0000000000..ceb5e17ff6 --- /dev/null +++ b/range-parser/index.d.ts @@ -0,0 +1,26 @@ +// Type definitions for range-parser 1.2 +// Project: https://github.com/jshttp/range-parser +// Definitions by: Tomek Łaziuk +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +declare const RangeParser: RangeParser.RangeParser; + +declare namespace RangeParser { + export interface Ranges extends Array { + type: string; + } + export interface Range { + start: number; + end: number; + } + export interface Options { + combine?: boolean; + } + export const enum Result { + invaild = -2, + unsatisifiable = -1, + } + export type RangeParser = (size: number, str: string, options?: Options) => Result | Ranges; +} + +export = RangeParser; diff --git a/range-parser/range-parser-tests.ts b/range-parser/range-parser-tests.ts new file mode 100644 index 0000000000..d3d70563bb --- /dev/null +++ b/range-parser/range-parser-tests.ts @@ -0,0 +1,9 @@ +import * as RangeParser from 'range-parser'; + +console.assert(RangeParser(200, `malformed`) === RangeParser.Result.invaild); +console.assert(RangeParser(200, `bytes=500-20`) === RangeParser.Result.unsatisifiable); + +const range = RangeParser(1000, `bytes=0-499`); + +console.assert(range.type === `bytes`); +console.assert(range.length === 1); diff --git a/range-parser/tsconfig.json b/range-parser/tsconfig.json new file mode 100644 index 0000000000..7c7f4ffd03 --- /dev/null +++ b/range-parser/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "range-parser-tests.ts" + ] +} diff --git a/range-parser/tslint.json b/range-parser/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/range-parser/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 534907f817b2624b2dc12c05a30659b61a8a5dfa Mon Sep 17 00:00:00 2001 From: Barry Stump Date: Mon, 6 Feb 2017 17:40:49 -0800 Subject: [PATCH 126/231] cassandra-driver: fix consistencies enum typo localQuorm => localQuorum --- cassandra-driver/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cassandra-driver/index.d.ts b/cassandra-driver/index.d.ts index 16466316f4..1f7f2fe33d 100644 --- a/cassandra-driver/index.d.ts +++ b/cassandra-driver/index.d.ts @@ -147,7 +147,7 @@ export namespace types { three, quorum, all, - localQuorm, + localQuorum, eachQuorum, serial, localSerial, From 74ce2d22e797706025dc7c5e21a3b37d14f09ca9 Mon Sep 17 00:00:00 2001 From: Mike Deverell Date: Mon, 6 Feb 2017 22:51:24 -0500 Subject: [PATCH 127/231] add `optionClassName` to `ReactSelectProps` --- react-select/index.d.ts | 4 ++++ react-select/react-select-tests.tsx | 1 + 2 files changed, 5 insertions(+) diff --git a/react-select/index.d.ts b/react-select/index.d.ts index a7c0f2f17a..c3474fdb85 100644 --- a/react-select/index.d.ts +++ b/react-select/index.d.ts @@ -272,6 +272,10 @@ declare namespace ReactSelectClass { * @default false */ openOnFocus?: boolean; + /** + * className to add to each option component + */ + optionClassName?: string; /** * option component to render in dropdown */ diff --git a/react-select/react-select-tests.tsx b/react-select/react-select-tests.tsx index d2704878d9..7840f2ce9e 100644 --- a/react-select/react-select-tests.tsx +++ b/react-select/react-select-tests.tsx @@ -99,6 +99,7 @@ class SelectTest extends React.Component, {}> { className: "test-select", key: "1", options: options, + optionClassName: 'test-select-option', optionRenderer: optionRenderer, autofocus: true, autosize: true, From 906ece8d53c7b1fb9159e6be2aef0dea538bd062 Mon Sep 17 00:00:00 2001 From: Mike Deverell Date: Mon, 6 Feb 2017 22:51:39 -0500 Subject: [PATCH 128/231] add name to contributors list --- react-select/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-select/index.d.ts b/react-select/index.d.ts index c3474fdb85..b149fd4c47 100644 --- a/react-select/index.d.ts +++ b/react-select/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for react-select v1.0.0 // Project: https://github.com/JedWatson/react-select -// Definitions by: ESQUIBET Hugo , Gilad Gray , Izaak Baker , Tadas Dailyda , Mark Vujevits +// Definitions by: ESQUIBET Hugo , Gilad Gray , Izaak Baker , Tadas Dailyda , Mark Vujevits , Mike Deverell // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.1 From 28634dc8849bbdf61ef0a8de2e2a29fa0ebea6f6 Mon Sep 17 00:00:00 2001 From: clownwilleatme Date: Tue, 7 Feb 2017 10:19:05 +1100 Subject: [PATCH 129/231] Adding XRM v8.2 features --- xrm/index.d.ts | 838 +++++++++++++++++++++++++++++++++++++++-------- xrm/xrm-tests.ts | 27 +- 2 files changed, 736 insertions(+), 129 deletions(-) diff --git a/xrm/index.d.ts b/xrm/index.d.ts index 36bd556c13..2ed4cef363 100644 --- a/xrm/index.d.ts +++ b/xrm/index.d.ts @@ -1,6 +1,6 @@ -// Type definitions for Microsoft Dynamics xRM API v8.0 +// Type definitions for Microsoft Dynamics xRM API v8.2 // Project: http://www.microsoft.com/en-us/download/details.aspx?id=44567 -// Definitions by: David Berry , Matt Ngan , Markus Mauch , Daryl LaBar +// Definitions by: David Berry , Matt Ngan , Markus Mauch , Daryl LaBar , Tully H // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare var Xrm: Xrm.XrmStatic; @@ -93,7 +93,7 @@ declare namespace Xrm * Gets a control matching controlName. * * @tparam T A Control type - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ @@ -102,12 +102,22 @@ declare namespace Xrm /** * Gets a control matching controlName. * - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ getControl( controlName: string ): Page.Control; + /** + * Gets a control by index. + * + * @tparam T A Control type + * @param {number} index The control index. + * + * @return The control. + */ + getControl( index: number ): T; + /** * Gets a control by index. * @@ -166,11 +176,10 @@ declare namespace Xrm * @param {OpenParameters} parameters (Optional) A dictionary object that passes extra query string * parameters to the form. Invalid query string parameters will cause an * error. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - openQuickCreate( - entityLogicalName: string, - createFromEntity?: Page.LookupValue, - parameters?: Utility.OpenParameters ): Async.XrmPromise; + openQuickCreate( entityLogicalName: string, createFromEntity?: Page.LookupValue, parameters?: Utility.OpenParameters ): + Async.XrmPromise; /** * Opens an entity form. @@ -205,16 +214,194 @@ declare namespace Xrm */ openWebResource( webResourceName: string, webResourceData?: string, width?: number, height?: number ): Window; } + + /** + * Provides methods to create and manage records in the mobile clients (for phones tablets). + */ + Mobile: { + /** + * Provides methods to create and manage records in the mobile clients while working in the offline mode. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. + */ + offline: { + /** + * Returns whether an entity is offline enabled. + * + * @param {string} entityType The logical name of the entity. + * + * @return {boolean} True if the entity is offline enabled; otherwise False. + */ + isOfflineEnabled( entityType: string ): boolean; + + /** + * Creates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {Object} data A dictionary object containing key : value pairs for the record to create. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot create intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + createRecord( entityType: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Retrieves an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to retrieve. + * @param {string} options (Optional) OData system query options to retrieve your data. Supports $select and $expand + * Example: ?$select=name&$expand=primarycontactid($select=contactid,fullname) + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks Only $select option can be specified within $expand. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveRecord( entityType: string, id: string, options: string ): Async.XrmPromise; + + /** + * Retrieves a collection of entity records in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} options (Optional) The logical name of the enti + * @param {string} maxPageSize (Optional) A positive number to indicates the number of entity records to be returned per page. + * If you do not specify this parameter, the default value is passed as 5000. + * If the number of records being retrieved is more than maxPageSize, an @odata.nextLink property + * will be returned, and you can use the value of the @odata.nextLink property with a new GET + * request to return next set of records. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks A maximum of 5000 related records can be retrieved when using $expand. + * Only $select option can be specified within $expand. + * $skip query option is not supported. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveMultipleRecords( entityType: string, options: string, maxPageSize: number ): Async.XrmPromise; + + /** + * Updates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to update. + * @param {Object} data A dictionary object containing key : value pairs for the record to update. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot update intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + updateRecord( entityType: string, id: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Deletes an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to delete. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot delete intersect and activity party entities. + */ + deleteRecord( entityType: string, id: string ): Async.XrmPromise; + } + } + + /** + * Provides methods to display a web page in the side pane of web client. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt790281.aspx} for details. + */ + Panel: { + /** + * Displays the web page represented by a URL in the static area in the side pane, which appears on all pages in the web client. + * + * @param {string} url URL of the page to be loaded in the side pane static area. + * @param {string} url Title of the side pane static area. + * + * @remarks This method is only supported for the web client. + */ + LoadPanel( url: string, title: string ): void; + } } /** * Client Types for Xrm.Page.context.getClient(). */ export type Client = "Web" | "Outlook" | "Mobile"; + /** * Client States for Xrm.Page.context.getClientState(). */ export type ClientState = "Online" | "Offline"; + /** * Themes for Xrm.Page.context.getCurrentTheme(). */ @@ -254,6 +441,7 @@ declare namespace Xrm * Gets client's base URL for Dynamics CRM * * @return The client's base URL + * * @remarks For Dynamics CRM On-Premises: http(s)://server/org * For Dynamics CRM Online: https://org.crm.dynamics.com * For Dynamics CRM for Outlook (Offline): http://localhost:2525 @@ -354,6 +542,20 @@ declare namespace Xrm prependOrgName( sPath: string ): string; } + /** + * Defines save options to control how appointment, recurring appointment, or service activity records are processed. + * + * @see {@link https://msdn.microsoft.com/en-us/library/dn481607.aspx#Anchor_2} for details. + */ + interface SaveOptions + { + /** + * Indicates whether to use the Book or Reschedule messages rather than the Create or Update messages. + * Applicable to appointment, recurring appointment, or service activity records. + */ + UseSchedulingEngine?: boolean; + } + /** * Interface for the Xrm.Page.data object. */ @@ -364,16 +566,25 @@ declare namespace Xrm * * @param {boolean} save true to save the record, after the refresh. * - * @return An Async.XrmPromise. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - refresh( save: boolean ): Async.XrmPromise; + refresh( save: boolean ): Async.XrmPromise; /** * Asynchronously saves the record. * - * @return An Async.XrmPromise. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - save(): Async.XrmPromise; + save(): Async.XrmPromise; + + /** + * Asynchronously saves the record with the option to set callback functions to be executed after the save operation is completed. + * + * @param {saveOptions} saveOptions Options to control how appointment, recurring appointment, or service activity records are processed. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + */ + save( saveOptions: SaveOptions ): Async.XrmPromise; /** * The record context of the form. @@ -393,12 +604,28 @@ declare namespace Xrm */ export interface Ui { + /** + * Displays a form level notification. Any number of notifications can be displayed and will remain until removed using clearFormNotification. + * The height of the notification area is limited so each new message will be added to the top. + * + * @param {string} message The text of the notification message. + * @param {Page.ui.FormNotificationLevel} level The level of the notification which defines how the message will be displayed, such as the icon. + * @param {string} uniqueId Unique identifier for the notification which is used with clearFormNotification to remove the notification. + * + * @return true if it succeeds, otherwise false. + * + * @remarks Values for level are: ERROR Notification will use the system error icon. + * WARNING Notification will use the system warning icon. + * INFO Notification will use the system info icon. + */ + setFormNotification( message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; + /** * Clears the form notification described by uniqueId. * * @param {string} uniqueId Unique identifier. * - * @return true if it succeeds, otherwise false. + * @return True if it succeeds, otherwise false. */ clearFormNotification( uniqueId: string ): boolean; @@ -441,14 +668,15 @@ declare namespace Xrm getViewPortWidth(): number; /** - * Re-evaluates the ribbon's configured EnableRules + * Re-evaluates the ribbon's configured EnableRules. * * @remarks This method does not work with Microsoft Dynamics CRM for tablets. */ refreshRibbon(): void; - setFormNotification(message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; - + /** + * The business process flow API, used to interact with the business process flow control in a form. + */ process: Page.ui.ProcessManager; /** @@ -474,6 +702,11 @@ declare namespace Xrm * A reference to the collection of tabs on the form. */ tabs: Collection.ItemCollection; + + /** + * A collection of all the quick view controls on a form using the new form rendering engine (also called "turbo forms"). + */ + quickForms: Collection.ItemCollection; } /** @@ -481,38 +714,115 @@ declare namespace Xrm */ export module Async { - /** - * Object passed to ErrorCallbackDelegate - */ - export interface ErrorCallbackObject - { - errorCode: number; - message: string; - } - - export interface SuccessCallbackObject - { - savedEntityReference: Page.LookupValue; - } - /** * Called when the operation is successful. - * Currently, only the Xrm.Utility.openQuickCreate successCallback - * is passed a parameter so an optional parameter for it is included */ - export type SuccessCallbackDelegate = (object?: SuccessCallbackObject ) => void; - + export type SuccessCallbackDelegate = () => void; + /** * Called when the operation fails. * - * @param {ErrorCallbackObject} error The error object + * @param {ErrorCallbackObject} error The error object. */ export type ErrorCallbackDelegate = ( error: ErrorCallbackObject ) => void; /** - * Interface for Xrm.Page.data promises. + * Called when the Xrm.Utility.openQuickCreate operation is successful and a new record has been created. + * + * @param {OpenQuickCreateSuccessCallbackObject} record An object which contains a lookup value which identifies the record which has been created. + * + * @see {Xrm.Utility.openQuickCreate} */ - export interface XrmPromise + export type QuickCreateSuccessCallbackDelegate = ( record: OpenQuickCreateSuccessCallbackObject ) => void; + + /** + * Called when the offline operation is successful. + * + * @param {OfflineOperationSuccessCallbackObject} record The record returned from the operation. + * + * @see {Xrm.Mobile.offline} + */ + export type OfflineOperationSuccessCallbackDelegate = ( record: OfflineOperationSuccessCallbackObject ) => void; + + /** + * Called when the offline retrieve multiple operation is successful. + * + * @param {OfflineRetrieveMultipleSuccessCallbackDelegate} resultSet The dictionary of records retrieved from the operation. + * + * @see {Xrm.Mobile.offline.retrieveMultipleRecords} + */ + export type OfflineRetrieveMultipleSuccessCallbackDelegate = (resultSet: { [key: string]: any }[]) => void; + + /** + * Called when the operation fails. + * + * @param {OfflineErrorCallbackObject} error The error object. + * + * @see {Xrm.Mobile.offline} + */ + export type OfflineErrorCallbackDelegate = (error: OfflineErrorCallbackObject) => void; + + + /** + * Object passed to ErrorCallbackDelegate. + */ + export interface ErrorCallbackObject + { + /** + * The error code. + */ + errorCode: number; + + /** + * An error message describing the issue. + */ + message: string; + } + + /** + * Object passed to QuickCreateSuccessCallbackDelegate. + */ + export interface OpenQuickCreateSuccessCallbackObject + { + /** + * A lookup value which identifies the record which has been created. + */ + savedEntityReference: Page.LookupValue; + } + + /** + * Object passed to OfflineOperationSuccessCallbackDelegate; + */ + export interface OfflineOperationSuccessCallbackObject + { + /** + * GUID of the record; + */ + id: string; + /** + * Logical name of the entity. + */ + logicalName: string; + } + + /** + * Object passed to OfflineErrorCallbackDelegate. + */ + export interface OfflineErrorCallbackObject extends ErrorCallbackObject + { + /** + * An internal error message that might contain additional details about the issue. + */ + debugMessage: string; + } + + /** + * Interface for asynchronous promises used in Xrm.Page.data and Xrm.Utility.openQuickCreate. + * + * @tparam TSuccessCallback Generic success callback parameter. + * @tparam TErrorCallback Generic error callback parameter. + */ + export interface XrmPromise { /** * A basic 'then' promise. @@ -520,7 +830,7 @@ declare namespace Xrm * @param {SuccessCallbackDelegate} successCallback The success callback. * @param {ErrorCallbackDelegate} errorCallback The error callback. */ - then( successCallback: SuccessCallbackDelegate, errorCallback: ErrorCallbackDelegate ): void; + then( successCallback: TSuccessCallback, errorCallback: TErrorCallback ): void; } } @@ -633,19 +943,57 @@ declare namespace Xrm * Requirement Level for Xrm.Page.Attribute.getRequiredLevel() and Xrm.Page.Attribute.setRequiredLevel(). */ export type RequirementLevel = "none" | "recommended" | "required"; + /** * Save Modes for Xrm.Page.Entity.save(). */ export type SaveMode = "saveandclose" | "saveandnew"; + /** * Status for Xrm.Page.Stage.getStatus(). */ export type Status = "active" | "inactive"; + /** * Submit Mode for Xrm.Page.Attribute.getSubmitMode() and Xrm.Page.Attribute.setSubmitMode(). */ export type SubmitMode = "always" | "dirty" | "never"; + + /** + * Control types for Xrm.Page.Control.getControlType(). + */ + export type ControlType = "standard" | "iframe" | "lookup" | "optionset" | "subgrid" | "webresource" | "notes" | "timercontrol" | "kbsearch" | "quickform"; + /** + * Date attribute formats for Xrm.Page.Attribute.getFormat(), used by DateAttribute. + */ + export type DateAttributeFormat = "date" | "datetime"; + + /** + * Integer attribute formats for Xrm.Page.Attribute.getFormat(), used by NumberAttribute. + */ + export type IntegerAttributeFormat = "duration" | "none"; + + /** + * OptionSet attribute formats for Xrm.Page.Attribute.getFormat(), used by OptionSetAttribute. + */ + export type OptionSetAttributeFormat = "language" | "timezone"; + + /** + * String attribute formats for Xrm.Page.Attribute.getFormat(), used by StringAttribute. + */ + export type StringAttributeFormat = "email" | "phone" | "text" | "textarea" | "tickersymbol" | "url"; + + /** + * Attribute types for Xrm.ui.ProcessMonitor Xrm.Page.Attribute.setDisplayState(). + */ + export type AttributeType = "boolean" | "datetime" | "decimal" | "double" | "integer" | "lookup" | "memo" | "money" | "optionset" | "string"; + + /** + * Attribute formats for Xrm.Page.Attribute.getFormat(). + */ + export type AttributeFormat = DateAttributeFormat | IntegerAttributeFormat | OptionSetAttributeFormat | StringAttributeFormat; + /** * Interface for a CRM Business Process Flow instance. */ @@ -836,9 +1184,9 @@ declare namespace Xrm } /** - * Base interface for UI elements. + * Interface for UI elements with labels. */ - export interface UiElement + export interface UiLabelElement { /** * Gets the label. @@ -846,21 +1194,33 @@ declare namespace Xrm * @return The label. */ getLabel(): string; - - /** - * Gets the visibility state. - * - * @return true if the tab is visible, otherwise false. - */ - getVisible(): boolean; - + /** * Sets the label. * * @param {string} label The label. */ setLabel( label: string ): void; + } + /** + * Interface for UI elements which can have the visibility value read. + */ + export interface UiCanGetVisibleElement + { + /** + * Gets the visibility state. + * + * @return true if the tab is visible, otherwise false. + */ + getVisible(): boolean; + } + + /** + * Base interface for standard UI elements. + */ + export interface UiStandardElement extends UiCanGetVisibleElement, UiLabelElement + { /** * Sets the visibility state. * @@ -879,15 +1239,44 @@ declare namespace Xrm */ setFocus(): void; } + + /** + * Interface for controls which methods provide immediate feedback or take actions as user types in a control. + * Contains methods which can be used to perform data validations in a control even before the user commits (saves) the value in a form. + */ + export interface UiKeyPressable + { + /** + * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. + * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. + * + * @param {ContextSensitiveHandler} handler The function reference. + */ + addOnKeyPress( handler: ContextSensitiveHandler ): void; + + /** + * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. + */ + fireOnKeyPress(): void; + + /** + * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. + * + * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. + * @param {ContextSensitiveHandler} handler The function reference. + */ + removeOnKeyPress( handler: ContextSensitiveHandler ): void; + } /** * Interface for Result value of AutoCompleteResultSet */ - export interface AutoCompleteResult { + export interface AutoCompleteResult + { /** * The Identifier */ - id: string|number; + id: string | number; /** * Url of the icon to display @@ -903,7 +1292,8 @@ declare namespace Xrm /** * Interface for command of AutoCompleteResultSet. This is displayed at the bottom of the auto complete view */ - export interface AutoCompleteCommand { + export interface AutoCompleteCommand + { /** * The Identifier */ @@ -928,7 +1318,8 @@ declare namespace Xrm /** * Interface for showAutoComplete argument */ - export interface AutoCompleteResultSet { + export interface AutoCompleteResultSet + { /** * Results to show */ @@ -983,17 +1374,17 @@ declare namespace Xrm export interface Privilege { /** - * true if the user can read. + * True if the user can read. */ canRead: boolean; /** - * true if the user can update. + * True if the user can update. */ canUpdate: boolean; /** - * true if the user can create. + * True if the user can create. */ canCreate: boolean; } @@ -1032,7 +1423,7 @@ declare namespace Xrm * string */ getAttributeType(): string; - + /** * Gets the attribute format. * @@ -1053,7 +1444,7 @@ declare namespace Xrm * timezone (optionset) * url (string) */ - getFormat(): string; + getFormat(): AttributeFormat; /** * Gets a boolean value indicating whether this Attribute has unsaved changes. @@ -1111,7 +1502,7 @@ declare namespace Xrm * * @param {string} requirementLevel The requirement level, as either "none", "required", or "recommended" */ - setRequiredLevel(requirementLevel: RequirementLevel | string): void; + setRequiredLevel( requirementLevel: RequirementLevel | string ): void; /** * Sets the submit mode. @@ -1120,12 +1511,26 @@ declare namespace Xrm * * @remarks The default value is "dirty" */ - setSubmitMode(submitMode: SubmitMode | string): void; + setSubmitMode( submitMode: SubmitMode | string ): void; /** * A collection of all the controls on the form that interface with this attribute. */ controls: Collection.ItemCollection; + + /** + * Gets the value. + * + * @return The value. + */ + getValue(): any; + + /** + * Sets the value. + * + * @param {any} value The value. + */ + setValue( value: any ): void; } /** @@ -1135,6 +1540,16 @@ declare namespace Xrm */ export interface NumberAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: duration + * none + */ + getFormat(): IntegerAttributeFormat; + /** * Gets the maximum value allowed. * @@ -1171,6 +1586,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: number ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1180,6 +1600,20 @@ declare namespace Xrm */ export interface StringAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: email + * phone + * text + * textarea + * tickersymbol + * url + */ + getFormat(): StringAttributeFormat; + /** * Gets maximum length allowed. * @@ -1206,6 +1640,11 @@ declare namespace Xrm * with this method. */ setValue( value: string ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1219,7 +1658,8 @@ declare namespace Xrm * Gets the initial value of the attribute. * * @return The initial value. - * @remarks Valid for optionset and boolean attribute types + * + * @remarks Valid for OptionSet and boolean attribute types */ getInitialValue(): number | boolean; } @@ -1255,6 +1695,16 @@ declare namespace Xrm */ export interface DateAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: date + * datetime + */ + getFormat(): DateAttributeFormat; + /** * Gets the value. * @@ -1270,6 +1720,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: Date ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1279,6 +1734,16 @@ declare namespace Xrm */ export interface OptionSetAttribute extends EnumAttribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: language + * timezone + */ + getFormat(): OptionSetAttributeFormat; + /** * Gets the option matching a value. * @@ -1336,6 +1801,11 @@ declare namespace Xrm * with this method. */ setValue( value: number ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1367,6 +1837,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: LookupValue[] ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1464,6 +1939,7 @@ declare namespace Xrm * Gets save mode, as an integer. * * @return The save mode. + * * @remarks Values returned are: 1 Save * 2 Save and Close * 59 Save and New @@ -1488,6 +1964,7 @@ declare namespace Xrm /** * Prevents the save operation from being submitted to the server. + * * @remarks All remaining "on save" handlers will continue execution. */ preventDefault(): void; @@ -1631,6 +2108,7 @@ declare namespace Xrm * Called when process change methods have completed. * * @param {string} status The result of the process change operation. + * * @remarks Values returned are: success (The operation succeeded.) * crossEntity (The previous stage is for a different entity.) * beginning (The active stage is the first stage of the active path.) @@ -1645,29 +2123,19 @@ declare namespace Xrm */ export type ProcessDictionary = { [index: string]: string }; } - + /** * Interface for Xrm.Page.ui controls. * * @sa UiElement */ - export interface Control extends UiElement, UiFocusable + export interface Control extends UiLabelElement, UiCanGetVisibleElement { /** - * Clears the notification identified by uniqueId. - * - * @param {string} uniqueId (Optional) Unique identifier. - * - * @return true if it succeeds, false if it fails. - * - * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. - */ - clearNotification( uniqueId?: string ): boolean; - - /** - * Gets the control's type. + * Gets the controls type. * * @return The control type. + * * @remarks Values returned are: standard * iframe * lookup @@ -1677,16 +2145,12 @@ declare namespace Xrm * notes * timercontrol * kbsearch (CRM Online Only, use parature.d.ts) + * quickform (see ui.QuickForm) + * customcontrol: . (A custom control for mobile phone and tablet clients). + * customsubgrid: . (A custom dataset control for mobile phone and tablet clients). */ - getControlType(): string; - - /** - * Gets a boolean value, indicating whether the control is disabled. - * - * @return true if it is disabled, otherwise false. - */ - getDisabled(): boolean; - + getControlType(): ControlType | string; + /** * Gets the name of the control on the form. * @@ -1711,7 +2175,33 @@ declare namespace Xrm * @return The parent Section. */ getParent(): Section; - + } + + /** + * Interface for a standard control. + * + * @sa Control + */ + export interface StandardControl extends Control, UiStandardElement, UiFocusable + { + /** + * Clears the notification identified by uniqueId. + * + * @param {string} uniqueId (Optional) Unique identifier. + * + * @return true if it succeeds, false if it fails. + * + * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. + */ + clearNotification( uniqueId?: string ): boolean; + + /** + * Gets a boolean value, indicating whether the control is disabled. + * + * @return true if it is disabled, otherwise false. + */ + getDisabled(): boolean; + /** * Sets the state of the control to either enabled, or disabled. * @@ -1731,15 +2221,7 @@ declare namespace Xrm * appears next to the control. Tapping on the icon will display the message. */ setNotification( message: string, uniqueId: string ): boolean; - } - /** - * Interface for a standard control. - * - * @sa Control - */ - export interface StandardControl extends Control - { /** * Gets the control's bound attribute. * @@ -1756,28 +2238,17 @@ declare namespace Xrm */ getAttribute(): Attribute; } - + /** - * Interace for Auto Lookup Control - * This is not an Entity Lookup, but a control that supports AutoComplete/KeyPress Events (Text) - * NOTE * This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. + * Interface for Auto Lookup Control. + * This is not an Entity Lookup, but a control that supports AutoComplete / KeyPress Events (Text or Number) + * + * @remarks This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. * * @sa StandardControl */ - export interface AutoLookupControl extends StandardControl { - /** - * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. - * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. - * - * @param {ContextSensitiveHandler} handler The function reference. - */ - addOnKeyPress(handler: ContextSensitiveHandler): void; - - /** - * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. - */ - fireOnKeyPress(): void; - + export interface AutoLookupControl extends StandardControl, UiKeyPressable + { /** * Gets the latest value in a control as the user types characters in a specific text or number field. * This method helps you to build interactive experiences by validating data and alerting users as they type characters in a control. @@ -1790,15 +2261,7 @@ declare namespace Xrm * Hides the auto-completion drop-down list configured for a specific text field */ hideAutoComplete(): void; - - /** - * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. - * - * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. - * @param {ContextSensitiveHandler} handler The function reference. - */ - removeOnKeyPress(handler: ContextSensitiveHandler): void; - + /** * Shows upt to 10 matching strings in a drop-down list as users press keys to type charactrer in a specific text field. * On selecting an item in the drop-down list, the value in the text field changes to the selected item, the drop-down list disappears, and the OnChange event for the text field is invoked @@ -1807,6 +2270,36 @@ declare namespace Xrm showAutoComplete(resultSet: AutoCompleteResultSet): void; } + /** + * Interface for a String control. + * + * @sa StandardControl + */ + export interface StringControl extends AutoLookupControl + { + /** + * Gets the control's bound attribute. + * + * @return The attribute. + */ + getAttribute(): StringAttribute; + } + + /** + * Interface for a Number control. + * + * @sa StandardControl + */ + export interface NumberControl extends AutoLookupControl + { + /** + * Gets the control's bound attribute. + * + * @return The attribute. + */ + getAttribute(): NumberAttribute; + } + /** * Interface for a Date control. * @@ -2110,7 +2603,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface Tab extends UiElement, UiFocusable + export interface Tab extends UiStandardElement, UiFocusable { /** * Gets display state of the tab. @@ -2151,7 +2644,7 @@ declare namespace Xrm * * @sa UiElement */ - export interface Section extends UiElement + export interface Section extends UiStandardElement { /** * Gets the name of the section. @@ -2183,14 +2676,14 @@ declare namespace Xrm */ export type FormNotificationLevel = "ERROR" | "INFO" | "WARNING"; - /** + /** * Display States for Xrm.ui.ProcessMonitor.setDisplayState(). - */ + */ export type DisplayState = "collapsed" | "expanded"; - /** + /** * Interface for Xrm.Page.ui.process API - */ + */ export interface ProcessManager { /** @@ -2198,7 +2691,7 @@ declare namespace Xrm * * @param {string} displayState Display state of the process flow control, as either "expanded" or "collapsed" */ - setDisplayState(displayState: ui.DisplayState ): void; + setDisplayState( displayState: ui.DisplayState ): void; /** * Sets the visibility state. @@ -2330,7 +2823,7 @@ declare namespace Xrm } /** - * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to + * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to * the ViewSelector.setCurrentView method. */ export interface ViewSelectorItem @@ -2342,6 +2835,93 @@ declare namespace Xrm */ getEntityReference(): LookupValue; } + + /** + * Interface for a quick view control instance on a form. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt736908.aspx#bkmk_isLoaded} for details. + */ + export interface QuickForm extends Control, UiLabelElement, UiCanGetVisibleElement + { + /** + * Gets the constituent controls in a quick view control. + * + * @return An array of controls. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl(): Page.Control[]; + + /** + * Gets the constituent controls in a quick view control. + * + * @tparam T A Control type + * @param {string} controlName Name of the control. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( controlName: string ): T; + + /** + * Gets the constituent controls in a quick view control. + * + * @param {string} controlName Name of the control. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( controlName: string ): Page.Control; + + /** + * Gets a control by index. + * + * @tparam T A Control type + * @param {number} index The control index. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( index: number ): T; + + /** + * Gets a control by index. + * + * @param {number} index The control index. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( index: number ): Page.Control; + + /** + * Gets the controls type. + * + * @return Returns a string value that categorizes quick view controls. + */ + getControlType(): "quickform"; + + /** + * Returns whether the data binding for the constituent controls in a quick view control is complete. + * + * @return True is the data binding for a constituent control is complete, otherwise false. + * because the quick view form that the control is bound to may not have loaded completely. + * As a result, using the getAttribute or any data-related methods on a constituent control might not work. + * The isLoaded method for the quick view control helps determine the data binding status for constituent controls in a quick view control. + * + * @remarks The data binding for the constituent controls in a quick view control may not be complete during the main form OnLoad event + */ + isLoaded(): boolean; + + /** + * Refreshes the data displayed in a quick view control. + */ + refresh(): void; + } } /** @@ -2350,7 +2930,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface NavigationItem extends UiElement, UiFocusable + export interface NavigationItem extends UiStandardElement, UiFocusable { /** * Gets the name of the item. @@ -2427,11 +3007,13 @@ declare namespace Xrm /** * Command Bar Display options for Xrm.Url.FormOpenParameters.cmdbar, Xrm.Url.ViewOpenParameters.cmdbar, and Xrm.Utility.FormOpenParameters.cmdbar. */ + export type CmdBarDisplay = "true" | "false"; /** * Navigation Bar Display options for Xrm.Url.FormOpenParameters.navbar, Xrm.Url.ViewOpenParameters.navbar, and Xrm.Utility.FormOpenParameters.navbar. */ export type NavBarDisplay = "entity" | "off" | "on"; + /** * Report Open Action options for Xrm.Url.ReportOpenParameters.actions. */ diff --git a/xrm/xrm-tests.ts b/xrm/xrm-tests.ts index 1893b9b89a..56d8f32b3c 100644 --- a/xrm/xrm-tests.ts +++ b/xrm/xrm-tests.ts @@ -75,7 +75,8 @@ Xrm.Utility.openQuickCreate("account").then(( object ) => { if (object) alert( ` /// Make all controls visible. -Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); +// Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); // No longer works +Xrm.Page.ui.controls.forEach((control: Xrm.Page.StandardControl) => { control.setVisible(true); }); // Must cast to StandardControl /// Make all tabs and sections visible. @@ -166,4 +167,28 @@ autoCompleteControl.hideAutoComplete(); +/// Demonstrate v8.2 quick form controls + +const quickForm = Xrm.Page.ui.quickForms.get(0); +quickForm.getControlType(); // == "quickform" +quickForm.getName(); +quickForm.getParent(); +quickForm.getVisible(); // From UiCanSetVisibleElement +quickForm.getLabel(); // From UiLabelElement +quickForm.setLabel("Label"); // From UiLabelElement +quickForm.refresh(); + +// Get standard control +const ctrl = Xrm.Page.getControl("controlName"); +ctrl.getControlType() +ctrl.getName(); +ctrl.getParent(); +ctrl.getLabel(); +ctrl.setLabel("Label name"); +ctrl.getVisible(); +ctrl.setVisible(true); + + + + From fe372f86ad9a65e3db8b0bfb8a6527ed5f7c3a6f Mon Sep 17 00:00:00 2001 From: clownwilleatme Date: Tue, 7 Feb 2017 10:20:34 +1100 Subject: [PATCH 130/231] Revert "Adding XRM v8.2 features" This reverts commit 65d062de61c4d7e014d73420c28e0999ab8f6c9d. --- xrm/index.d.ts | 828 +++++++---------------------------------------- xrm/xrm-tests.ts | 27 +- 2 files changed, 124 insertions(+), 731 deletions(-) diff --git a/xrm/index.d.ts b/xrm/index.d.ts index 2ed4cef363..36bd556c13 100644 --- a/xrm/index.d.ts +++ b/xrm/index.d.ts @@ -1,6 +1,6 @@ -// Type definitions for Microsoft Dynamics xRM API v8.2 +// Type definitions for Microsoft Dynamics xRM API v8.0 // Project: http://www.microsoft.com/en-us/download/details.aspx?id=44567 -// Definitions by: David Berry , Matt Ngan , Markus Mauch , Daryl LaBar , Tully H +// Definitions by: David Berry , Matt Ngan , Markus Mauch , Daryl LaBar // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare var Xrm: Xrm.XrmStatic; @@ -93,7 +93,7 @@ declare namespace Xrm * Gets a control matching controlName. * * @tparam T A Control type - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ @@ -102,22 +102,12 @@ declare namespace Xrm /** * Gets a control matching controlName. * - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ getControl( controlName: string ): Page.Control; - /** - * Gets a control by index. - * - * @tparam T A Control type - * @param {number} index The control index. - * - * @return The control. - */ - getControl( index: number ): T; - /** * Gets a control by index. * @@ -176,10 +166,11 @@ declare namespace Xrm * @param {OpenParameters} parameters (Optional) A dictionary object that passes extra query string * parameters to the form. Invalid query string parameters will cause an * error. - * @return {Async.XrmPromise} Returns an asynchronous promise. */ - openQuickCreate( entityLogicalName: string, createFromEntity?: Page.LookupValue, parameters?: Utility.OpenParameters ): - Async.XrmPromise; + openQuickCreate( + entityLogicalName: string, + createFromEntity?: Page.LookupValue, + parameters?: Utility.OpenParameters ): Async.XrmPromise; /** * Opens an entity form. @@ -214,194 +205,16 @@ declare namespace Xrm */ openWebResource( webResourceName: string, webResourceData?: string, width?: number, height?: number ): Window; } - - /** - * Provides methods to create and manage records in the mobile clients (for phones tablets). - */ - Mobile: { - /** - * Provides methods to create and manage records in the mobile clients while working in the offline mode. - * - * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. - */ - offline: { - /** - * Returns whether an entity is offline enabled. - * - * @param {string} entityType The logical name of the entity. - * - * @return {boolean} True if the entity is offline enabled; otherwise False. - */ - isOfflineEnabled( entityType: string ): boolean; - - /** - * Creates an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {Object} data A dictionary object containing key : value pairs for the record to create. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot create intersect and activity party entities. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - createRecord( entityType: string, data: { [attributeName: string]: any } ): Async.XrmPromise; - - /** - * Retrieves an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to retrieve. - * @param {string} options (Optional) OData system query options to retrieve your data. Supports $select and $expand - * Example: ?$select=name&$expand=primarycontactid($select=contactid,fullname) - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks Only $select option can be specified within $expand. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - retrieveRecord( entityType: string, id: string, options: string ): Async.XrmPromise; - - /** - * Retrieves a collection of entity records in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} options (Optional) The logical name of the enti - * @param {string} maxPageSize (Optional) A positive number to indicates the number of entity records to be returned per page. - * If you do not specify this parameter, the default value is passed as 5000. - * If the number of records being retrieved is more than maxPageSize, an @odata.nextLink property - * will be returned, and you can use the value of the @odata.nextLink property with a new GET - * request to return next set of records. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks A maximum of 5000 related records can be retrieved when using $expand. - * Only $select option can be specified within $expand. - * $skip query option is not supported. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - retrieveMultipleRecords( entityType: string, options: string, maxPageSize: number ): Async.XrmPromise; - - /** - * Updates an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to update. - * @param {Object} data A dictionary object containing key : value pairs for the record to update. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot update intersect and activity party entities. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - updateRecord( entityType: string, id: string, data: { [attributeName: string]: any } ): Async.XrmPromise; - - /** - * Deletes an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to delete. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot delete intersect and activity party entities. - */ - deleteRecord( entityType: string, id: string ): Async.XrmPromise; - } - } - - /** - * Provides methods to display a web page in the side pane of web client. - * - * @see {@link https://msdn.microsoft.com/en-us/library/mt790281.aspx} for details. - */ - Panel: { - /** - * Displays the web page represented by a URL in the static area in the side pane, which appears on all pages in the web client. - * - * @param {string} url URL of the page to be loaded in the side pane static area. - * @param {string} url Title of the side pane static area. - * - * @remarks This method is only supported for the web client. - */ - LoadPanel( url: string, title: string ): void; - } } /** * Client Types for Xrm.Page.context.getClient(). */ export type Client = "Web" | "Outlook" | "Mobile"; - /** * Client States for Xrm.Page.context.getClientState(). */ export type ClientState = "Online" | "Offline"; - /** * Themes for Xrm.Page.context.getCurrentTheme(). */ @@ -441,7 +254,6 @@ declare namespace Xrm * Gets client's base URL for Dynamics CRM * * @return The client's base URL - * * @remarks For Dynamics CRM On-Premises: http(s)://server/org * For Dynamics CRM Online: https://org.crm.dynamics.com * For Dynamics CRM for Outlook (Offline): http://localhost:2525 @@ -542,20 +354,6 @@ declare namespace Xrm prependOrgName( sPath: string ): string; } - /** - * Defines save options to control how appointment, recurring appointment, or service activity records are processed. - * - * @see {@link https://msdn.microsoft.com/en-us/library/dn481607.aspx#Anchor_2} for details. - */ - interface SaveOptions - { - /** - * Indicates whether to use the Book or Reschedule messages rather than the Create or Update messages. - * Applicable to appointment, recurring appointment, or service activity records. - */ - UseSchedulingEngine?: boolean; - } - /** * Interface for the Xrm.Page.data object. */ @@ -566,25 +364,16 @@ declare namespace Xrm * * @param {boolean} save true to save the record, after the refresh. * - * @return {Async.XrmPromise} Returns an asynchronous promise. + * @return An Async.XrmPromise. */ - refresh( save: boolean ): Async.XrmPromise; + refresh( save: boolean ): Async.XrmPromise; /** * Asynchronously saves the record. * - * @return {Async.XrmPromise} Returns an asynchronous promise. + * @return An Async.XrmPromise. */ - save(): Async.XrmPromise; - - /** - * Asynchronously saves the record with the option to set callback functions to be executed after the save operation is completed. - * - * @param {saveOptions} saveOptions Options to control how appointment, recurring appointment, or service activity records are processed. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - */ - save( saveOptions: SaveOptions ): Async.XrmPromise; + save(): Async.XrmPromise; /** * The record context of the form. @@ -604,28 +393,12 @@ declare namespace Xrm */ export interface Ui { - /** - * Displays a form level notification. Any number of notifications can be displayed and will remain until removed using clearFormNotification. - * The height of the notification area is limited so each new message will be added to the top. - * - * @param {string} message The text of the notification message. - * @param {Page.ui.FormNotificationLevel} level The level of the notification which defines how the message will be displayed, such as the icon. - * @param {string} uniqueId Unique identifier for the notification which is used with clearFormNotification to remove the notification. - * - * @return true if it succeeds, otherwise false. - * - * @remarks Values for level are: ERROR Notification will use the system error icon. - * WARNING Notification will use the system warning icon. - * INFO Notification will use the system info icon. - */ - setFormNotification( message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; - /** * Clears the form notification described by uniqueId. * * @param {string} uniqueId Unique identifier. * - * @return True if it succeeds, otherwise false. + * @return true if it succeeds, otherwise false. */ clearFormNotification( uniqueId: string ): boolean; @@ -668,15 +441,14 @@ declare namespace Xrm getViewPortWidth(): number; /** - * Re-evaluates the ribbon's configured EnableRules. + * Re-evaluates the ribbon's configured EnableRules * * @remarks This method does not work with Microsoft Dynamics CRM for tablets. */ refreshRibbon(): void; - /** - * The business process flow API, used to interact with the business process flow control in a form. - */ + setFormNotification(message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; + process: Page.ui.ProcessManager; /** @@ -702,11 +474,6 @@ declare namespace Xrm * A reference to the collection of tabs on the form. */ tabs: Collection.ItemCollection; - - /** - * A collection of all the quick view controls on a form using the new form rendering engine (also called "turbo forms"). - */ - quickForms: Collection.ItemCollection; } /** @@ -715,114 +482,37 @@ declare namespace Xrm export module Async { /** - * Called when the operation is successful. - */ - export type SuccessCallbackDelegate = () => void; - - /** - * Called when the operation fails. - * - * @param {ErrorCallbackObject} error The error object. - */ - export type ErrorCallbackDelegate = ( error: ErrorCallbackObject ) => void; - - /** - * Called when the Xrm.Utility.openQuickCreate operation is successful and a new record has been created. - * - * @param {OpenQuickCreateSuccessCallbackObject} record An object which contains a lookup value which identifies the record which has been created. - * - * @see {Xrm.Utility.openQuickCreate} - */ - export type QuickCreateSuccessCallbackDelegate = ( record: OpenQuickCreateSuccessCallbackObject ) => void; - - /** - * Called when the offline operation is successful. - * - * @param {OfflineOperationSuccessCallbackObject} record The record returned from the operation. - * - * @see {Xrm.Mobile.offline} - */ - export type OfflineOperationSuccessCallbackDelegate = ( record: OfflineOperationSuccessCallbackObject ) => void; - - /** - * Called when the offline retrieve multiple operation is successful. - * - * @param {OfflineRetrieveMultipleSuccessCallbackDelegate} resultSet The dictionary of records retrieved from the operation. - * - * @see {Xrm.Mobile.offline.retrieveMultipleRecords} - */ - export type OfflineRetrieveMultipleSuccessCallbackDelegate = (resultSet: { [key: string]: any }[]) => void; - - /** - * Called when the operation fails. - * - * @param {OfflineErrorCallbackObject} error The error object. - * - * @see {Xrm.Mobile.offline} - */ - export type OfflineErrorCallbackDelegate = (error: OfflineErrorCallbackObject) => void; - - - /** - * Object passed to ErrorCallbackDelegate. + * Object passed to ErrorCallbackDelegate */ export interface ErrorCallbackObject { - /** - * The error code. - */ errorCode: number; - - /** - * An error message describing the issue. - */ message: string; } - - /** - * Object passed to QuickCreateSuccessCallbackDelegate. - */ - export interface OpenQuickCreateSuccessCallbackObject - { - /** - * A lookup value which identifies the record which has been created. - */ + + export interface SuccessCallbackObject + { savedEntityReference: Page.LookupValue; } /** - * Object passed to OfflineOperationSuccessCallbackDelegate; + * Called when the operation is successful. + * Currently, only the Xrm.Utility.openQuickCreate successCallback + * is passed a parameter so an optional parameter for it is included */ - export interface OfflineOperationSuccessCallbackObject - { - /** - * GUID of the record; - */ - id: string; - /** - * Logical name of the entity. - */ - logicalName: string; - } - - /** - * Object passed to OfflineErrorCallbackDelegate. - */ - export interface OfflineErrorCallbackObject extends ErrorCallbackObject - { - /** - * An internal error message that might contain additional details about the issue. - */ - debugMessage: string; - } + export type SuccessCallbackDelegate = (object?: SuccessCallbackObject ) => void; /** - * Interface for asynchronous promises used in Xrm.Page.data and Xrm.Utility.openQuickCreate. + * Called when the operation fails. * - * @tparam TSuccessCallback Generic success callback parameter. - * @tparam TErrorCallback Generic error callback parameter. + * @param {ErrorCallbackObject} error The error object */ - export interface XrmPromise + export type ErrorCallbackDelegate = ( error: ErrorCallbackObject ) => void; + + /** + * Interface for Xrm.Page.data promises. + */ + export interface XrmPromise { /** * A basic 'then' promise. @@ -830,7 +520,7 @@ declare namespace Xrm * @param {SuccessCallbackDelegate} successCallback The success callback. * @param {ErrorCallbackDelegate} errorCallback The error callback. */ - then( successCallback: TSuccessCallback, errorCallback: TErrorCallback ): void; + then( successCallback: SuccessCallbackDelegate, errorCallback: ErrorCallbackDelegate ): void; } } @@ -943,57 +633,19 @@ declare namespace Xrm * Requirement Level for Xrm.Page.Attribute.getRequiredLevel() and Xrm.Page.Attribute.setRequiredLevel(). */ export type RequirementLevel = "none" | "recommended" | "required"; - /** * Save Modes for Xrm.Page.Entity.save(). */ export type SaveMode = "saveandclose" | "saveandnew"; - /** * Status for Xrm.Page.Stage.getStatus(). */ export type Status = "active" | "inactive"; - /** * Submit Mode for Xrm.Page.Attribute.getSubmitMode() and Xrm.Page.Attribute.setSubmitMode(). */ export type SubmitMode = "always" | "dirty" | "never"; - - /** - * Control types for Xrm.Page.Control.getControlType(). - */ - export type ControlType = "standard" | "iframe" | "lookup" | "optionset" | "subgrid" | "webresource" | "notes" | "timercontrol" | "kbsearch" | "quickform"; - /** - * Date attribute formats for Xrm.Page.Attribute.getFormat(), used by DateAttribute. - */ - export type DateAttributeFormat = "date" | "datetime"; - - /** - * Integer attribute formats for Xrm.Page.Attribute.getFormat(), used by NumberAttribute. - */ - export type IntegerAttributeFormat = "duration" | "none"; - - /** - * OptionSet attribute formats for Xrm.Page.Attribute.getFormat(), used by OptionSetAttribute. - */ - export type OptionSetAttributeFormat = "language" | "timezone"; - - /** - * String attribute formats for Xrm.Page.Attribute.getFormat(), used by StringAttribute. - */ - export type StringAttributeFormat = "email" | "phone" | "text" | "textarea" | "tickersymbol" | "url"; - - /** - * Attribute types for Xrm.ui.ProcessMonitor Xrm.Page.Attribute.setDisplayState(). - */ - export type AttributeType = "boolean" | "datetime" | "decimal" | "double" | "integer" | "lookup" | "memo" | "money" | "optionset" | "string"; - - /** - * Attribute formats for Xrm.Page.Attribute.getFormat(). - */ - export type AttributeFormat = DateAttributeFormat | IntegerAttributeFormat | OptionSetAttributeFormat | StringAttributeFormat; - /** * Interface for a CRM Business Process Flow instance. */ @@ -1184,9 +836,9 @@ declare namespace Xrm } /** - * Interface for UI elements with labels. + * Base interface for UI elements. */ - export interface UiLabelElement + export interface UiElement { /** * Gets the label. @@ -1194,33 +846,21 @@ declare namespace Xrm * @return The label. */ getLabel(): string; - - /** - * Sets the label. - * - * @param {string} label The label. - */ - setLabel( label: string ): void; - } - /** - * Interface for UI elements which can have the visibility value read. - */ - export interface UiCanGetVisibleElement - { /** * Gets the visibility state. * * @return true if the tab is visible, otherwise false. */ getVisible(): boolean; - } - - /** - * Base interface for standard UI elements. - */ - export interface UiStandardElement extends UiCanGetVisibleElement, UiLabelElement - { + + /** + * Sets the label. + * + * @param {string} label The label. + */ + setLabel( label: string ): void; + /** * Sets the visibility state. * @@ -1239,44 +879,15 @@ declare namespace Xrm */ setFocus(): void; } - - /** - * Interface for controls which methods provide immediate feedback or take actions as user types in a control. - * Contains methods which can be used to perform data validations in a control even before the user commits (saves) the value in a form. - */ - export interface UiKeyPressable - { - /** - * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. - * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. - * - * @param {ContextSensitiveHandler} handler The function reference. - */ - addOnKeyPress( handler: ContextSensitiveHandler ): void; - - /** - * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. - */ - fireOnKeyPress(): void; - - /** - * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. - * - * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. - * @param {ContextSensitiveHandler} handler The function reference. - */ - removeOnKeyPress( handler: ContextSensitiveHandler ): void; - } /** * Interface for Result value of AutoCompleteResultSet */ - export interface AutoCompleteResult - { + export interface AutoCompleteResult { /** * The Identifier */ - id: string | number; + id: string|number; /** * Url of the icon to display @@ -1292,8 +903,7 @@ declare namespace Xrm /** * Interface for command of AutoCompleteResultSet. This is displayed at the bottom of the auto complete view */ - export interface AutoCompleteCommand - { + export interface AutoCompleteCommand { /** * The Identifier */ @@ -1318,8 +928,7 @@ declare namespace Xrm /** * Interface for showAutoComplete argument */ - export interface AutoCompleteResultSet - { + export interface AutoCompleteResultSet { /** * Results to show */ @@ -1374,17 +983,17 @@ declare namespace Xrm export interface Privilege { /** - * True if the user can read. + * true if the user can read. */ canRead: boolean; /** - * True if the user can update. + * true if the user can update. */ canUpdate: boolean; /** - * True if the user can create. + * true if the user can create. */ canCreate: boolean; } @@ -1423,7 +1032,7 @@ declare namespace Xrm * string */ getAttributeType(): string; - + /** * Gets the attribute format. * @@ -1444,7 +1053,7 @@ declare namespace Xrm * timezone (optionset) * url (string) */ - getFormat(): AttributeFormat; + getFormat(): string; /** * Gets a boolean value indicating whether this Attribute has unsaved changes. @@ -1502,7 +1111,7 @@ declare namespace Xrm * * @param {string} requirementLevel The requirement level, as either "none", "required", or "recommended" */ - setRequiredLevel( requirementLevel: RequirementLevel | string ): void; + setRequiredLevel(requirementLevel: RequirementLevel | string): void; /** * Sets the submit mode. @@ -1511,26 +1120,12 @@ declare namespace Xrm * * @remarks The default value is "dirty" */ - setSubmitMode( submitMode: SubmitMode | string ): void; + setSubmitMode(submitMode: SubmitMode | string): void; /** * A collection of all the controls on the form that interface with this attribute. */ controls: Collection.ItemCollection; - - /** - * Gets the value. - * - * @return The value. - */ - getValue(): any; - - /** - * Sets the value. - * - * @param {any} value The value. - */ - setValue( value: any ): void; } /** @@ -1540,16 +1135,6 @@ declare namespace Xrm */ export interface NumberAttribute extends Attribute { - /** - * Gets the attribute format. - * - * @return The format of the attribute. - * - * @remarks Values returned are: duration - * none - */ - getFormat(): IntegerAttributeFormat; - /** * Gets the maximum value allowed. * @@ -1586,11 +1171,6 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: number ): void; - - /** - * A collection of all the controls on the form that interface with this attribute. - */ - controls: Collection.ItemCollection; } /** @@ -1600,20 +1180,6 @@ declare namespace Xrm */ export interface StringAttribute extends Attribute { - /** - * Gets the attribute format. - * - * @return The format of the attribute. - * - * @remarks Values returned are: email - * phone - * text - * textarea - * tickersymbol - * url - */ - getFormat(): StringAttributeFormat; - /** * Gets maximum length allowed. * @@ -1640,11 +1206,6 @@ declare namespace Xrm * with this method. */ setValue( value: string ): void; - - /** - * A collection of all the controls on the form that interface with this attribute. - */ - controls: Collection.ItemCollection; } /** @@ -1658,8 +1219,7 @@ declare namespace Xrm * Gets the initial value of the attribute. * * @return The initial value. - * - * @remarks Valid for OptionSet and boolean attribute types + * @remarks Valid for optionset and boolean attribute types */ getInitialValue(): number | boolean; } @@ -1695,16 +1255,6 @@ declare namespace Xrm */ export interface DateAttribute extends Attribute { - /** - * Gets the attribute format. - * - * @return The format of the attribute. - * - * @remarks Values returned are: date - * datetime - */ - getFormat(): DateAttributeFormat; - /** * Gets the value. * @@ -1720,11 +1270,6 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: Date ): void; - - /** - * A collection of all the controls on the form that interface with this attribute. - */ - controls: Collection.ItemCollection; } /** @@ -1734,16 +1279,6 @@ declare namespace Xrm */ export interface OptionSetAttribute extends EnumAttribute { - /** - * Gets the attribute format. - * - * @return The format of the attribute. - * - * @remarks Values returned are: language - * timezone - */ - getFormat(): OptionSetAttributeFormat; - /** * Gets the option matching a value. * @@ -1801,11 +1336,6 @@ declare namespace Xrm * with this method. */ setValue( value: number ): void; - - /** - * A collection of all the controls on the form that interface with this attribute. - */ - controls: Collection.ItemCollection; } /** @@ -1837,11 +1367,6 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: LookupValue[] ): void; - - /** - * A collection of all the controls on the form that interface with this attribute. - */ - controls: Collection.ItemCollection; } /** @@ -1939,7 +1464,6 @@ declare namespace Xrm * Gets save mode, as an integer. * * @return The save mode. - * * @remarks Values returned are: 1 Save * 2 Save and Close * 59 Save and New @@ -1964,7 +1488,6 @@ declare namespace Xrm /** * Prevents the save operation from being submitted to the server. - * * @remarks All remaining "on save" handlers will continue execution. */ preventDefault(): void; @@ -2108,7 +1631,6 @@ declare namespace Xrm * Called when process change methods have completed. * * @param {string} status The result of the process change operation. - * * @remarks Values returned are: success (The operation succeeded.) * crossEntity (The previous stage is for a different entity.) * beginning (The active stage is the first stage of the active path.) @@ -2123,19 +1645,29 @@ declare namespace Xrm */ export type ProcessDictionary = { [index: string]: string }; } - + /** * Interface for Xrm.Page.ui controls. * * @sa UiElement */ - export interface Control extends UiLabelElement, UiCanGetVisibleElement + export interface Control extends UiElement, UiFocusable { /** - * Gets the controls type. + * Clears the notification identified by uniqueId. + * + * @param {string} uniqueId (Optional) Unique identifier. + * + * @return true if it succeeds, false if it fails. + * + * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. + */ + clearNotification( uniqueId?: string ): boolean; + + /** + * Gets the control's type. * * @return The control type. - * * @remarks Values returned are: standard * iframe * lookup @@ -2145,12 +1677,16 @@ declare namespace Xrm * notes * timercontrol * kbsearch (CRM Online Only, use parature.d.ts) - * quickform (see ui.QuickForm) - * customcontrol: . (A custom control for mobile phone and tablet clients). - * customsubgrid: . (A custom dataset control for mobile phone and tablet clients). */ - getControlType(): ControlType | string; - + getControlType(): string; + + /** + * Gets a boolean value, indicating whether the control is disabled. + * + * @return true if it is disabled, otherwise false. + */ + getDisabled(): boolean; + /** * Gets the name of the control on the form. * @@ -2175,33 +1711,7 @@ declare namespace Xrm * @return The parent Section. */ getParent(): Section; - } - - /** - * Interface for a standard control. - * - * @sa Control - */ - export interface StandardControl extends Control, UiStandardElement, UiFocusable - { - /** - * Clears the notification identified by uniqueId. - * - * @param {string} uniqueId (Optional) Unique identifier. - * - * @return true if it succeeds, false if it fails. - * - * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. - */ - clearNotification( uniqueId?: string ): boolean; - - /** - * Gets a boolean value, indicating whether the control is disabled. - * - * @return true if it is disabled, otherwise false. - */ - getDisabled(): boolean; - + /** * Sets the state of the control to either enabled, or disabled. * @@ -2221,7 +1731,15 @@ declare namespace Xrm * appears next to the control. Tapping on the icon will display the message. */ setNotification( message: string, uniqueId: string ): boolean; + } + /** + * Interface for a standard control. + * + * @sa Control + */ + export interface StandardControl extends Control + { /** * Gets the control's bound attribute. * @@ -2238,17 +1756,28 @@ declare namespace Xrm */ getAttribute(): Attribute; } - + /** - * Interface for Auto Lookup Control. - * This is not an Entity Lookup, but a control that supports AutoComplete / KeyPress Events (Text or Number) - * - * @remarks This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. + * Interace for Auto Lookup Control + * This is not an Entity Lookup, but a control that supports AutoComplete/KeyPress Events (Text) + * NOTE * This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. * * @sa StandardControl */ - export interface AutoLookupControl extends StandardControl, UiKeyPressable - { + export interface AutoLookupControl extends StandardControl { + /** + * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. + * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. + * + * @param {ContextSensitiveHandler} handler The function reference. + */ + addOnKeyPress(handler: ContextSensitiveHandler): void; + + /** + * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. + */ + fireOnKeyPress(): void; + /** * Gets the latest value in a control as the user types characters in a specific text or number field. * This method helps you to build interactive experiences by validating data and alerting users as they type characters in a control. @@ -2261,7 +1790,15 @@ declare namespace Xrm * Hides the auto-completion drop-down list configured for a specific text field */ hideAutoComplete(): void; - + + /** + * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. + * + * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. + * @param {ContextSensitiveHandler} handler The function reference. + */ + removeOnKeyPress(handler: ContextSensitiveHandler): void; + /** * Shows upt to 10 matching strings in a drop-down list as users press keys to type charactrer in a specific text field. * On selecting an item in the drop-down list, the value in the text field changes to the selected item, the drop-down list disappears, and the OnChange event for the text field is invoked @@ -2270,36 +1807,6 @@ declare namespace Xrm showAutoComplete(resultSet: AutoCompleteResultSet): void; } - /** - * Interface for a String control. - * - * @sa StandardControl - */ - export interface StringControl extends AutoLookupControl - { - /** - * Gets the control's bound attribute. - * - * @return The attribute. - */ - getAttribute(): StringAttribute; - } - - /** - * Interface for a Number control. - * - * @sa StandardControl - */ - export interface NumberControl extends AutoLookupControl - { - /** - * Gets the control's bound attribute. - * - * @return The attribute. - */ - getAttribute(): NumberAttribute; - } - /** * Interface for a Date control. * @@ -2603,7 +2110,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface Tab extends UiStandardElement, UiFocusable + export interface Tab extends UiElement, UiFocusable { /** * Gets display state of the tab. @@ -2644,7 +2151,7 @@ declare namespace Xrm * * @sa UiElement */ - export interface Section extends UiStandardElement + export interface Section extends UiElement { /** * Gets the name of the section. @@ -2676,14 +2183,14 @@ declare namespace Xrm */ export type FormNotificationLevel = "ERROR" | "INFO" | "WARNING"; - /** + /** * Display States for Xrm.ui.ProcessMonitor.setDisplayState(). - */ + */ export type DisplayState = "collapsed" | "expanded"; - /** + /** * Interface for Xrm.Page.ui.process API - */ + */ export interface ProcessManager { /** @@ -2691,7 +2198,7 @@ declare namespace Xrm * * @param {string} displayState Display state of the process flow control, as either "expanded" or "collapsed" */ - setDisplayState( displayState: ui.DisplayState ): void; + setDisplayState(displayState: ui.DisplayState ): void; /** * Sets the visibility state. @@ -2823,7 +2330,7 @@ declare namespace Xrm } /** - * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to + * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to * the ViewSelector.setCurrentView method. */ export interface ViewSelectorItem @@ -2835,93 +2342,6 @@ declare namespace Xrm */ getEntityReference(): LookupValue; } - - /** - * Interface for a quick view control instance on a form. - * - * @see {@link https://msdn.microsoft.com/en-us/library/mt736908.aspx#bkmk_isLoaded} for details. - */ - export interface QuickForm extends Control, UiLabelElement, UiCanGetVisibleElement - { - /** - * Gets the constituent controls in a quick view control. - * - * @return An array of controls. - * - * @remarks Constituent controls in a quick view control are read only. - */ - getControl(): Page.Control[]; - - /** - * Gets the constituent controls in a quick view control. - * - * @tparam T A Control type - * @param {string} controlName Name of the control. - * - * @return The control. - * - * @remarks Constituent controls in a quick view control are read only. - */ - getControl( controlName: string ): T; - - /** - * Gets the constituent controls in a quick view control. - * - * @param {string} controlName Name of the control. - * - * @return The control. - * - * @remarks Constituent controls in a quick view control are read only. - */ - getControl( controlName: string ): Page.Control; - - /** - * Gets a control by index. - * - * @tparam T A Control type - * @param {number} index The control index. - * - * @return The control. - * - * @remarks Constituent controls in a quick view control are read only. - */ - getControl( index: number ): T; - - /** - * Gets a control by index. - * - * @param {number} index The control index. - * - * @return The control. - * - * @remarks Constituent controls in a quick view control are read only. - */ - getControl( index: number ): Page.Control; - - /** - * Gets the controls type. - * - * @return Returns a string value that categorizes quick view controls. - */ - getControlType(): "quickform"; - - /** - * Returns whether the data binding for the constituent controls in a quick view control is complete. - * - * @return True is the data binding for a constituent control is complete, otherwise false. - * because the quick view form that the control is bound to may not have loaded completely. - * As a result, using the getAttribute or any data-related methods on a constituent control might not work. - * The isLoaded method for the quick view control helps determine the data binding status for constituent controls in a quick view control. - * - * @remarks The data binding for the constituent controls in a quick view control may not be complete during the main form OnLoad event - */ - isLoaded(): boolean; - - /** - * Refreshes the data displayed in a quick view control. - */ - refresh(): void; - } } /** @@ -2930,7 +2350,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface NavigationItem extends UiStandardElement, UiFocusable + export interface NavigationItem extends UiElement, UiFocusable { /** * Gets the name of the item. @@ -3007,13 +2427,11 @@ declare namespace Xrm /** * Command Bar Display options for Xrm.Url.FormOpenParameters.cmdbar, Xrm.Url.ViewOpenParameters.cmdbar, and Xrm.Utility.FormOpenParameters.cmdbar. */ - export type CmdBarDisplay = "true" | "false"; /** * Navigation Bar Display options for Xrm.Url.FormOpenParameters.navbar, Xrm.Url.ViewOpenParameters.navbar, and Xrm.Utility.FormOpenParameters.navbar. */ export type NavBarDisplay = "entity" | "off" | "on"; - /** * Report Open Action options for Xrm.Url.ReportOpenParameters.actions. */ diff --git a/xrm/xrm-tests.ts b/xrm/xrm-tests.ts index 56d8f32b3c..1893b9b89a 100644 --- a/xrm/xrm-tests.ts +++ b/xrm/xrm-tests.ts @@ -75,8 +75,7 @@ Xrm.Utility.openQuickCreate("account").then(( object ) => { if (object) alert( ` /// Make all controls visible. -// Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); // No longer works -Xrm.Page.ui.controls.forEach((control: Xrm.Page.StandardControl) => { control.setVisible(true); }); // Must cast to StandardControl +Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); /// Make all tabs and sections visible. @@ -167,28 +166,4 @@ autoCompleteControl.hideAutoComplete(); -/// Demonstrate v8.2 quick form controls - -const quickForm = Xrm.Page.ui.quickForms.get(0); -quickForm.getControlType(); // == "quickform" -quickForm.getName(); -quickForm.getParent(); -quickForm.getVisible(); // From UiCanSetVisibleElement -quickForm.getLabel(); // From UiLabelElement -quickForm.setLabel("Label"); // From UiLabelElement -quickForm.refresh(); - -// Get standard control -const ctrl = Xrm.Page.getControl("controlName"); -ctrl.getControlType() -ctrl.getName(); -ctrl.getParent(); -ctrl.getLabel(); -ctrl.setLabel("Label name"); -ctrl.getVisible(); -ctrl.setVisible(true); - - - - From 0c3a0003e1858ece009bc33f93e25cd2c6970886 Mon Sep 17 00:00:00 2001 From: clownwilleatme Date: Tue, 7 Feb 2017 10:34:09 +1100 Subject: [PATCH 131/231] Adding XRM v8.2 --- xrm/index.d.ts | 836 ++++++++++++++++++++++++++++++++++++++++------- xrm/xrm-tests.ts | 26 +- 2 files changed, 734 insertions(+), 128 deletions(-) diff --git a/xrm/index.d.ts b/xrm/index.d.ts index 36bd556c13..01c627f33d 100644 --- a/xrm/index.d.ts +++ b/xrm/index.d.ts @@ -93,7 +93,7 @@ declare namespace Xrm * Gets a control matching controlName. * * @tparam T A Control type - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ @@ -102,12 +102,22 @@ declare namespace Xrm /** * Gets a control matching controlName. * - * @param {string} controlName Name of the control. + * @param {string} controlName Name of the control. * * @return The control. */ getControl( controlName: string ): Page.Control; + /** + * Gets a control by index. + * + * @tparam T A Control type + * @param {number} index The control index. + * + * @return The control. + */ + getControl( index: number ): T; + /** * Gets a control by index. * @@ -166,11 +176,10 @@ declare namespace Xrm * @param {OpenParameters} parameters (Optional) A dictionary object that passes extra query string * parameters to the form. Invalid query string parameters will cause an * error. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - openQuickCreate( - entityLogicalName: string, - createFromEntity?: Page.LookupValue, - parameters?: Utility.OpenParameters ): Async.XrmPromise; + openQuickCreate( entityLogicalName: string, createFromEntity?: Page.LookupValue, parameters?: Utility.OpenParameters ): + Async.XrmPromise; /** * Opens an entity form. @@ -205,16 +214,194 @@ declare namespace Xrm */ openWebResource( webResourceName: string, webResourceData?: string, width?: number, height?: number ): Window; } + + /** + * Provides methods to create and manage records in the mobile clients (for phones tablets). + */ + Mobile: { + /** + * Provides methods to create and manage records in the mobile clients while working in the offline mode. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. + */ + offline: { + /** + * Returns whether an entity is offline enabled. + * + * @param {string} entityType The logical name of the entity. + * + * @return {boolean} True if the entity is offline enabled; otherwise False. + */ + isOfflineEnabled( entityType: string ): boolean; + + /** + * Creates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {Object} data A dictionary object containing key : value pairs for the record to create. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot create intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + createRecord( entityType: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Retrieves an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to retrieve. + * @param {string} options (Optional) OData system query options to retrieve your data. Supports $select and $expand + * Example: ?$select=name&$expand=primarycontactid($select=contactid,fullname) + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks Only $select option can be specified within $expand. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveRecord( entityType: string, id: string, options: string ): Async.XrmPromise; + + /** + * Retrieves a collection of entity records in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} options (Optional) The logical name of the enti + * @param {string} maxPageSize (Optional) A positive number to indicates the number of entity records to be returned per page. + * If you do not specify this parameter, the default value is passed as 5000. + * If the number of records being retrieved is more than maxPageSize, an @odata.nextLink property + * will be returned, and you can use the value of the @odata.nextLink property with a new GET + * request to return next set of records. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks A maximum of 5000 related records can be retrieved when using $expand. + * Only $select option can be specified within $expand. + * $skip query option is not supported. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveMultipleRecords( entityType: string, options: string, maxPageSize: number ): Async.XrmPromise; + + /** + * Updates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to update. + * @param {Object} data A dictionary object containing key : value pairs for the record to update. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot update intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + updateRecord( entityType: string, id: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Deletes an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to delete. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot delete intersect and activity party entities. + */ + deleteRecord( entityType: string, id: string ): Async.XrmPromise; + } + } + + /** + * Provides methods to display a web page in the side pane of web client. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt790281.aspx} for details. + */ + Panel: { + /** + * Displays the web page represented by a URL in the static area in the side pane, which appears on all pages in the web client. + * + * @param {string} url URL of the page to be loaded in the side pane static area. + * @param {string} url Title of the side pane static area. + * + * @remarks This method is only supported for the web client. + */ + LoadPanel( url: string, title: string ): void; + } } /** * Client Types for Xrm.Page.context.getClient(). */ export type Client = "Web" | "Outlook" | "Mobile"; + /** * Client States for Xrm.Page.context.getClientState(). */ export type ClientState = "Online" | "Offline"; + /** * Themes for Xrm.Page.context.getCurrentTheme(). */ @@ -254,6 +441,7 @@ declare namespace Xrm * Gets client's base URL for Dynamics CRM * * @return The client's base URL + * * @remarks For Dynamics CRM On-Premises: http(s)://server/org * For Dynamics CRM Online: https://org.crm.dynamics.com * For Dynamics CRM for Outlook (Offline): http://localhost:2525 @@ -354,6 +542,20 @@ declare namespace Xrm prependOrgName( sPath: string ): string; } + /** + * Defines save options to control how appointment, recurring appointment, or service activity records are processed. + * + * @see {@link https://msdn.microsoft.com/en-us/library/dn481607.aspx#Anchor_2} for details. + */ + interface SaveOptions + { + /** + * Indicates whether to use the Book or Reschedule messages rather than the Create or Update messages. + * Applicable to appointment, recurring appointment, or service activity records. + */ + UseSchedulingEngine?: boolean; + } + /** * Interface for the Xrm.Page.data object. */ @@ -364,16 +566,25 @@ declare namespace Xrm * * @param {boolean} save true to save the record, after the refresh. * - * @return An Async.XrmPromise. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - refresh( save: boolean ): Async.XrmPromise; + refresh( save: boolean ): Async.XrmPromise; /** * Asynchronously saves the record. * - * @return An Async.XrmPromise. + * @return {Async.XrmPromise} Returns an asynchronous promise. */ - save(): Async.XrmPromise; + save(): Async.XrmPromise; + + /** + * Asynchronously saves the record with the option to set callback functions to be executed after the save operation is completed. + * + * @param {saveOptions} saveOptions Options to control how appointment, recurring appointment, or service activity records are processed. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + */ + save( saveOptions: SaveOptions ): Async.XrmPromise; /** * The record context of the form. @@ -393,12 +604,28 @@ declare namespace Xrm */ export interface Ui { + /** + * Displays a form level notification. Any number of notifications can be displayed and will remain until removed using clearFormNotification. + * The height of the notification area is limited so each new message will be added to the top. + * + * @param {string} message The text of the notification message. + * @param {Page.ui.FormNotificationLevel} level The level of the notification which defines how the message will be displayed, such as the icon. + * @param {string} uniqueId Unique identifier for the notification which is used with clearFormNotification to remove the notification. + * + * @return true if it succeeds, otherwise false. + * + * @remarks Values for level are: ERROR Notification will use the system error icon. + * WARNING Notification will use the system warning icon. + * INFO Notification will use the system info icon. + */ + setFormNotification( message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; + /** * Clears the form notification described by uniqueId. * * @param {string} uniqueId Unique identifier. * - * @return true if it succeeds, otherwise false. + * @return True if it succeeds, otherwise false. */ clearFormNotification( uniqueId: string ): boolean; @@ -441,14 +668,15 @@ declare namespace Xrm getViewPortWidth(): number; /** - * Re-evaluates the ribbon's configured EnableRules + * Re-evaluates the ribbon's configured EnableRules. * * @remarks This method does not work with Microsoft Dynamics CRM for tablets. */ refreshRibbon(): void; - setFormNotification(message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; - + /** + * The business process flow API, used to interact with the business process flow control in a form. + */ process: Page.ui.ProcessManager; /** @@ -474,6 +702,11 @@ declare namespace Xrm * A reference to the collection of tabs on the form. */ tabs: Collection.ItemCollection; + + /** + * A collection of all the quick view controls on a form using the new form rendering engine (also called "turbo forms"). + */ + quickForms: Collection.ItemCollection; } /** @@ -481,38 +714,115 @@ declare namespace Xrm */ export module Async { - /** - * Object passed to ErrorCallbackDelegate - */ - export interface ErrorCallbackObject - { - errorCode: number; - message: string; - } - - export interface SuccessCallbackObject - { - savedEntityReference: Page.LookupValue; - } - /** * Called when the operation is successful. - * Currently, only the Xrm.Utility.openQuickCreate successCallback - * is passed a parameter so an optional parameter for it is included */ - export type SuccessCallbackDelegate = (object?: SuccessCallbackObject ) => void; - + export type SuccessCallbackDelegate = () => void; + /** * Called when the operation fails. * - * @param {ErrorCallbackObject} error The error object + * @param {ErrorCallbackObject} error The error object. */ export type ErrorCallbackDelegate = ( error: ErrorCallbackObject ) => void; /** - * Interface for Xrm.Page.data promises. + * Called when the Xrm.Utility.openQuickCreate operation is successful and a new record has been created. + * + * @param {OpenQuickCreateSuccessCallbackObject} record An object which contains a lookup value which identifies the record which has been created. + * + * @see {Xrm.Utility.openQuickCreate} */ - export interface XrmPromise + export type QuickCreateSuccessCallbackDelegate = ( record: OpenQuickCreateSuccessCallbackObject ) => void; + + /** + * Called when the offline operation is successful. + * + * @param {OfflineOperationSuccessCallbackObject} record The record returned from the operation. + * + * @see {Xrm.Mobile.offline} + */ + export type OfflineOperationSuccessCallbackDelegate = ( record: OfflineOperationSuccessCallbackObject ) => void; + + /** + * Called when the offline retrieve multiple operation is successful. + * + * @param {OfflineRetrieveMultipleSuccessCallbackDelegate} resultSet The dictionary of records retrieved from the operation. + * + * @see {Xrm.Mobile.offline.retrieveMultipleRecords} + */ + export type OfflineRetrieveMultipleSuccessCallbackDelegate = (resultSet: { [key: string]: any }[]) => void; + + /** + * Called when the operation fails. + * + * @param {OfflineErrorCallbackObject} error The error object. + * + * @see {Xrm.Mobile.offline} + */ + export type OfflineErrorCallbackDelegate = (error: OfflineErrorCallbackObject) => void; + + + /** + * Object passed to ErrorCallbackDelegate. + */ + export interface ErrorCallbackObject + { + /** + * The error code. + */ + errorCode: number; + + /** + * An error message describing the issue. + */ + message: string; + } + + /** + * Object passed to QuickCreateSuccessCallbackDelegate. + */ + export interface OpenQuickCreateSuccessCallbackObject + { + /** + * A lookup value which identifies the record which has been created. + */ + savedEntityReference: Page.LookupValue; + } + + /** + * Object passed to OfflineOperationSuccessCallbackDelegate; + */ + export interface OfflineOperationSuccessCallbackObject + { + /** + * GUID of the record; + */ + id: string; + /** + * Logical name of the entity. + */ + logicalName: string; + } + + /** + * Object passed to OfflineErrorCallbackDelegate. + */ + export interface OfflineErrorCallbackObject extends ErrorCallbackObject + { + /** + * An internal error message that might contain additional details about the issue. + */ + debugMessage: string; + } + + /** + * Interface for asynchronous promises used in Xrm.Page.data and Xrm.Utility.openQuickCreate. + * + * @tparam TSuccessCallback Generic success callback parameter. + * @tparam TErrorCallback Generic error callback parameter. + */ + export interface XrmPromise { /** * A basic 'then' promise. @@ -520,7 +830,7 @@ declare namespace Xrm * @param {SuccessCallbackDelegate} successCallback The success callback. * @param {ErrorCallbackDelegate} errorCallback The error callback. */ - then( successCallback: SuccessCallbackDelegate, errorCallback: ErrorCallbackDelegate ): void; + then( successCallback: TSuccessCallback, errorCallback: TErrorCallback ): void; } } @@ -633,19 +943,57 @@ declare namespace Xrm * Requirement Level for Xrm.Page.Attribute.getRequiredLevel() and Xrm.Page.Attribute.setRequiredLevel(). */ export type RequirementLevel = "none" | "recommended" | "required"; + /** * Save Modes for Xrm.Page.Entity.save(). */ export type SaveMode = "saveandclose" | "saveandnew"; + /** * Status for Xrm.Page.Stage.getStatus(). */ export type Status = "active" | "inactive"; + /** * Submit Mode for Xrm.Page.Attribute.getSubmitMode() and Xrm.Page.Attribute.setSubmitMode(). */ export type SubmitMode = "always" | "dirty" | "never"; + + /** + * Control types for Xrm.Page.Control.getControlType(). + */ + export type ControlType = "standard" | "iframe" | "lookup" | "optionset" | "subgrid" | "webresource" | "notes" | "timercontrol" | "kbsearch" | "quickform"; + /** + * Date attribute formats for Xrm.Page.Attribute.getFormat(), used by DateAttribute. + */ + export type DateAttributeFormat = "date" | "datetime"; + + /** + * Integer attribute formats for Xrm.Page.Attribute.getFormat(), used by NumberAttribute. + */ + export type IntegerAttributeFormat = "duration" | "none"; + + /** + * OptionSet attribute formats for Xrm.Page.Attribute.getFormat(), used by OptionSetAttribute. + */ + export type OptionSetAttributeFormat = "language" | "timezone"; + + /** + * String attribute formats for Xrm.Page.Attribute.getFormat(), used by StringAttribute. + */ + export type StringAttributeFormat = "email" | "phone" | "text" | "textarea" | "tickersymbol" | "url"; + + /** + * Attribute types for Xrm.ui.ProcessMonitor Xrm.Page.Attribute.setDisplayState(). + */ + export type AttributeType = "boolean" | "datetime" | "decimal" | "double" | "integer" | "lookup" | "memo" | "money" | "optionset" | "string"; + + /** + * Attribute formats for Xrm.Page.Attribute.getFormat(). + */ + export type AttributeFormat = DateAttributeFormat | IntegerAttributeFormat | OptionSetAttributeFormat | StringAttributeFormat; + /** * Interface for a CRM Business Process Flow instance. */ @@ -836,9 +1184,9 @@ declare namespace Xrm } /** - * Base interface for UI elements. + * Interface for UI elements with labels. */ - export interface UiElement + export interface UiLabelElement { /** * Gets the label. @@ -846,21 +1194,33 @@ declare namespace Xrm * @return The label. */ getLabel(): string; - - /** - * Gets the visibility state. - * - * @return true if the tab is visible, otherwise false. - */ - getVisible(): boolean; - + /** * Sets the label. * * @param {string} label The label. */ setLabel( label: string ): void; + } + /** + * Interface for UI elements which can have the visibility value read. + */ + export interface UiCanGetVisibleElement + { + /** + * Gets the visibility state. + * + * @return true if the tab is visible, otherwise false. + */ + getVisible(): boolean; + } + + /** + * Base interface for standard UI elements. + */ + export interface UiStandardElement extends UiCanGetVisibleElement, UiLabelElement + { /** * Sets the visibility state. * @@ -879,15 +1239,44 @@ declare namespace Xrm */ setFocus(): void; } + + /** + * Interface for controls which methods provide immediate feedback or take actions as user types in a control. + * Contains methods which can be used to perform data validations in a control even before the user commits (saves) the value in a form. + */ + export interface UiKeyPressable + { + /** + * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. + * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. + * + * @param {ContextSensitiveHandler} handler The function reference. + */ + addOnKeyPress( handler: ContextSensitiveHandler ): void; + + /** + * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. + */ + fireOnKeyPress(): void; + + /** + * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. + * + * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. + * @param {ContextSensitiveHandler} handler The function reference. + */ + removeOnKeyPress( handler: ContextSensitiveHandler ): void; + } /** * Interface for Result value of AutoCompleteResultSet */ - export interface AutoCompleteResult { + export interface AutoCompleteResult + { /** * The Identifier */ - id: string|number; + id: string | number; /** * Url of the icon to display @@ -903,7 +1292,8 @@ declare namespace Xrm /** * Interface for command of AutoCompleteResultSet. This is displayed at the bottom of the auto complete view */ - export interface AutoCompleteCommand { + export interface AutoCompleteCommand + { /** * The Identifier */ @@ -928,7 +1318,8 @@ declare namespace Xrm /** * Interface for showAutoComplete argument */ - export interface AutoCompleteResultSet { + export interface AutoCompleteResultSet + { /** * Results to show */ @@ -983,17 +1374,17 @@ declare namespace Xrm export interface Privilege { /** - * true if the user can read. + * True if the user can read. */ canRead: boolean; /** - * true if the user can update. + * True if the user can update. */ canUpdate: boolean; /** - * true if the user can create. + * True if the user can create. */ canCreate: boolean; } @@ -1032,7 +1423,7 @@ declare namespace Xrm * string */ getAttributeType(): string; - + /** * Gets the attribute format. * @@ -1053,7 +1444,7 @@ declare namespace Xrm * timezone (optionset) * url (string) */ - getFormat(): string; + getFormat(): AttributeFormat; /** * Gets a boolean value indicating whether this Attribute has unsaved changes. @@ -1111,7 +1502,7 @@ declare namespace Xrm * * @param {string} requirementLevel The requirement level, as either "none", "required", or "recommended" */ - setRequiredLevel(requirementLevel: RequirementLevel | string): void; + setRequiredLevel( requirementLevel: RequirementLevel | string ): void; /** * Sets the submit mode. @@ -1120,12 +1511,26 @@ declare namespace Xrm * * @remarks The default value is "dirty" */ - setSubmitMode(submitMode: SubmitMode | string): void; + setSubmitMode( submitMode: SubmitMode | string ): void; /** * A collection of all the controls on the form that interface with this attribute. */ controls: Collection.ItemCollection; + + /** + * Gets the value. + * + * @return The value. + */ + getValue(): any; + + /** + * Sets the value. + * + * @param {any} value The value. + */ + setValue( value: any ): void; } /** @@ -1135,6 +1540,16 @@ declare namespace Xrm */ export interface NumberAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: duration + * none + */ + getFormat(): IntegerAttributeFormat; + /** * Gets the maximum value allowed. * @@ -1171,6 +1586,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: number ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1180,6 +1600,20 @@ declare namespace Xrm */ export interface StringAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: email + * phone + * text + * textarea + * tickersymbol + * url + */ + getFormat(): StringAttributeFormat; + /** * Gets maximum length allowed. * @@ -1206,6 +1640,11 @@ declare namespace Xrm * with this method. */ setValue( value: string ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1219,7 +1658,8 @@ declare namespace Xrm * Gets the initial value of the attribute. * * @return The initial value. - * @remarks Valid for optionset and boolean attribute types + * + * @remarks Valid for OptionSet and boolean attribute types */ getInitialValue(): number | boolean; } @@ -1255,6 +1695,16 @@ declare namespace Xrm */ export interface DateAttribute extends Attribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: date + * datetime + */ + getFormat(): DateAttributeFormat; + /** * Gets the value. * @@ -1270,6 +1720,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: Date ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1279,6 +1734,16 @@ declare namespace Xrm */ export interface OptionSetAttribute extends EnumAttribute { + /** + * Gets the attribute format. + * + * @return The format of the attribute. + * + * @remarks Values returned are: language + * timezone + */ + getFormat(): OptionSetAttributeFormat; + /** * Gets the option matching a value. * @@ -1336,6 +1801,11 @@ declare namespace Xrm * with this method. */ setValue( value: number ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1367,6 +1837,11 @@ declare namespace Xrm * @remarks Attributes on Quick Create Forms will not save values set with this method. */ setValue( value: LookupValue[] ): void; + + /** + * A collection of all the controls on the form that interface with this attribute. + */ + controls: Collection.ItemCollection; } /** @@ -1464,6 +1939,7 @@ declare namespace Xrm * Gets save mode, as an integer. * * @return The save mode. + * * @remarks Values returned are: 1 Save * 2 Save and Close * 59 Save and New @@ -1488,6 +1964,7 @@ declare namespace Xrm /** * Prevents the save operation from being submitted to the server. + * * @remarks All remaining "on save" handlers will continue execution. */ preventDefault(): void; @@ -1631,6 +2108,7 @@ declare namespace Xrm * Called when process change methods have completed. * * @param {string} status The result of the process change operation. + * * @remarks Values returned are: success (The operation succeeded.) * crossEntity (The previous stage is for a different entity.) * beginning (The active stage is the first stage of the active path.) @@ -1645,29 +2123,19 @@ declare namespace Xrm */ export type ProcessDictionary = { [index: string]: string }; } - + /** * Interface for Xrm.Page.ui controls. * * @sa UiElement */ - export interface Control extends UiElement, UiFocusable + export interface Control extends UiLabelElement, UiCanGetVisibleElement { /** - * Clears the notification identified by uniqueId. - * - * @param {string} uniqueId (Optional) Unique identifier. - * - * @return true if it succeeds, false if it fails. - * - * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. - */ - clearNotification( uniqueId?: string ): boolean; - - /** - * Gets the control's type. + * Gets the controls type. * * @return The control type. + * * @remarks Values returned are: standard * iframe * lookup @@ -1677,16 +2145,12 @@ declare namespace Xrm * notes * timercontrol * kbsearch (CRM Online Only, use parature.d.ts) + * quickform (see ui.QuickForm) + * customcontrol: . (A custom control for mobile phone and tablet clients). + * customsubgrid: . (A custom dataset control for mobile phone and tablet clients). */ - getControlType(): string; - - /** - * Gets a boolean value, indicating whether the control is disabled. - * - * @return true if it is disabled, otherwise false. - */ - getDisabled(): boolean; - + getControlType(): ControlType | string; + /** * Gets the name of the control on the form. * @@ -1711,7 +2175,33 @@ declare namespace Xrm * @return The parent Section. */ getParent(): Section; - + } + + /** + * Interface for a standard control. + * + * @sa Control + */ + export interface StandardControl extends Control, UiStandardElement, UiFocusable + { + /** + * Clears the notification identified by uniqueId. + * + * @param {string} uniqueId (Optional) Unique identifier. + * + * @return true if it succeeds, false if it fails. + * + * @remarks If the uniqueId parameter is not used, the current notification shown will be removed. + */ + clearNotification( uniqueId?: string ): boolean; + + /** + * Gets a boolean value, indicating whether the control is disabled. + * + * @return true if it is disabled, otherwise false. + */ + getDisabled(): boolean; + /** * Sets the state of the control to either enabled, or disabled. * @@ -1731,15 +2221,7 @@ declare namespace Xrm * appears next to the control. Tapping on the icon will display the message. */ setNotification( message: string, uniqueId: string ): boolean; - } - /** - * Interface for a standard control. - * - * @sa Control - */ - export interface StandardControl extends Control - { /** * Gets the control's bound attribute. * @@ -1756,28 +2238,17 @@ declare namespace Xrm */ getAttribute(): Attribute; } - + /** - * Interace for Auto Lookup Control - * This is not an Entity Lookup, but a control that supports AutoComplete/KeyPress Events (Text) - * NOTE * This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. + * Interface for Auto Lookup Control. + * This is not an Entity Lookup, but a control that supports AutoComplete / KeyPress Events (Text or Number) + * + * @remarks This interface is not supported for CRM mobile clients (phones or tablets) and the interactive service hub. It is only available for Updated entities. * * @sa StandardControl */ - export interface AutoLookupControl extends StandardControl { - /** - * Use this to add a function as an event handler for the keypress event so that the function is called when you type a character in the specific text or number field. - * For a sample JavaScript code that uses the addOnKeyPress method to configure the auto-completion experience, see Sample: Auto-complete in CRM controls. - * - * @param {ContextSensitiveHandler} handler The function reference. - */ - addOnKeyPress(handler: ContextSensitiveHandler): void; - - /** - * Use this to manually fire an event handler that you created for a specific text or number field to be executed on the keypress event. - */ - fireOnKeyPress(): void; - + export interface AutoLookupControl extends StandardControl, UiKeyPressable + { /** * Gets the latest value in a control as the user types characters in a specific text or number field. * This method helps you to build interactive experiences by validating data and alerting users as they type characters in a control. @@ -1790,15 +2261,7 @@ declare namespace Xrm * Hides the auto-completion drop-down list configured for a specific text field */ hideAutoComplete(): void; - - /** - * Use this to remove an event handler for a text or number field that you added using addOnKeyPress. - * - * Remarks: If an anonymous function is set using addOnKeyPress, it can’t be removed using this method. - * @param {ContextSensitiveHandler} handler The function reference. - */ - removeOnKeyPress(handler: ContextSensitiveHandler): void; - + /** * Shows upt to 10 matching strings in a drop-down list as users press keys to type charactrer in a specific text field. * On selecting an item in the drop-down list, the value in the text field changes to the selected item, the drop-down list disappears, and the OnChange event for the text field is invoked @@ -1807,6 +2270,36 @@ declare namespace Xrm showAutoComplete(resultSet: AutoCompleteResultSet): void; } + /** + * Interface for a String control. + * + * @sa StandardControl + */ + export interface StringControl extends AutoLookupControl + { + /** + * Gets the control's bound attribute. + * + * @return The attribute. + */ + getAttribute(): StringAttribute; + } + + /** + * Interface for a Number control. + * + * @sa StandardControl + */ + export interface NumberControl extends AutoLookupControl + { + /** + * Gets the control's bound attribute. + * + * @return The attribute. + */ + getAttribute(): NumberAttribute; + } + /** * Interface for a Date control. * @@ -2110,7 +2603,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface Tab extends UiElement, UiFocusable + export interface Tab extends UiStandardElement, UiFocusable { /** * Gets display state of the tab. @@ -2151,7 +2644,7 @@ declare namespace Xrm * * @sa UiElement */ - export interface Section extends UiElement + export interface Section extends UiStandardElement { /** * Gets the name of the section. @@ -2183,14 +2676,14 @@ declare namespace Xrm */ export type FormNotificationLevel = "ERROR" | "INFO" | "WARNING"; - /** + /** * Display States for Xrm.ui.ProcessMonitor.setDisplayState(). - */ + */ export type DisplayState = "collapsed" | "expanded"; - /** + /** * Interface for Xrm.Page.ui.process API - */ + */ export interface ProcessManager { /** @@ -2198,7 +2691,7 @@ declare namespace Xrm * * @param {string} displayState Display state of the process flow control, as either "expanded" or "collapsed" */ - setDisplayState(displayState: ui.DisplayState ): void; + setDisplayState( displayState: ui.DisplayState ): void; /** * Sets the visibility state. @@ -2330,7 +2823,7 @@ declare namespace Xrm } /** - * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to + * Interface for a view selector item. This object contains data that identifies a view. Use this as a parameter to * the ViewSelector.setCurrentView method. */ export interface ViewSelectorItem @@ -2342,6 +2835,93 @@ declare namespace Xrm */ getEntityReference(): LookupValue; } + + /** + * Interface for a quick view control instance on a form. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt736908.aspx#bkmk_isLoaded} for details. + */ + export interface QuickForm extends Control, UiLabelElement, UiCanGetVisibleElement + { + /** + * Gets the constituent controls in a quick view control. + * + * @return An array of controls. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl(): Page.Control[]; + + /** + * Gets the constituent controls in a quick view control. + * + * @tparam T A Control type + * @param {string} controlName Name of the control. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( controlName: string ): T; + + /** + * Gets the constituent controls in a quick view control. + * + * @param {string} controlName Name of the control. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( controlName: string ): Page.Control; + + /** + * Gets a control by index. + * + * @tparam T A Control type + * @param {number} index The control index. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( index: number ): T; + + /** + * Gets a control by index. + * + * @param {number} index The control index. + * + * @return The control. + * + * @remarks Constituent controls in a quick view control are read only. + */ + getControl( index: number ): Page.Control; + + /** + * Gets the controls type. + * + * @return Returns a string value that categorizes quick view controls. + */ + getControlType(): "quickform"; + + /** + * Returns whether the data binding for the constituent controls in a quick view control is complete. + * + * @return True is the data binding for a constituent control is complete, otherwise false. + * because the quick view form that the control is bound to may not have loaded completely. + * As a result, using the getAttribute or any data-related methods on a constituent control might not work. + * The isLoaded method for the quick view control helps determine the data binding status for constituent controls in a quick view control. + * + * @remarks The data binding for the constituent controls in a quick view control may not be complete during the main form OnLoad event + */ + isLoaded(): boolean; + + /** + * Refreshes the data displayed in a quick view control. + */ + refresh(): void; + } } /** @@ -2350,7 +2930,7 @@ declare namespace Xrm * @sa UiElement * @sa UiFocusable */ - export interface NavigationItem extends UiElement, UiFocusable + export interface NavigationItem extends UiStandardElement, UiFocusable { /** * Gets the name of the item. @@ -2427,11 +3007,13 @@ declare namespace Xrm /** * Command Bar Display options for Xrm.Url.FormOpenParameters.cmdbar, Xrm.Url.ViewOpenParameters.cmdbar, and Xrm.Utility.FormOpenParameters.cmdbar. */ + export type CmdBarDisplay = "true" | "false"; /** * Navigation Bar Display options for Xrm.Url.FormOpenParameters.navbar, Xrm.Url.ViewOpenParameters.navbar, and Xrm.Utility.FormOpenParameters.navbar. */ export type NavBarDisplay = "entity" | "off" | "on"; + /** * Report Open Action options for Xrm.Url.ReportOpenParameters.actions. */ @@ -2709,4 +3291,4 @@ declare namespace XrmEnum SystemView = 1039, UserView = 4230 } -} +} \ No newline at end of file diff --git a/xrm/xrm-tests.ts b/xrm/xrm-tests.ts index 1893b9b89a..fd371c94de 100644 --- a/xrm/xrm-tests.ts +++ b/xrm/xrm-tests.ts @@ -75,7 +75,8 @@ Xrm.Utility.openQuickCreate("account").then(( object ) => { if (object) alert( ` /// Make all controls visible. -Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); +// Xrm.Page.ui.controls.forEach(( control ) => { control.setVisible( true ); }); // No longer works +Xrm.Page.ui.controls.forEach((control: Xrm.Page.StandardControl) => { control.setVisible(true); }); // Must cast to StandardControl /// Make all tabs and sections visible. @@ -166,4 +167,27 @@ autoCompleteControl.hideAutoComplete(); +/// Demonstrate v8.2 quick form controls + +const quickForm = Xrm.Page.ui.quickForms.get(0); +quickForm.getControlType(); // == "quickform" +quickForm.getName(); +quickForm.getParent(); +quickForm.getVisible(); // From UiCanSetVisibleElement +quickForm.getLabel(); // From UiLabelElement +quickForm.setLabel("Label"); // From UiLabelElement +quickForm.refresh(); + +// Get standard control +const ctrl = Xrm.Page.getControl("controlName"); +ctrl.getControlType() +ctrl.getName(); +ctrl.getParent(); +ctrl.getLabel(); +ctrl.setLabel("Label name"); +ctrl.getVisible(); +ctrl.setVisible(true); + + + From ff6194f4930bf11767ffc9f54a82f0c2a8968292 Mon Sep 17 00:00:00 2001 From: clownwilleatme Date: Tue, 7 Feb 2017 14:27:08 +1100 Subject: [PATCH 132/231] Xrm.Mobile.offline interface, string unions - Moving Xrm.Mobile and Xrm.Mobile.offline into interfaces. - Removing union string types for: - Xrm.Page.ui.setFormNotification - Xrm.Page.Attribute.setSubmitMode - Xrm.Page.data.entity.save - Xrm.Page.Attribute.setDisplayState --- xrm/index.d.ts | 336 +++++++++++++++++++++++++------------------------ 1 file changed, 175 insertions(+), 161 deletions(-) diff --git a/xrm/index.d.ts b/xrm/index.d.ts index 01c627f33d..821d7ff111 100644 --- a/xrm/index.d.ts +++ b/xrm/index.d.ts @@ -117,7 +117,7 @@ declare namespace Xrm * @return The control. */ getControl( index: number ): T; - + /** * Gets a control by index. * @@ -218,162 +218,8 @@ declare namespace Xrm /** * Provides methods to create and manage records in the mobile clients (for phones tablets). */ - Mobile: { - /** - * Provides methods to create and manage records in the mobile clients while working in the offline mode. - * - * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. - */ - offline: { - /** - * Returns whether an entity is offline enabled. - * - * @param {string} entityType The logical name of the entity. - * - * @return {boolean} True if the entity is offline enabled; otherwise False. - */ - isOfflineEnabled( entityType: string ): boolean; + Mobile: Mobile; - /** - * Creates an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {Object} data A dictionary object containing key : value pairs for the record to create. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot create intersect and activity party entities. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - createRecord( entityType: string, data: { [attributeName: string]: any } ): Async.XrmPromise; - - /** - * Retrieves an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to retrieve. - * @param {string} options (Optional) OData system query options to retrieve your data. Supports $select and $expand - * Example: ?$select=name&$expand=primarycontactid($select=contactid,fullname) - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks Only $select option can be specified within $expand. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - retrieveRecord( entityType: string, id: string, options: string ): Async.XrmPromise; - - /** - * Retrieves a collection of entity records in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} options (Optional) The logical name of the enti - * @param {string} maxPageSize (Optional) A positive number to indicates the number of entity records to be returned per page. - * If you do not specify this parameter, the default value is passed as 5000. - * If the number of records being retrieved is more than maxPageSize, an @odata.nextLink property - * will be returned, and you can use the value of the @odata.nextLink property with a new GET - * request to return next set of records. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks A maximum of 5000 related records can be retrieved when using $expand. - * Only $select option can be specified within $expand. - * $skip query option is not supported. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - retrieveMultipleRecords( entityType: string, options: string, maxPageSize: number ): Async.XrmPromise; - - /** - * Updates an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to update. - * @param {Object} data A dictionary object containing key : value pairs for the record to update. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot update intersect and activity party entities. - * Only the following attribute types are supported in offline mode: BigInt - * Boolean - * Customer - * DateTime - * Decimal - * Double - * EntityName - * Integer - * Lookup - * Memo - * Money - * Owner - * Picklist - * String - * State - * Status - * UniqueIdentifier - */ - updateRecord( entityType: string, id: string, data: { [attributeName: string]: any } ): Async.XrmPromise; - - /** - * Deletes an entity record in mobile clients while working in the offline mode. - * - * @param {string} entityType The logical name of the entity. - * @param {string} id GUID of the record to delete. - * - * @return {Async.XrmPromise} Returns an asynchronous promise. - * - * @remarks You cannot delete intersect and activity party entities. - */ - deleteRecord( entityType: string, id: string ): Async.XrmPromise; - } - } - /** * Provides methods to display a web page in the side pane of web client. * @@ -618,7 +464,7 @@ declare namespace Xrm * WARNING Notification will use the system warning icon. * INFO Notification will use the system info icon. */ - setFormNotification( message: string, level: Page.ui.FormNotificationLevel | string, uniqueId: string ): boolean; + setFormNotification( message: string, level: Page.ui.FormNotificationLevel, uniqueId: string ): boolean; /** * Clears the form notification described by uniqueId. @@ -709,6 +555,174 @@ declare namespace Xrm quickForms: Collection.ItemCollection; } + /** + * Interface for methods to create and manage records in the mobile clients (for phones tablets). + */ + export interface Mobile + { + /** + * Provides methods to create and manage records in the mobile clients while working in the offline mode. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. + */ + offline: MobileOffline; + } + + /** + * Interface for the Mobile.offline methods to create and manage records in the mobile clients while working in the offline mode. + * + * @see {@link https://msdn.microsoft.com/en-us/library/mt787123.aspx} for details. + */ + export interface MobileOffline + { + /** + * Returns whether an entity is offline enabled. + * + * @param {string} entityType The logical name of the entity. + * + * @return {boolean} True if the entity is offline enabled; otherwise False. + */ + isOfflineEnabled( entityType: string ): boolean; + + /** + * Creates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {Object} data A dictionary object containing key : value pairs for the record to create. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot create intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + createRecord( entityType: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Retrieves an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to retrieve. + * @param {string} options (Optional) OData system query options to retrieve your data. Supports $select and $expand + * Example: ?$select=name&$expand=primarycontactid($select=contactid,fullname) + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks Only $select option can be specified within $expand. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveRecord( entityType: string, id: string, options: string ): Async.XrmPromise; + + /** + * Retrieves a collection of entity records in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} options (Optional) The logical name of the enti + * @param {string} maxPageSize (Optional) A positive number to indicates the number of entity records to be returned per page. + * If you do not specify this parameter, the default value is passed as 5000. + * If the number of records being retrieved is more than maxPageSize, an @odata.nextLink property + * will be returned, and you can use the value of the @odata.nextLink property with a new GET + * request to return next set of records. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks A maximum of 5000 related records can be retrieved when using $expand. + * Only $select option can be specified within $expand. + * $skip query option is not supported. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + retrieveMultipleRecords( entityType: string, options: string, maxPageSize: number ): Async.XrmPromise; + + /** + * Updates an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to update. + * @param {Object} data A dictionary object containing key : value pairs for the record to update. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot update intersect and activity party entities. + * Only the following attribute types are supported in offline mode: BigInt + * Boolean + * Customer + * DateTime + * Decimal + * Double + * EntityName + * Integer + * Lookup + * Memo + * Money + * Owner + * Picklist + * String + * State + * Status + * UniqueIdentifier + */ + updateRecord( entityType: string, id: string, data: { [attributeName: string]: any } ): Async.XrmPromise; + + /** + * Deletes an entity record in mobile clients while working in the offline mode. + * + * @param {string} entityType The logical name of the entity. + * @param {string} id GUID of the record to delete. + * + * @return {Async.XrmPromise} Returns an asynchronous promise. + * + * @remarks You cannot delete intersect and activity party entities. + */ + deleteRecord( entityType: string, id: string ): Async.XrmPromise; + } + /** * A definition module for asynchronous interface declarations. */ @@ -1502,7 +1516,7 @@ declare namespace Xrm * * @param {string} requirementLevel The requirement level, as either "none", "required", or "recommended" */ - setRequiredLevel( requirementLevel: RequirementLevel | string ): void; + setRequiredLevel( requirementLevel: RequirementLevel ): void; /** * Sets the submit mode. @@ -1511,7 +1525,7 @@ declare namespace Xrm * * @remarks The default value is "dirty" */ - setSubmitMode( submitMode: SubmitMode | string ): void; + setSubmitMode( submitMode: SubmitMode ): void; /** * A collection of all the controls on the form that interface with this attribute. @@ -1922,7 +1936,7 @@ declare namespace Xrm * @param {string} saveMode (Optional) the save mode to save, as either "saveandclose" or * "saveandnew". */ - save( saveMode: SaveMode | string): void; + save( saveMode: SaveMode ): void; /** * The collection of attributes for the record. @@ -2631,7 +2645,7 @@ declare namespace Xrm * * @param {string} displayState Display state of the tab, as either "expanded" or "collapsed" */ - setDisplayState(displayState: ui.DisplayState | string ): void; + setDisplayState(displayState: ui.DisplayState ): void; /** * A reference to the collection of form sections within this tab. From 892bc67f321c1db486862bb29a73bc9af4565b2f Mon Sep 17 00:00:00 2001 From: clownwilleatme Date: Tue, 7 Feb 2017 17:08:22 +1100 Subject: [PATCH 133/231] Modifying the unit test to fix errors Modify the unit test to set the string variables which are used for calls to attribute.setSubmitMode and attribute.setRequiredLevel to use const strings as strings declared as var or let fail. This is by design for string union types in TypeScript - see: https://github.com/Microsoft/TypeScript/issues/9489 --- xrm/xrm-tests.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xrm/xrm-tests.ts b/xrm/xrm-tests.ts index fd371c94de..1242236f36 100644 --- a/xrm/xrm-tests.ts +++ b/xrm/xrm-tests.ts @@ -124,15 +124,15 @@ Xrm.Page.ui.setFormNotification("Test", level, "uniqueId"); /// Demonstrate Requirement Level and Submit Mode both via string parameters and String Literal Types let requirementLevel: Xrm.Page.RequirementLevel = "none"; -let requirementLevelString = "none"; +const requirementLevelString = "none"; let submitMode: Xrm.Page.SubmitMode = "always"; -let submitModeString = "always"; +const submitModeString = "always"; let attribute = Xrm.Page.getAttribute("customerid"); attribute.setSubmitMode(submitMode); -attribute.setSubmitMode(submitMode); +attribute.setSubmitMode(submitModeString); // Works if the string is a const attribute.setRequiredLevel(requirementLevel); -attribute.setRequiredLevel(requirementLevelString); +attribute.setRequiredLevel(requirementLevelString); // Works if the string is a const /// Demonstrate v8 AutoComplete From ec8c18fc630ee0cf41d38aa28c1fb381c97b951b Mon Sep 17 00:00:00 2001 From: Sindre Moen Date: Tue, 7 Feb 2017 09:07:44 +0100 Subject: [PATCH 134/231] Specify TypeScript version 2.1 --- mongoose/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/mongoose/index.d.ts b/mongoose/index.d.ts index 0ede2141a8..2c7361a437 100644 --- a/mongoose/index.d.ts +++ b/mongoose/index.d.ts @@ -2,6 +2,7 @@ // Project: http://mongoosejs.com/ // Definitions by: simonxca , horiuchi , sindrenm // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// /// From 0deee581f54a47beeb1ebc35f0755145e7a358a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 09:52:44 +0100 Subject: [PATCH 135/231] cannot redeclare block-scoped variable fix --- range-parser/index.d.ts | 3 +-- range-parser/range-parser-tests.ts | 6 ++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/range-parser/index.d.ts b/range-parser/index.d.ts index ceb5e17ff6..e90f448e11 100644 --- a/range-parser/index.d.ts +++ b/range-parser/index.d.ts @@ -3,7 +3,7 @@ // Definitions by: Tomek Łaziuk // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -declare const RangeParser: RangeParser.RangeParser; +declare function RangeParser(size: number, str: string, options?: RangeParser.Options): RangeParser.Result | RangeParser.Ranges; declare namespace RangeParser { export interface Ranges extends Array { @@ -20,7 +20,6 @@ declare namespace RangeParser { invaild = -2, unsatisifiable = -1, } - export type RangeParser = (size: number, str: string, options?: Options) => Result | Ranges; } export = RangeParser; diff --git a/range-parser/range-parser-tests.ts b/range-parser/range-parser-tests.ts index d3d70563bb..77dab456c1 100644 --- a/range-parser/range-parser-tests.ts +++ b/range-parser/range-parser-tests.ts @@ -5,5 +5,7 @@ console.assert(RangeParser(200, `bytes=500-20`) === RangeParser.Result.unsatisif const range = RangeParser(1000, `bytes=0-499`); -console.assert(range.type === `bytes`); -console.assert(range.length === 1); +if (typeof range !== 'number') { + console.assert(range.type === `bytes`); + console.assert(range.length === 1); +} From 5a1e852204023a4027259065348da69752459afa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 10:32:18 +0100 Subject: [PATCH 136/231] add undocumented properties --- webtorrent/index.d.ts | 26 +++++++++++++++----------- webtorrent/webtorrent-tests.ts | 1 - 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/webtorrent/index.d.ts b/webtorrent/index.d.ts index 074adccb74..554094421e 100644 --- a/webtorrent/index.d.ts +++ b/webtorrent/index.d.ts @@ -5,9 +5,10 @@ /// -import * as ParseTorrent from 'parse-torrent'; -import * as SimplePeer from 'simple-peer'; -import * as http from 'http'; +import { Instance as ParseTorrent } from 'parse-torrent'; +import { Instance as SimplePeer } from 'simple-peer'; +import { RequestOptions, Server } from 'http'; +import { Wire } from 'bittorrent-protocol'; declare const WebTorrent: WebTorrent.WebTorrent; @@ -32,14 +33,15 @@ declare namespace WebTorrent { maxWebConns?: number; path?: string; store?: (chunkLength: number, storeOpts: { length: number, files: File[], torrent: Torrent, }) => any; + name?: string; } export interface Instance extends NodeJS.EventEmitter { on(event: 'torrent', callback: (torrent: Torrent) => void): this; on(event: 'error', callback: (err: Error | string) => void): this; - add(torrent: string | Buffer | ParseTorrent.Instance, opts?: TorrentOptions, cb?: (torrent: Torrent) => any): Torrent; - add(torrent: string | Buffer | ParseTorrent.Instance, cb?: (torrent: Torrent) => any): Torrent; + add(torrent: string | Buffer | ParseTorrent, opts?: TorrentOptions, cb?: (torrent: Torrent) => any): Torrent; + add(torrent: string | Buffer | ParseTorrent, cb?: (torrent: Torrent) => any): Torrent; seed(input: string | string[] | File | File[] | FileList | Buffer | Buffer[] | NodeJS.ReadableStream | NodeJS.ReadableStream[], opts?: TorrentOptions, cb?: (torrent: Torrent) => any): Torrent; seed(input: string | string[] | File | File[] | FileList | Buffer | Buffer[] | NodeJS.ReadableStream | NodeJS.ReadableStream[], cb?: (torrent: Torrent) => any): Torrent; @@ -59,6 +61,8 @@ declare namespace WebTorrent { readonly progress: number; readonly ratio: number; + + readonly name: string; } export interface Torrent extends NodeJS.EventEmitter { @@ -92,19 +96,21 @@ declare namespace WebTorrent { readonly path: string; + readonly ready: boolean; + destroy(cb?: (err: Error | string) => void): void; - addPeer(peer: string | SimplePeer.Instance): boolean; + addPeer(peer: string | SimplePeer): boolean; addWebSeed(url: string): void; - removePeer(peer: string | SimplePeer.Instance): void; + removePeer(peer: string | SimplePeer): void; select(start: number, end: number, priority?: number, notify?: () => void): void; deselect(start: number, end: number, priority: number): void; - createServer(opts?: http.RequestOptions): http.Server; + createServer(opts?: RequestOptions): Server; pause(): void; @@ -112,13 +118,11 @@ declare namespace WebTorrent { on(event: 'infoHash' | 'metadata' | 'ready' | 'done', callback: () => void): this; - on(event: 'warning' | 'error', callback: (err: Error | string) => void): this; on(event: 'download' | 'upload', callback: (bytes: number) => void): this; - // TODO: wire is a bittorrent-protocol instance - on(event: 'wire', callback: (wire: any, addr?: string) => void): this; + on(event: 'wire', callback: (wire: Wire, addr?: string) => void): this; on(event: 'noPeers', callback: (announceType: 'tracker' | 'dht') => void): this; } diff --git a/webtorrent/webtorrent-tests.ts b/webtorrent/webtorrent-tests.ts index 895d734817..ba08944d58 100644 --- a/webtorrent/webtorrent-tests.ts +++ b/webtorrent/webtorrent-tests.ts @@ -52,7 +52,6 @@ client.add(magnetURI, {}, function(torrent) { torrent.on('wire', function(wire, addr) { console.log('connected to peer with address ' + addr); - wire.use(); }); }); From a8aab5614bb014c0302982d88185deaf59dcc5f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 10:58:02 +0100 Subject: [PATCH 137/231] fix --- webtorrent/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtorrent/index.d.ts b/webtorrent/index.d.ts index 554094421e..207015f871 100644 --- a/webtorrent/index.d.ts +++ b/webtorrent/index.d.ts @@ -61,8 +61,6 @@ declare namespace WebTorrent { readonly progress: number; readonly ratio: number; - - readonly name: string; } export interface Torrent extends NodeJS.EventEmitter { @@ -98,6 +96,8 @@ declare namespace WebTorrent { readonly ready: boolean; + readonly name: string; + destroy(cb?: (err: Error | string) => void): void; addPeer(peer: string | SimplePeer): boolean; From 4a8052290cc86a13f677cc25a5a9b82a64318b47 Mon Sep 17 00:00:00 2001 From: Yaroslav Serhieiev Date: Tue, 7 Feb 2017 13:08:46 +0200 Subject: [PATCH 138/231] jasmine: added keyof validation to spyOn --- jasmine-es6-promise-matchers/index.d.ts | 1 + jasmine-expect/index.d.ts | 1 + jasmine-jquery/index.d.ts | 1 + jasmine-matchers/index.d.ts | 1 + jasmine-node/index.d.ts | 1 + jasmine-promise-matchers/index.d.ts | 1 + jasmine/index.d.ts | 3 ++- jasminewd2/index.d.ts | 1 + karma-jasmine/index.d.ts | 1 + 9 files changed, 10 insertions(+), 1 deletion(-) diff --git a/jasmine-es6-promise-matchers/index.d.ts b/jasmine-es6-promise-matchers/index.d.ts index 493a6a5312..89e3146c2c 100644 --- a/jasmine-es6-promise-matchers/index.d.ts +++ b/jasmine-es6-promise-matchers/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/bvaughn/jasmine-es6-promise-matchers // Definitions by: Stephen Lautier // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// diff --git a/jasmine-expect/index.d.ts b/jasmine-expect/index.d.ts index c8ffd8dced..c2ee7e0ee5 100644 --- a/jasmine-expect/index.d.ts +++ b/jasmine-expect/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/JamieMason/Jasmine-Matchers // Definitions by: UserPixel // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// diff --git a/jasmine-jquery/index.d.ts b/jasmine-jquery/index.d.ts index cbd713fd37..fb91e0c37b 100644 --- a/jasmine-jquery/index.d.ts +++ b/jasmine-jquery/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/velesin/jasmine-jquery // Definitions by: Gregor Stamac // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// /// diff --git a/jasmine-matchers/index.d.ts b/jasmine-matchers/index.d.ts index 23990c8364..ac44d25c1c 100644 --- a/jasmine-matchers/index.d.ts +++ b/jasmine-matchers/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/uxebu/jasmine-matchers // Definitions by: Bart van der Schoor // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /* Typings 2013 Bart van der Schoor diff --git a/jasmine-node/index.d.ts b/jasmine-node/index.d.ts index 59a3b11d8a..5c8022d706 100644 --- a/jasmine-node/index.d.ts +++ b/jasmine-node/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/mhevery/jasmine-node // Definitions by: Sven Reglitzki // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// diff --git a/jasmine-promise-matchers/index.d.ts b/jasmine-promise-matchers/index.d.ts index 1693c9fdca..c511019b62 100644 --- a/jasmine-promise-matchers/index.d.ts +++ b/jasmine-promise-matchers/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/bvaughn/jasmine-promise-matchers // Definitions by: Matthew Hill // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// diff --git a/jasmine/index.d.ts b/jasmine/index.d.ts index 7bf232acba..e18361dec4 100644 --- a/jasmine/index.d.ts +++ b/jasmine/index.d.ts @@ -2,6 +2,7 @@ // Project: http://jasmine.github.io/ // Definitions by: Boris Yankov , Theodore Brown , David Pärsson // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 // For ddescribe / iit use : https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/karma-jasmine/karma-jasmine.d.ts @@ -35,7 +36,7 @@ interface DoneFn extends Function { fail: (message?: Error|string) => void; } -declare function spyOn(object: any, method: string): jasmine.Spy; +declare function spyOn(object: T, method: keyof T): jasmine.Spy; declare function runs(asyncMethod: Function): void; declare function waitsFor(latchMethod: () => boolean, failureMessage?: string, timeout?: number): void; diff --git a/jasminewd2/index.d.ts b/jasminewd2/index.d.ts index cff5236b50..9d8ecde76e 100644 --- a/jasminewd2/index.d.ts +++ b/jasminewd2/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/angular/jasminewd // Definitions by: Sammy Jelin // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// diff --git a/karma-jasmine/index.d.ts b/karma-jasmine/index.d.ts index a5f0a22f5b..46b7978251 100644 --- a/karma-jasmine/index.d.ts +++ b/karma-jasmine/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/karma-runner/karma-jasmine // Definitions by: Michel Salib // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 /// From 7b8d5a69e46c5f6bf5e9286a878cfebfda93b12b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 13:13:50 +0100 Subject: [PATCH 139/231] pump --- pump/index.d.ts | 18 +++++++++++++++++ pump/pump-tests.ts | 48 ++++++++++++++++++++++++++++++++++++++++++++++ pump/tsconfig.json | 20 +++++++++++++++++++ pump/tslint.json | 1 + 4 files changed, 87 insertions(+) create mode 100644 pump/index.d.ts create mode 100644 pump/pump-tests.ts create mode 100644 pump/tsconfig.json create mode 100644 pump/tslint.json diff --git a/pump/index.d.ts b/pump/index.d.ts new file mode 100644 index 0000000000..735f5a0dba --- /dev/null +++ b/pump/index.d.ts @@ -0,0 +1,18 @@ +// Type definitions for pump 1.0 +// Project: https://github.com/mafintosh/pump +// Definitions by: Tomek Łaziuk +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare function pump(streams: pump.Stream[], callback?: pump.Callback): pump.Stream; + +// callback have to be passed as last argument +declare function pump(...streams: Array): pump.Stream[]; + +declare namespace pump { + export type Callback = (err: Error) => any; + export type Stream = NodeJS.ReadableStream | NodeJS.WritableStream; +} + +export = pump; diff --git a/pump/pump-tests.ts b/pump/pump-tests.ts new file mode 100644 index 0000000000..57b8b27665 --- /dev/null +++ b/pump/pump-tests.ts @@ -0,0 +1,48 @@ +import * as pump from 'pump'; +import { createReadStream, createWriteStream } from 'fs'; +import { Transform } from 'stream'; + +const rs = createReadStream('/dev/random'); +const ws = createWriteStream('/dev/null'); + +function toHex() { + const reverse: Transform = new Transform(); + + (reverse as any)._transform = (chunk: any, enc: any, callback: any) => { + reverse.push(chunk.toString('hex')); + callback(); + }; + + return reverse; +} + +let wsClosed = false; +let rsClosed = false; +let callbackCalled = false; + +function check() { + if (wsClosed && rsClosed && callbackCalled) process.exit(0); +} + +ws.on('close', () => { + wsClosed = true; + check(); +}); + +rs.on('close', () => { + rsClosed = true; + check(); +}); + +pump(rs, toHex(), toHex(), toHex(), ws, () => { + callbackCalled = true; + check(); +}); + +setTimeout(() => { + rs.destroy(); +}, 1000); + +setTimeout(() => { + throw new Error('timeout'); +}, 5000); diff --git a/pump/tsconfig.json b/pump/tsconfig.json new file mode 100644 index 0000000000..b7d71ceb05 --- /dev/null +++ b/pump/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "pump-tests.ts" + ] +} diff --git a/pump/tslint.json b/pump/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/pump/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 42ccab4293c3f7132357d5992327f003f6c14bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 13:15:50 +0100 Subject: [PATCH 140/231] return type fix --- pump/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pump/index.d.ts b/pump/index.d.ts index 735f5a0dba..7361399a6a 100644 --- a/pump/index.d.ts +++ b/pump/index.d.ts @@ -5,7 +5,7 @@ /// -declare function pump(streams: pump.Stream[], callback?: pump.Callback): pump.Stream; +declare function pump(streams: pump.Stream[], callback?: pump.Callback): pump.Stream[]; // callback have to be passed as last argument declare function pump(...streams: Array): pump.Stream[]; From 9db4204e1b6285529308bf075ac3e0459f0a3355 Mon Sep 17 00:00:00 2001 From: rinzeb Date: Tue, 7 Feb 2017 13:21:31 +0100 Subject: [PATCH 141/231] Update xlsx typings Add optional 'options' parameter to function sheet_to_csv. (https://github.com/SheetJS/js-xlsx/blob/53f7f6d9446ccd680c9b13992d6dcdccde49a8f6/bits/90_utils.js#L132) --- xlsx/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlsx/index.d.ts b/xlsx/index.d.ts index 3c78abb140..4e4eb060f7 100644 --- a/xlsx/index.d.ts +++ b/xlsx/index.d.ts @@ -143,7 +143,7 @@ export interface IUtils { range?: any; header?: "A"|number|string[]; }):T[]; - sheet_to_csv(worksheet: IWorkSheet):any; + sheet_to_csv(worksheet: IWorkSheet, options?: { FS: string, RS: string }): string; sheet_to_formulae(worksheet: IWorkSheet):any; encode_cell(cell: ICell): any; encode_range(s: ICell, e: ICell): any; From 3cb6c152729034a76e946e68eb21ae949c832b93 Mon Sep 17 00:00:00 2001 From: akim95 Date: Tue, 7 Feb 2017 21:00:28 +0800 Subject: [PATCH 142/231] added type definition for sub module ListView --- realm/react-native/index.d.ts | 4 ++++ realm/realm-tests.ts | 4 ++++ realm/tsconfig.json | 1 + 3 files changed, 9 insertions(+) create mode 100644 realm/react-native/index.d.ts diff --git a/realm/react-native/index.d.ts b/realm/react-native/index.d.ts new file mode 100644 index 0000000000..f1698332af --- /dev/null +++ b/realm/react-native/index.d.ts @@ -0,0 +1,4 @@ +import * as React from 'react-native'; + +export var ListView: React.ListView; +export type ListView = React.ListView; diff --git a/realm/realm-tests.ts b/realm/realm-tests.ts index 2daf41ef74..71dccefdfa 100644 --- a/realm/realm-tests.ts +++ b/realm/realm-tests.ts @@ -1,4 +1,5 @@ import * as Realm from 'realm'; +import { ListView } from 'realm/react-native'; // schema test const personSchema = { @@ -97,3 +98,6 @@ const users = Realm.Sync.User.all; // access control test const managementRealm = user.openManagementRealm(); + +// ListView test +const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2}); diff --git a/realm/tsconfig.json b/realm/tsconfig.json index 0dc37a0163..5241fe5f57 100644 --- a/realm/tsconfig.json +++ b/realm/tsconfig.json @@ -17,6 +17,7 @@ }, "files": [ "index.d.ts", + "react-native/index.d.ts", "realm-tests.ts" ] } \ No newline at end of file From c8e7ddb2e76c509bc384d06d7adeecef67ea7b87 Mon Sep 17 00:00:00 2001 From: akim95 Date: Tue, 7 Feb 2017 21:29:17 +0800 Subject: [PATCH 143/231] update tsconfig.json --- realm/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/realm/tsconfig.json b/realm/tsconfig.json index 5241fe5f57..ae6e53ac64 100644 --- a/realm/tsconfig.json +++ b/realm/tsconfig.json @@ -2,7 +2,8 @@ "compilerOptions": { "module": "commonjs", "lib": [ - "es6" + "es6", + "dom" ], "noImplicitAny": true, "noImplicitThis": true, From e43508e07fc95363c20ba04dacdcc3b72a889a4a Mon Sep 17 00:00:00 2001 From: akim95 Date: Tue, 7 Feb 2017 21:37:15 +0800 Subject: [PATCH 144/231] added TS version header --- realm/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/realm/index.d.ts b/realm/index.d.ts index 3c3a438621..974f2a4ed1 100644 --- a/realm/index.d.ts +++ b/realm/index.d.ts @@ -2,6 +2,7 @@ // Project: https://github.com/realm/realm-js // Definitions by: Akim // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped +// TypeScript Version: 2.1 declare namespace Realm { /** From 1c2b6defd2d31dfa01a53167a22235b0ca65d508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20=C5=81aziuk?= Date: Tue, 7 Feb 2017 14:51:18 +0100 Subject: [PATCH 145/231] xdg-basedir --- xdg-basedir/index.d.ts | 11 +++++++++++ xdg-basedir/tsconfig.json | 20 ++++++++++++++++++++ xdg-basedir/tslint.json | 1 + xdg-basedir/xdg-basedir-tests.ts | 3 +++ 4 files changed, 35 insertions(+) create mode 100644 xdg-basedir/index.d.ts create mode 100644 xdg-basedir/tsconfig.json create mode 100644 xdg-basedir/tslint.json create mode 100644 xdg-basedir/xdg-basedir-tests.ts diff --git a/xdg-basedir/index.d.ts b/xdg-basedir/index.d.ts new file mode 100644 index 0000000000..d18bc389f9 --- /dev/null +++ b/xdg-basedir/index.d.ts @@ -0,0 +1,11 @@ +// Type definitions for xdg-basedir 2.0 +// Project: https://github.com/sindresorhus/xdg-basedir +// Definitions by: Tomek Łaziuk +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +export const data: string | null; +export const config: string | null; +export const cache: string | null; +export const runtime: string | null; +export const dataDirs: string[]; +export const configDirs: string[]; diff --git a/xdg-basedir/tsconfig.json b/xdg-basedir/tsconfig.json new file mode 100644 index 0000000000..44428e6cc7 --- /dev/null +++ b/xdg-basedir/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "xdg-basedir-tests.ts" + ] +} diff --git a/xdg-basedir/tslint.json b/xdg-basedir/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/xdg-basedir/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } diff --git a/xdg-basedir/xdg-basedir-tests.ts b/xdg-basedir/xdg-basedir-tests.ts new file mode 100644 index 0000000000..a6b7073c18 --- /dev/null +++ b/xdg-basedir/xdg-basedir-tests.ts @@ -0,0 +1,3 @@ +import * as xdg from 'xdg-basedir'; + +console.log(JSON.stringify(xdg, undefined, 2)); From c36bac815267d5d5757ea2454ef8efe0256ea428 Mon Sep 17 00:00:00 2001 From: akim95 Date: Tue, 7 Feb 2017 21:54:52 +0800 Subject: [PATCH 146/231] update ListView definition --- realm/react-native/index.d.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/realm/react-native/index.d.ts b/realm/react-native/index.d.ts index f1698332af..51010b44c7 100644 --- a/realm/react-native/index.d.ts +++ b/realm/react-native/index.d.ts @@ -1,4 +1,3 @@ -import * as React from 'react-native'; +import { ListView } from 'react-native'; -export var ListView: React.ListView; -export type ListView = React.ListView; +export { ListView }; \ No newline at end of file From beba0a4154f3b8be91d892729ef04161d6a1e738 Mon Sep 17 00:00:00 2001 From: akim95 Date: Tue, 7 Feb 2017 21:56:27 +0800 Subject: [PATCH 147/231] fix no newline --- realm/react-native/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realm/react-native/index.d.ts b/realm/react-native/index.d.ts index 51010b44c7..0563ca5914 100644 --- a/realm/react-native/index.d.ts +++ b/realm/react-native/index.d.ts @@ -1,3 +1,3 @@ import { ListView } from 'react-native'; -export { ListView }; \ No newline at end of file +export { ListView }; From b9e1f8fedb32bade37fc5efb42401666cbd418a7 Mon Sep 17 00:00:00 2001 From: Chunlei Hou Date: Tue, 7 Feb 2017 22:13:43 +0800 Subject: [PATCH 148/231] add three-octree.d.ts and three-ctmloader.d.ts --- three/index.d.ts | 8 ++++-- three/test/examples/ctm/ctmloader.ts | 7 +++++ three/test/examples/octree.ts | 11 ++++++++ three/three-ctmloader.d.ts | 36 ++++++++++++++++++++++++ three/three-octree.d.ts | 42 ++++++++++++++++++++++++++++ 5 files changed, 101 insertions(+), 3 deletions(-) create mode 100644 three/test/examples/ctm/ctmloader.ts create mode 100644 three/test/examples/octree.ts create mode 100644 three/three-ctmloader.d.ts create mode 100644 three/three-octree.d.ts diff --git a/three/index.d.ts b/three/index.d.ts index b4b4995ee8..35149e1d8f 100644 --- a/three/index.d.ts +++ b/three/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for three.js 0.83 // Project: http://mrdoob.github.com/three.js/ -// Definitions by: Kon , Satoru Kimura , Florent Poujol , SereznoKot +// Definitions by: Kon , Satoru Kimura , Florent Poujol , SereznoKot , HouChunlei // Definitions: https://github.com/borisyankov/DefinitelyTyped /// @@ -20,6 +20,8 @@ /// /// /// +/// +/// declare namespace THREE { export const REVISION: string; @@ -1996,7 +1998,7 @@ declare namespace THREE { mimeType: MimeType; path: string; responseType: string; - withCredentials: string + withCredentials: string load(url: string, onLoad?: (responseText: string) => void, onProgress?: (request: ProgressEvent) => void, onError?:(event: ErrorEvent) => void): any; setMimeType(mimeType: MimeType): FileLoader; @@ -3589,7 +3591,7 @@ declare namespace THREE { radius: number; phi: number; theta: number; - + set(radius: number, phi: number, theta: number): Spherical; clone(): this; copy(other: this): this; diff --git a/three/test/examples/ctm/ctmloader.ts b/three/test/examples/ctm/ctmloader.ts new file mode 100644 index 0000000000..e35cffb6a4 --- /dev/null +++ b/three/test/examples/ctm/ctmloader.ts @@ -0,0 +1,7 @@ +/// + +let _ctmloader = new THREE.CTMLoader(); +_ctmloader.load('https://github.com/mrdoob/three.js/blob/master/examples/models/ctm/ben.ctm', (geo: any) => { + console.log(geo.position); +}); + diff --git a/three/test/examples/octree.ts b/three/test/examples/octree.ts new file mode 100644 index 0000000000..de7de86ac7 --- /dev/null +++ b/three/test/examples/octree.ts @@ -0,0 +1,11 @@ +/// + +let _octree = new THREE.Octree({ + underferred: false, + depthMax: Infinity, + objectsThreshold: 8, + overlapPct: 0.15, +}); + +console.log(_octree.getDepthEnd()); + diff --git a/three/three-ctmloader.d.ts b/three/three-ctmloader.d.ts new file mode 100644 index 0000000000..276f14b6a3 --- /dev/null +++ b/three/three-ctmloader.d.ts @@ -0,0 +1,36 @@ +// Type definitions for three.js (CTMLoader.js) +// Project: https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/ctm/CTMLoader.js +// Definitions by: Hou Chunlei +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace THREE { + export class CTMLoader extends THREE.Loader { + constructor(); + + /** + * load multiple CTM parts defined in JSON. + * @param url(required) + * @param callback(required) + * @param parameters + */ + loadParts(url: string, callback: () => any, parameters?: any): any; + + /** + * Load CTMLoader compressed models + * @param url(required) + * @param callback(required) + * @param parameters + */ + load(url: string, callback: () => any, parameters?: any): any; + + /** + * create buffergeometry by ctm file. + * @param file(required) + * @param callback(required) + */ + createModel(file: string, callback: () => any): any; + + } +} diff --git a/three/three-octree.d.ts b/three/three-octree.d.ts new file mode 100644 index 0000000000..3ce479e81f --- /dev/null +++ b/three/three-octree.d.ts @@ -0,0 +1,42 @@ +// Type definitions for three.js (Octree.js) +// Project: https://github.com/mrdoob/three.js/blob/master/examples/js/Octree.js +// Definitions by: Hou Chunlei +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +/// + +declare namespace THREE { + export class Octree { + constructor(parameters?: any); + + update(): void; + + add(object: any, options?: any): any; + + addDeferred(object: any, options?: any): any; + + addObjectData(object: any, part: any): any; + + remove(object: any): any; + + extend(octree: Octree): any; + + rebuild(): any; + + updateObject(object: any): any; + + search(position: THREE.Vector3, radius: number, organizeByObject: boolean, direction: THREE.Vector3): any; + + setRoot(root: any): any; + + getDepthEnd(): number; + + getNodeCountEnd(): number; + + getObjectCountEnd(): number; + + toConsole(): any; + + + } +} From 0055a7b7589ee0fe2d1770b7ad0150c7e009da96 Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Tue, 7 Feb 2017 19:24:55 +0500 Subject: [PATCH 149/231] Definition for dropkickjs library --- dropkickjs/dropkickjs-tests.ts | 91 ++++++++++++++++++++++++++++++++++ dropkickjs/index.d.ts | 52 +++++++++++++++++++ dropkickjs/tsconfig.json | 20 ++++++++ dropkickjs/tslint.json | 1 + 4 files changed, 164 insertions(+) create mode 100644 dropkickjs/dropkickjs-tests.ts create mode 100644 dropkickjs/index.d.ts create mode 100644 dropkickjs/tsconfig.json create mode 100644 dropkickjs/tslint.json diff --git a/dropkickjs/dropkickjs-tests.ts b/dropkickjs/dropkickjs-tests.ts new file mode 100644 index 0000000000..af46b43c02 --- /dev/null +++ b/dropkickjs/dropkickjs-tests.ts @@ -0,0 +1,91 @@ +/// + +//constructor +var constructorNoOptions = new Dropkick('#my-select'); +var constructorNoOptions2 = new Dropkick(new HTMLSelectElement()); +var constructorOptions = new Dropkick('#my-select', {}); +var constructorOptions2 = new Dropkick(new HTMLSelectElement(), {}); + +//options +var options : DropkickOptions = { + disabled: true, + form: new HTMLFormElement(), + length: 1, + mobile: true, + multiple: true, + options: ['test'], + selectedIndex: 0, + selectedOptions: ['test'], + value: 'test', + change() { }, + close() { }, + open() { }, + initialize: () => { } +} +var withFullOptions = new Dropkick('#test', options); + +var dk = new Dropkick('#test'); + +//fields (same as options) +var o1 = dk.disabled; +var o2 = dk.form; +var o3 = dk.length; +var o4 = dk.mobile; +var o5 = dk.multiple; +var o6 = dk.options; +var o7 = dk.selectedIndex; +var o8 = dk.selectedOptions; +var o9 = dk.value; + +//methods +dk.add('new'); +dk.add(new HTMLSelectElement()); +dk.add('new', 'old'); +dk.add('new', 1); + +dk.disable(); +dk.disable(false); +dk.disable(4, true); +dk.disable(4); + +dk.dispose(); + +dk.focus(); + +dk.hide(4); +dk.hide(4, false); + +var node = dk.item(4); + +dk.open(); + +dk.refresh(); + +dk.remove(4); + +dk.reset(); +dk.reset(true); + +var words = dk.search("qwer", "fuzzy"); + +var node2 = dk.select(4); +var node3 = dk.select("AL"); +var node4 = dk.select(4, true); + +var node5 = dk.selectOne(4); +var node6 = dk.selectOne(4, true); + +//real life example +var fieldValue = ''; +var selectOptions : DropkickOptions = { + open(this: Dropkick) { + const optionsList = (this).data.elem.lastChild; //undocumented but useful data field + if (optionsList.scrollWidth > optionsList.offsetWidth) { + optionsList.style.width = optionsList.scrollWidth + 25 + 'px'; + } + }, + change: () => { + fieldValue = select.value; + } +}; +var select = new Dropkick('#select', options); \ No newline at end of file diff --git a/dropkickjs/index.d.ts b/dropkickjs/index.d.ts new file mode 100644 index 0000000000..80818ff789 --- /dev/null +++ b/dropkickjs/index.d.ts @@ -0,0 +1,52 @@ +// Type definitions for dropkickjs v2.1.9 +// Project: http://dropkickjs.com/ +// Definitions by Dmitry Pesterev +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +interface DropkickOptions { + disabled?: boolean; + form?: Node; + length?: number; + mobile?: boolean; + multiple?: boolean; + options?: Array; + selectedIndex?: number; + selectedOptions?: Array; + value?: string; + + change?: () => void; + close?: () => void; + initialize?: () => void; + open?: () => void; +} + +declare class Dropkick { + constructor(id: string, options?: DropkickOptions); + constructor(element: HTMLElement, options?: DropkickOptions); + + add(value: string | Node, before?: number | string): void; + close(): void; + disable(disabled?: boolean): void; + disable(index: number, disabled?: boolean): void; + dispose(): void; + focus(): void; + hide(index: number, hidden?: boolean): void; + item(index: number): Node; + open(): void; + refresh(): void; + remove(index: number): void; + reset(clear?: boolean): void; + search(string: string, mode?: string): Array; + select(element: number|string, selectDisabled?: boolean): Node; + selectOne(element: number, selectDisabled?: boolean): Node; + + disabled: boolean; + form: Node; + length: number; + mobile: boolean; + multiple: boolean; + options: Array; + selectedIndex: number; + selectedOptions: Array; + value: string; +} \ No newline at end of file diff --git a/dropkickjs/tsconfig.json b/dropkickjs/tsconfig.json new file mode 100644 index 0000000000..e0699ecf5c --- /dev/null +++ b/dropkickjs/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "baseUrl": "../", + "typeRoots": [ + "../" + ], + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "dropkickjs-tests.ts" + ] +} \ No newline at end of file diff --git a/dropkickjs/tslint.json b/dropkickjs/tslint.json new file mode 100644 index 0000000000..2221e40e4a --- /dev/null +++ b/dropkickjs/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } \ No newline at end of file From 8191468f643e2f21be9f45e79c6b6a4287c34db6 Mon Sep 17 00:00:00 2001 From: Chunlei Hou Date: Tue, 7 Feb 2017 22:31:36 +0800 Subject: [PATCH 150/231] add three-octree.d.ts and three-ctmloader.d.ts --- three/three-ctmloader.d.ts | 46 +++++++++++++++++++------------------- three/tsconfig.json | 6 +++-- 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/three/three-ctmloader.d.ts b/three/three-ctmloader.d.ts index 276f14b6a3..0dd56a3b9a 100644 --- a/three/three-ctmloader.d.ts +++ b/three/three-ctmloader.d.ts @@ -6,31 +6,31 @@ /// declare namespace THREE { - export class CTMLoader extends THREE.Loader { - constructor(); + export class CTMLoader extends THREE.Loader { + constructor(); - /** - * load multiple CTM parts defined in JSON. - * @param url(required) - * @param callback(required) - * @param parameters - */ - loadParts(url: string, callback: () => any, parameters?: any): any; + /** + * load multiple CTM parts defined in JSON. + * @param url(required) + * @param callback(required) + * @param parameters + */ + loadParts(url: string, callback: () => any, parameters?: any): any; - /** - * Load CTMLoader compressed models - * @param url(required) - * @param callback(required) - * @param parameters - */ - load(url: string, callback: () => any, parameters?: any): any; + /** + * Load CTMLoader compressed models + * @param url(required) + * @param callback(required) + * @param parameters + */ + load(url: string, callback: (geo: any) => any, parameters?: any): any; - /** - * create buffergeometry by ctm file. - * @param file(required) - * @param callback(required) - */ - createModel(file: string, callback: () => any): any; + /** + * create buffergeometry by ctm file. + * @param file(required) + * @param callback(required) + */ + createModel(file: string, callback: () => any): any; - } + } } diff --git a/three/tsconfig.json b/three/tsconfig.json index e140c6668c..37a325d404 100644 --- a/three/tsconfig.json +++ b/three/tsconfig.json @@ -49,6 +49,8 @@ "test/canvas/canvas_particles_floor.ts", "test/examples/detector.ts", "test/examples/effects/vreffect.ts", - "test/examples/controls/vrcontrols.ts" + "test/examples/controls/vrcontrols.ts", + "test/examples/ctm/ctmloader.ts", + "test/examples/octree.ts" ] -} \ No newline at end of file +} From e6d4014e92ddca6cdf9c50a30de4cb754a743d79 Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Tue, 7 Feb 2017 19:40:38 +0500 Subject: [PATCH 151/231] Header fix --- dropkickjs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropkickjs/index.d.ts b/dropkickjs/index.d.ts index 80818ff789..1884749629 100644 --- a/dropkickjs/index.d.ts +++ b/dropkickjs/index.d.ts @@ -1,6 +1,6 @@ // Type definitions for dropkickjs v2.1.9 // Project: http://dropkickjs.com/ -// Definitions by Dmitry Pesterev +// Definitions by: Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface DropkickOptions { From 59dc6f0c84c28bcebe2b5016eb58f940e7c73f88 Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Tue, 7 Feb 2017 19:46:40 +0500 Subject: [PATCH 152/231] Fixed tslint warnings --- dropkickjs/index.d.ts | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/dropkickjs/index.d.ts b/dropkickjs/index.d.ts index 1884749629..8af96c1a57 100644 --- a/dropkickjs/index.d.ts +++ b/dropkickjs/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for dropkickjs v2.1.9 +// Type definitions for dropkickjs v2.1 // Project: http://dropkickjs.com/ // Definitions by: Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped @@ -9,9 +9,9 @@ interface DropkickOptions { length?: number; mobile?: boolean; multiple?: boolean; - options?: Array; + options?: string[]; selectedIndex?: number; - selectedOptions?: Array; + selectedOptions?: string[]; value?: string; change?: () => void; @@ -21,8 +21,7 @@ interface DropkickOptions { } declare class Dropkick { - constructor(id: string, options?: DropkickOptions); - constructor(element: HTMLElement, options?: DropkickOptions); + constructor(id: string|HTMLElement, options?: DropkickOptions); add(value: string | Node, before?: number | string): void; close(): void; @@ -36,7 +35,7 @@ declare class Dropkick { refresh(): void; remove(index: number): void; reset(clear?: boolean): void; - search(string: string, mode?: string): Array; + search(string: string, mode?: string): string[]; select(element: number|string, selectDisabled?: boolean): Node; selectOne(element: number, selectDisabled?: boolean): Node; @@ -45,8 +44,8 @@ declare class Dropkick { length: number; mobile: boolean; multiple: boolean; - options: Array; + options: string[]; selectedIndex: number; - selectedOptions: Array; + selectedOptions: string[]; value: string; } \ No newline at end of file From 723a4cdf203a7326e70e921b704ee57c57bf83ac Mon Sep 17 00:00:00 2001 From: VorobeY1326 Date: Tue, 7 Feb 2017 19:49:58 +0500 Subject: [PATCH 153/231] And now tslint will pass --- dropkickjs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropkickjs/index.d.ts b/dropkickjs/index.d.ts index 8af96c1a57..1e0a4f4acf 100644 --- a/dropkickjs/index.d.ts +++ b/dropkickjs/index.d.ts @@ -1,4 +1,4 @@ -// Type definitions for dropkickjs v2.1 +// Type definitions for dropkickjs 2.1 // Project: http://dropkickjs.com/ // Definitions by: Dmitry Pesterev // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped From 06b31f56fc7f8e83185dd8fe1a94f558254fafa8 Mon Sep 17 00:00:00 2001 From: Jesper Broni Andersen Date: Tue, 7 Feb 2017 16:01:03 +0100 Subject: [PATCH 154/231] angular: Add preAssignBindingsEnabled to ICompileProvider --- angular/index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/angular/index.d.ts b/angular/index.d.ts index 73535e9922..099ac2fc27 100644 --- a/angular/index.d.ts +++ b/angular/index.d.ts @@ -1254,6 +1254,16 @@ declare namespace angular { debugInfoEnabled(): boolean; debugInfoEnabled(enabled: boolean): ICompileProvider; + /** + * Call this method to enable/disable whether directive controllers are assigned bindings before calling the controller's constructor. + * If enabled (true), the compiler assigns the value of each of the bindings to the properties of the controller object before the constructor of this object is called. + * If disabled (false), the compiler calls the constructor first before assigning bindings. + * Defaults to false. + * See: https://docs.angularjs.org/api/ng/provider/$compileProvider#preAssignBindingsEnabled + */ + preAssignBindingsEnabled(): boolean; + preAssignBindingsEnabled(enabled: boolean): ICompileProvider; + /** * Sets the number of times $onChanges hooks can trigger new changes before giving up and assuming that the model is unstable. * Increasing the TTL could have performance implications, so you should not change it without proper justification. From 103d3580a5e28aaba3178191b71eef2dfc79c40a Mon Sep 17 00:00:00 2001 From: Bastien Date: Tue, 7 Feb 2017 17:33:37 +0100 Subject: [PATCH 155/231] set ngfMinDuration as optional parameter --- ng-file-upload/index.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ng-file-upload/index.d.ts b/ng-file-upload/index.d.ts index 2455c8daf5..d9aadbd2d5 100644 --- a/ng-file-upload/index.d.ts +++ b/ng-file-upload/index.d.ts @@ -41,7 +41,11 @@ declare module 'angular' { * Validate error name: minDuration * @type {(number|string)} */ - ngfMinDuration: number | string; + ngfMinDuration?: number | string; + /** + * Validate error name: minSize + * @type {(number|string)} + */ ngfMinSize?: number | string; /** * Validate error name: minRatio From 238d84f545eca19ac05b55405c692dac823ddef3 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Wed, 8 Feb 2017 02:34:58 +0900 Subject: [PATCH 156/231] add 'end' event to Client --- pg/index.d.ts | 1 + pg/pg-tests.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/pg/index.d.ts b/pg/index.d.ts index a2178d4823..ed03211e6b 100644 --- a/pg/index.d.ts +++ b/pg/index.d.ts @@ -100,6 +100,7 @@ export declare class Client extends events.EventEmitter { on(event: "drain", listener: () => void): this; on(event: "error", listener: (err: Error) => void): this; on(event: "notification" | "notice", listener: (message: any) => void): this; + on(event: "end", listener: () => void): this; } export declare class Query extends events.EventEmitter { diff --git a/pg/pg-tests.ts b/pg/pg-tests.ts index 15dfdde3d9..c4bbb0316c 100644 --- a/pg/pg-tests.ts +++ b/pg/pg-tests.ts @@ -43,6 +43,7 @@ client.connect((err) => { }); return null; }); +client.on('end', () => console.log("Client was disconnected.")); // client pooling From 52ae53f859138ce8ef37cfca624edfeee27ef367 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Wed, 8 Feb 2017 02:36:34 +0900 Subject: [PATCH 157/231] use arrow function on tests --- pg/pg-tests.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pg/pg-tests.ts b/pg/pg-tests.ts index c4bbb0316c..bdf49ab240 100644 --- a/pg/pg-tests.ts +++ b/pg/pg-tests.ts @@ -4,7 +4,7 @@ import * as pg from "pg"; var conString = "postgres://username:password@localhost/database"; // https://github.com/brianc/node-pg-types -pg.types.setTypeParser(20, (val) => Number(val)); +pg.types.setTypeParser(20, val => Number(val)); // Client pooling pg.defaults.ssl = true; @@ -28,7 +28,7 @@ pg.connect(conString, (err, client, done) => { // Simple var client = new pg.Client(conString); -client.connect((err) => { +client.connect(err => { if (err) { return console.error("Could not connect to postgres", err); } @@ -57,11 +57,11 @@ var config = { }; var pool = new pg.Pool(config); -pool.connect(function(err, client, done) { +pool.connect((err, client, done) => { if(err) { return console.error('error fetching client from pool', err); } - client.query('SELECT $1::int AS number', ['1'], function(err, result) { + client.query('SELECT $1::int AS number', ['1'], (err, result) => { done(); if(err) { @@ -71,6 +71,6 @@ pool.connect(function(err, client, done) { }); }); -pool.on('error', function (err, client) { +pool.on('error', (err, client) => { console.error('idle client error', err.message, err.stack) }) From 4342e2b37f6bd653c100589516062e4422ed7c6b Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Wed, 8 Feb 2017 02:45:49 +0900 Subject: [PATCH 158/231] restoring callback-less and removing optional --- pg/index.d.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pg/index.d.ts b/pg/index.d.ts index ed03211e6b..67ed0c355d 100644 --- a/pg/index.d.ts +++ b/pg/index.d.ts @@ -88,8 +88,11 @@ export declare class Client extends events.EventEmitter { end(callback?: (err: Error) => void): void; release(): void; - query(queryTextOrConfig: string | QueryConfig, callback?: (err: Error, result: QueryResult) => void): Query; - query(queryText: string, values: any[], callback?: (err: Error, result: QueryResult) => void): Query; + query(queryTextOrConfig: string | QueryConfig): Promise; + query(queryText: string, values: any[]): Promise; + + query(queryTextOrConfig: string | QueryConfig, callback: (err: Error, result: QueryResult) => void): Query; + query(queryText: string, values: any[], callback: (err: Error, result: QueryResult) => void): Query; copyFrom(queryText: string): stream.Writable; copyTo(queryText: string): stream.Readable; From 01208d2b66a40d7805ffb8d3269cd3443af8275c Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 06:28:22 +0800 Subject: [PATCH 159/231] chore: update tsconfig/tslint config --- webpack/tsconfig.json | 4 ++-- webpack/tslint.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 webpack/tslint.json diff --git a/webpack/tsconfig.json b/webpack/tsconfig.json index f85a099ac3..1a1c5440ce 100644 --- a/webpack/tsconfig.json +++ b/webpack/tsconfig.json @@ -5,7 +5,7 @@ "es6" ], "noImplicitAny": true, - "noImplicitThis": false, + "noImplicitThis": true, "strictNullChecks": true, "baseUrl": "../", "typeRoots": [ @@ -19,4 +19,4 @@ "index.d.ts", "webpack-tests.ts" ] -} \ No newline at end of file +} diff --git a/webpack/tslint.json b/webpack/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/webpack/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" } From 469a20b7a711e75fa08ae5ac4ad452b7ddfedf60 Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 06:28:31 +0800 Subject: [PATCH 160/231] style: fix lint errors --- webpack/index.d.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index a557034131..d172cd4bc6 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -472,7 +472,7 @@ declare namespace webpack { apply(thisArg: Webpack, ...args: any[]): void; } - type UglifyCommentFunction = (astNode: any, comment: any) => boolean + type UglifyCommentFunction = (astNode: any, comment: any) => boolean; interface UglifyPluginOptions extends UglifyJS.MinifyOptions { beautify?: boolean; @@ -810,7 +810,7 @@ declare namespace webpack { data?: any; - callback: loaderCallback | void; + callback: loaderCallback | undefined; /** @@ -861,7 +861,7 @@ declare namespace webpack { * The resource file. * In the example: "/abc/resource.js" */ - resourcePath: string + resourcePath: string; /** * The query of the resource. @@ -898,14 +898,14 @@ declare namespace webpack { * @param request * @param callback */ - resolve(context: string, request: string, callback: (err: Error, result: string) => void): any + resolve(context: string, request: string, callback: (err: Error, result: string) => void): any; /** * Resolve a request like a require expression. * @param context * @param request */ - resolveSync(context: string, request: string): string + resolveSync(context: string, request: string): string; /** @@ -928,7 +928,7 @@ declare namespace webpack { * Add a directory as dependency of the loader result. * @param directory */ - addContextDependency(directory: string): void + addContextDependency(directory: string): void; /** * Remove all dependencies of the loader result. Even initial dependencies and these of other loaders. Consider using pitch. @@ -991,7 +991,7 @@ declare namespace webpack { * @param content * @param sourceMap */ - emitFile(name: string, content: Buffer|String, sourceMap: any): void + emitFile(name: string, content: Buffer|string, sourceMap: any): void; /** From c42802e29d38a7636d2ea5bdd7e43b09b6f5e17f Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 06:41:18 +0800 Subject: [PATCH 161/231] style: fix indentation --- webpack/index.d.ts | 18 ++-- webpack/webpack-tests.ts | 192 +++++++++++++++++++-------------------- 2 files changed, 105 insertions(+), 105 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index d172cd4bc6..09e1a22421 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -832,16 +832,16 @@ declare namespace webpack { * In the example: * [ * { request: "/abc/loader1.js?xyz", - * path: "/abc/loader1.js", - * query: "?xyz", - * module: [Function] - * }, + * path: "/abc/loader1.js", + * query: "?xyz", + * module: [Function] + * }, * { request: "/abc/node_modules/loader2/index.js", - * path: "/abc/node_modules/loader2/index.js", - * query: "", - * module: [Function] - * } - *] + * path: "/abc/node_modules/loader2/index.js", + * query: "", + * module: [Function] + * } + * ] */ loaders: any[]; diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index 7c1f109a2d..be36076307 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -196,9 +196,9 @@ configuration = { }; configuration = { - resolve: { - root: __dirname - } + resolve: { + root: __dirname + } }; rule = { @@ -289,12 +289,12 @@ plugin = new webpack.optimize.UglifyJsPlugin({ } }); plugin = new webpack.optimize.UglifyJsPlugin({ - sourceMap: false, - comments: true, - beautify: true, - test: 'foo', - exclude: /node_modules/, - include: 'test' + sourceMap: false, + comments: true, + beautify: true, + test: 'foo', + exclude: /node_modules/, + include: 'test' }); plugin = new webpack.optimize.UglifyJsPlugin({ mangle: { @@ -302,9 +302,9 @@ plugin = new webpack.optimize.UglifyJsPlugin({ } }); plugin = new webpack.optimize.UglifyJsPlugin({ - comments: function(astNode: any, comment: any) { - return false; - } + comments: function(astNode: any, comment: any) { + return false; + } }); plugin = new webpack.optimize.CommonsChunkPlugin(options); plugin = new CommonsChunkPlugin({ @@ -383,7 +383,7 @@ plugin = new webpack.NoErrorsPlugin(); plugin = new webpack.NoEmitOnErrorsPlugin(); plugin = new webpack.WatchIgnorePlugin(paths); plugin = new webpack.LoaderOptionsPlugin({ - debug: true + debug: true }); // @@ -412,19 +412,19 @@ compiler.watch({ // watch options: // pass a number to set the polling interval }, function(err, stats) { // ... - }); +}); // or compiler.watch({ // watch options: ignored: 'foo/**/*' }, function(err, stats) { // ... - }); +}); // or compiler.watch({ // watch options: ignored: /node_modules/ }, function(err, stats) { // ... - }); +}); declare function handleFatalError(err: Error): void; declare function handleSoftErrors(errs: string[]): void; @@ -438,26 +438,26 @@ webpack({ return handleFatalError(err); var jsonStats = stats.toJson(); var jsonStatsWithAllOptions = stats.toJson({ - assets: true, - assetsSort: "field", - cached: true, - children: true, - chunks: true, - chunkModules: true, - chunkOrigins: true, - chunksSort: "field", - context: "../src/", - errors: true, - errorDetails: true, - hash: true, - modules: true, - modulesSort: "field", - publicPath: true, - reasons: true, - source: true, - timings: true, - version: true, - warnings: true + assets: true, + assetsSort: "field", + cached: true, + children: true, + chunks: true, + chunkModules: true, + chunkOrigins: true, + chunksSort: "field", + context: "../src/", + errors: true, + errorDetails: true, + hash: true, + modules: true, + modulesSort: "field", + publicPath: true, + reasons: true, + source: true, + timings: true, + version: true, + warnings: true }); if(jsonStats.errors.length > 0) return handleSoftErrors(jsonStats.errors); @@ -491,51 +491,51 @@ rule = { } configuration = { - module: { - rules: [ - { oneOf: [ - { - test: { - and: [ - /a.\.js$/, - /b\.js$/ - ] - }, - loader: "./loader?first" - }, - { - test: [ - require.resolve("./a"), - require.resolve("./c"), - ], - issuer: require.resolve("./b"), - use: [ - "./loader?second-1", - { - loader: "./loader", - options: "second-2" - }, - { - loader: "./loader", - options: { - get: function() { return "second-3"; } - } - } - ] - }, - { - test: { - or: [ - require.resolve("./a"), - require.resolve("./c"), - ] - }, - loader: "./loader", - options: "third" - } - ]} - ] - } + module: { + rules: [ + { oneOf: [ + { + test: { + and: [ + /a.\.js$/, + /b\.js$/ + ] + }, + loader: "./loader?first" + }, + { + test: [ + require.resolve("./a"), + require.resolve("./c"), + ], + issuer: require.resolve("./b"), + use: [ + "./loader?second-1", + { + loader: "./loader", + options: "second-2" + }, + { + loader: "./loader", + options: { + get: function() { return "second-3"; } + } + } + ] + }, + { + test: { + or: [ + require.resolve("./a"), + require.resolve("./c"), + ] + }, + loader: "./loader", + options: "third" + } + ]} + ] + } } const resolve: webpack.Resolve = { @@ -543,35 +543,35 @@ const resolve: webpack.Resolve = { } const performance: webpack.PerformanceOptions = { - hints: 'error', - maxEntrypointSize: 400000, - maxAssetSize: 100000, - assetFilter: function(assetFilename) { - return assetFilename.endsWith('.js'); - }, + hints: 'error', + maxEntrypointSize: 400000, + maxAssetSize: 100000, + assetFilter: function(assetFilename) { + return assetFilename.endsWith('.js'); + }, }; configuration = { - performance, + performance, }; function loader(this: webpack.loader.LoaderContext, source: string, sourcemap: string): void { - this.cacheable(); + this.cacheable(); - this.async(); + this.async(); - this.addDependency(''); + this.addDependency(''); - this.resolve('context', 'request', ( err: Error, result: string) => {}); + this.resolve('context', 'request', ( err: Error, result: string) => {}); - this.emitError('wraning'); + this.emitError('wraning'); - this.callback(null, source); + this.callback(null, source); } module loader { - export const raw: boolean = true; - export const pitch = (remainingRequest: string, precedingRequest: string, data: any) => {}; + export const raw: boolean = true; + export const pitch = (remainingRequest: string, precedingRequest: string, data: any) => {}; } const loaderRef: webpack.loader.Loader = loader; console.log(loaderRef.raw === true); From 7463c5be2d100666880d980478395a0a18a89d8f Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 09:18:30 +0800 Subject: [PATCH 162/231] fix: pass failing tests remove undefined from LoaderContext.callback type --- webpack/index.d.ts | 2 +- webpack/webpack-tests.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index 09e1a22421..5f3dcb1688 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -810,7 +810,7 @@ declare namespace webpack { data?: any; - callback: loaderCallback | undefined; + callback: loaderCallback; /** diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index be36076307..0969070323 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -217,7 +217,8 @@ declare var require: any; declare var path: any; configuration = { plugins: [ - function() { + /** @todo `this` should be typed as webpack.compiler.Compiler (which should be webpack.Compiler), not webpack.Webpack */ + function(this: any) { this.plugin("done", function(stats: any) { require("fs").writeFileSync( path.join(__dirname, "...", "stats.json"), From 2b25f6b2b8bfff0d8d4ee24a39daa1bfceb82a42 Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 09:22:28 +0800 Subject: [PATCH 163/231] chore: remove OccurenceOrderPlugin --- webpack/index.d.ts | 6 ++---- webpack/webpack-tests.ts | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index 5f3dcb1688..5def0965ff 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -598,9 +598,7 @@ declare namespace webpack { * Assign the module and chunk ids by occurrence count. Ids that are used often get lower (shorter) ids. * This make ids predictable, reduces to total file size and is recommended. */ - // TODO: This is a typo, and will be removed in Webpack 2. - OccurenceOrderPlugin: optimize.OccurenceOrderPluginStatic; - OccurrenceOrderPlugin: optimize.OccurenceOrderPluginStatic; + OccurrenceOrderPlugin: optimize.OccurrenceOrderPluginStatic; /** * Minimize all JavaScript output of chunks. Loaders are switched into minimizing mode. * You can pass an object containing UglifyJs options. @@ -1027,7 +1025,7 @@ declare namespace webpack { interface MinChunkSizePluginStatic { new (options: any): Plugin; } - interface OccurenceOrderPluginStatic { + interface OccurrenceOrderPluginStatic { new (preferEntry: boolean): Plugin; } interface UglifyJsPluginStatic { diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index 0969070323..a536a2713f 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -280,7 +280,7 @@ plugin = new webpack.BannerPlugin(banner, options); plugin = new webpack.optimize.DedupePlugin(); plugin = new webpack.optimize.LimitChunkCountPlugin(options); plugin = new webpack.optimize.MinChunkSizePlugin(options); -plugin = new webpack.optimize.OccurenceOrderPlugin(preferEntry); +plugin = new webpack.optimize.OccurrenceOrderPlugin(preferEntry); plugin = new webpack.optimize.OccurrenceOrderPlugin(preferEntry); plugin = new webpack.optimize.UglifyJsPlugin(options); plugin = new webpack.optimize.UglifyJsPlugin(); From dca67839219fbffde30a367397bdd54b6a52a68d Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Mon, 6 Feb 2017 09:56:31 +0800 Subject: [PATCH 164/231] chore: remove LabeledModulesPlugin BREAKING CHANGE: remove webpack.Dependencies interface --- webpack/index.d.ts | 12 +----------- webpack/webpack-tests.ts | 1 - 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index 5def0965ff..c077ef232a 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -492,7 +492,7 @@ declare namespace webpack { /** * dependencies namespace */ - dependencies: Dependencies; + dependencies: {}; /** * Replace resources that matches resourceRegExp with newResource. * If newResource is relative, it is resolve relative to the previous resource. @@ -613,13 +613,6 @@ declare namespace webpack { AggressiveMergingPlugin: optimize.AggressiveMergingPluginStatic; } - interface Dependencies { - /** - * Support Labeled Modules. - */ - LabeledModulesPlugin: dependencies.LabeledModulesPluginStatic; - } - interface DirectoryDescriptionFilePluginStatic { new (file: string, files: string[]): Plugin; } @@ -1041,9 +1034,6 @@ declare namespace webpack { } namespace dependencies { - interface LabeledModulesPluginStatic { - new (): Plugin; - } } namespace compiler { diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index a536a2713f..9515f6045b 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -345,7 +345,6 @@ plugin = new CommonsChunkPlugin({ // (3 children must share the module before it's separated) }); plugin = new webpack.optimize.AggressiveMergingPlugin(options); -plugin = new webpack.dependencies.LabeledModulesPlugin(); plugin = new webpack.DefinePlugin(definitions); plugin = new webpack.DefinePlugin({ VERSION: JSON.stringify("5fa3b9"), From f522cb689bda7db05d6cd951820ed43988370cd5 Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Tue, 7 Feb 2017 08:23:53 +0800 Subject: [PATCH 165/231] chore: remove ResolverPlugin --- webpack/index.d.ts | 23 ----------------------- webpack/webpack-tests.ts | 20 -------------------- 2 files changed, 43 deletions(-) diff --git a/webpack/index.d.ts b/webpack/index.d.ts index c077ef232a..9801249051 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -515,10 +515,6 @@ declare namespace webpack { * This can boost performance. Try to profile the build first to determine clever prefetching points. */ PrefetchPlugin: PrefetchPluginStatic; - /** - * Apply a plugin (or array of plugins) to one or more resolvers (as specified in types). - */ - ResolverPlugin: ResolverPluginStatic; /** * Adds a banner to the top of each generated chunk. */ @@ -613,10 +609,6 @@ declare namespace webpack { AggressiveMergingPlugin: optimize.AggressiveMergingPluginStatic; } - interface DirectoryDescriptionFilePluginStatic { - new (file: string, files: string[]): Plugin; - } - interface NormalModuleReplacementPluginStatic { new (resourceRegExp: any, newResource: any): Plugin; } @@ -635,21 +627,6 @@ declare namespace webpack { new (request: any): Plugin; } - interface ResolverPluginStatic { - new (plugins: Plugin[], files?: string[]): Plugin; - DirectoryDescriptionFilePlugin: DirectoryDescriptionFilePluginStatic; - /** - * This plugin will append a path to the module directory to find a match, - * which can be useful if you have a module which has an incorrect “main” entry in its package.json/bower.json etc (e.g. "main": "Gruntfile.js"). - * You can use this plugin as a special case to load the correct file for this module. Example: - */ - FileAppendPlugin: FileAppendPluginStatic; - } - - interface FileAppendPluginStatic { - new (files: string[]): Plugin; - } - interface BannerPluginStatic { new (banner: any, options: any): Plugin; } diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index 9515f6045b..e2e643a1da 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -32,18 +32,6 @@ rule = { query: { mimetype: "image/png" } }; -// -// https://webpack.github.io/docs/using-plugins.html -// - -configuration = { - plugins: [ - new webpack.ResolverPlugin([ - new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin("bower.json", ["main"]) - ], ["normal", "loader"]) - ] -}; - // // http://webpack.github.io/docs/tutorials/getting-started/ // @@ -268,14 +256,6 @@ plugin = new webpack.IgnorePlugin(requestRegExp, contextRegExp); plugin = new webpack.PrefetchPlugin(context, request); plugin = new webpack.PrefetchPlugin(request); -plugin = new webpack.ResolverPlugin(plugins, types); -plugin = new webpack.ResolverPlugin(plugins); -plugin = new webpack.ResolverPlugin([ - new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin("bower.json", ["main"]) -], ["normal", "loader"]); -plugin = new webpack.ResolverPlugin([ - new webpack.ResolverPlugin.FileAppendPlugin(['/dist/compiled-moduled.js']) -]); plugin = new webpack.BannerPlugin(banner, options); plugin = new webpack.optimize.DedupePlugin(); plugin = new webpack.optimize.LimitChunkCountPlugin(options); From f0bebc6824ff1ba77616f660c87928f4eb8a72ad Mon Sep 17 00:00:00 2001 From: Benjamin Lim Date: Tue, 7 Feb 2017 08:31:40 +0800 Subject: [PATCH 166/231] chore: remove overloaded CommonsChunkPlugin constructor https://github.com/webpack/webpack/blob/d7384e2f6a17187e59ec2831b41ee813ec158f14/lib/optimize/CommonsChunkPlugin.js#L10-L25 --- .../extract-text-webpack-plugin-tests.ts | 5 ++++- webpack/index.d.ts | 1 - webpack/webpack-tests.ts | 14 ++++++++------ 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/extract-text-webpack-plugin/extract-text-webpack-plugin-tests.ts b/extract-text-webpack-plugin/extract-text-webpack-plugin-tests.ts index 62e522a348..63177ebde3 100644 --- a/extract-text-webpack-plugin/extract-text-webpack-plugin-tests.ts +++ b/extract-text-webpack-plugin/extract-text-webpack-plugin-tests.ts @@ -58,7 +58,10 @@ configuration = { configuration = { // ... plugins: [ - new optimize.CommonsChunkPlugin("commons", "commons.js"), + new optimize.CommonsChunkPlugin({ + name: "commons", + filename: "commons.js", + }), new ExtractTextPlugin("[name].css") ] }; diff --git a/webpack/index.d.ts b/webpack/index.d.ts index 9801249051..43ced0bce5 100644 --- a/webpack/index.d.ts +++ b/webpack/index.d.ts @@ -1002,7 +1002,6 @@ declare namespace webpack { new (options?: UglifyPluginOptions): Plugin; } interface CommonsChunkPluginStatic { - new (chunkName: string, filenames?: string | string[]): Plugin; new (options?: any): Plugin; } interface AggressiveMergingPluginStatic { diff --git a/webpack/webpack-tests.ts b/webpack/webpack-tests.ts index e2e643a1da..4ed9fc3b31 100644 --- a/webpack/webpack-tests.ts +++ b/webpack/webpack-tests.ts @@ -62,7 +62,10 @@ configuration = { filename: "bundle.js" }, plugins: [ - new webpack.optimize.CommonsChunkPlugin(/* chunkName= */"vendor", /* filename= */"vendor.bundle.js") + new webpack.optimize.CommonsChunkPlugin({ + name: "vendor", + filename: "vendor.bundle.js", + }), ] }; @@ -126,10 +129,6 @@ configuration = { output: { filename: "[name].js" }, - plugins: [ - new CommonsChunkPlugin("admin-commons.js", ["ap1", "ap2"]), - new CommonsChunkPlugin("commons.js", ["p1", "p2", "admin-commons.js"]) - ] }; //