mirror of
https://github.com/kevinsqi/react-circular-progressbar.git
synced 2026-01-18 15:55:06 +00:00
remove unused CircularProgressbarState type
This commit is contained in:
parent
18714853c4
commit
109b1069f0
@ -8,16 +8,9 @@ import {
|
||||
VIEWBOX_CENTER_Y,
|
||||
} from './constants';
|
||||
import Path from './Path';
|
||||
import {
|
||||
CircularProgressbarDefaultProps,
|
||||
CircularProgressbarProps,
|
||||
CircularProgressbarState,
|
||||
} from './types';
|
||||
import { CircularProgressbarDefaultProps, CircularProgressbarProps } from './types';
|
||||
|
||||
class CircularProgressbar extends React.Component<
|
||||
CircularProgressbarProps,
|
||||
CircularProgressbarState
|
||||
> {
|
||||
class CircularProgressbar extends React.Component<CircularProgressbarProps> {
|
||||
static defaultProps: CircularProgressbarDefaultProps = {
|
||||
strokeWidth: 8,
|
||||
className: '',
|
||||
|
||||
@ -50,7 +50,3 @@ export type CircularProgressbarWrapperProps = {
|
||||
export type CircularProgressbarProps = CircularProgressbarDefaultProps & {
|
||||
percentage: number;
|
||||
};
|
||||
|
||||
export type CircularProgressbarState = {
|
||||
percentage: number;
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user