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