wip: type

This commit is contained in:
GleidsonDaniel 2024-03-13 16:45:36 -03:00
parent 476a1c362f
commit ab59dbd87c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ const Icon = ({ audioState, disabled }: { audioState: TAudioState; disabled: boo
return <CustomIcon name={customIconName} size={24} color={disabled ? colors.tintDisabled : colors.buttonFontPrimary} />;
};
const PlayButton = ({ onPress, disabled = false, audioState }: IButton) => {
const PlayButton = ({ onPress, disabled = false, audioState }: IButton): React.ReactElement => {
const { colors } = useTheme();
return (