@@ -10,8 +10,8 @@ import {
10
10
getComponentType ,
11
11
getUnhandledProps ,
12
12
SUI ,
13
- useKeyOnly ,
14
- useValueAndKey ,
13
+ getKeyOnly ,
14
+ getValueAndKey ,
15
15
} from '../../lib'
16
16
17
17
/**
@@ -129,14 +129,14 @@ const Progress = React.forwardRef(function (props, ref) {
129
129
'ui' ,
130
130
color ,
131
131
size ,
132
- useKeyOnly ( active || indicating , 'active' ) ,
133
- useKeyOnly ( disabled , 'disabled' ) ,
134
- useKeyOnly ( error , 'error' ) ,
135
- useKeyOnly ( indicating , 'indicating' ) ,
136
- useKeyOnly ( inverted , 'inverted' ) ,
137
- useKeyOnly ( success || isAutoSuccess , 'success' ) ,
138
- useKeyOnly ( warning , 'warning' ) ,
139
- useValueAndKey ( attached , 'attached' ) ,
132
+ getKeyOnly ( active || indicating , 'active' ) ,
133
+ getKeyOnly ( disabled , 'disabled' ) ,
134
+ getKeyOnly ( error , 'error' ) ,
135
+ getKeyOnly ( indicating , 'indicating' ) ,
136
+ getKeyOnly ( inverted , 'inverted' ) ,
137
+ getKeyOnly ( success || isAutoSuccess , 'success' ) ,
138
+ getKeyOnly ( warning , 'warning' ) ,
139
+ getValueAndKey ( attached , 'attached' ) ,
140
140
'progress' ,
141
141
className ,
142
142
)
0 commit comments