From 4a427f047d7feac85a27b8aaa02c1fb5493f7f50 Mon Sep 17 00:00:00 2001 From: DrowsyFlesh Date: Thu, 27 Jul 2023 19:17:40 +0800 Subject: [PATCH] readd SpeakerOffFilledIcon --- src/Icons/Player/SpeakerOffFilledIcon.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Icons/Player/SpeakerOffFilledIcon.tsx diff --git a/src/Icons/Player/SpeakerOffFilledIcon.tsx b/src/Icons/Player/SpeakerOffFilledIcon.tsx new file mode 100644 index 0000000..775d04e --- /dev/null +++ b/src/Icons/Player/SpeakerOffFilledIcon.tsx @@ -0,0 +1,12 @@ +import * as React from 'react'; +import {IconProps} from '../types'; +import * as PropTypes from 'prop-types'; + +export const SpeakerOffFilledIcon = React.forwardRef( + ({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => { + return ; + } +); +SpeakerOffFilledIcon.displayName = 'SpeakerOffFilledIcon'; +SpeakerOffFilledIcon.propTypes = {iconType: PropTypes.string}; +SpeakerOffFilledIcon.defaultProps = {iconType: 'Player'}; \ No newline at end of file