UNPKG
@ezuikit/theme-plugin-volume
Version:
latest (0.1.0)
0.1.0
0.1.0-alpha.1
0.0.1-alpha.5
0.0.1-alpha.4
0.0.1-alpha.3
0.0.1-alpha.2
0.0.1-alpha.1
0.0.1-alpha.0
volume
@ezuikit/theme-plugin-volume
/
dist
/
types
/
index.d.ts
10 lines
(8 loc)
•
243 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
VolumeProps
{
/** 播放图标 */
icon?:
string
;
/** 暂停图标 */
muteIcon?:
string
; }
declare
function
Volume
(
props?: VolumeProps
): (
theme: any
) =>
HTMLDivElement; export { type VolumeProps, Volume
as
default
};