Skip to content

Commit

Permalink
Make <EuiProgress> props more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
weltenwort committed Mar 15, 2018
1 parent 67f5691 commit 0861779
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/progress/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/// <reference path="../common.d.ts" />

import { SFC, HTMLAttributes } from 'react';
import { SFC, ProgressHTMLAttributes } from 'react';

declare module '@elastic/eui' {
/**
Expand All @@ -18,7 +18,7 @@ declare module '@elastic/eui' {
export type EuiProgressPosition = 'fixed' | 'absolute' | 'static';

export type EuiProgressProps = CommonProps &
HTMLAttributes<HTMLProgressElement> & {
ProgressHTMLAttributes<HTMLProgressElement> & {
size?: EuiProgressSize;
color?: EuiProgressColor;
position?: EuiProgressPosition;
Expand Down

0 comments on commit 0861779

Please sign in to comment.