Skip to content

Commit

Permalink
readd SpeakerOffFilledIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
jjj201200 committed Jul 27, 2023
1 parent 4779621 commit 4a427f0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Icons/Player/SpeakerOffFilledIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import * as React from 'react';
import {IconProps} from '../types';
import * as PropTypes from 'prop-types';

export const SpeakerOffFilledIcon = React.forwardRef<SVGSVGElement, IconProps>(
({color = 'currentColor', iconType = 'Player', ...props}, forwardedRef) => {
return <svg width="15" height="15" xmlns="http://www.w3.org/2000/svg" {...props} ref={forwardedRef}><path d="M8 1.5v12a.5.5 0 0 1-.8.4L3.333 11H1.5A1.5 1.5 0 0 1 0 9.5v-4A1.5 1.5 0 0 1 1.5 4h1.833L7.2 1.1a.5.5 0 0 1 .8.4Zm6.854 4.354L13.207 7.5l1.647 1.646a.5.5 0 1 1-.708.708L12.5 8.207l-1.646 1.647a.5.5 0 0 1-.708-.708L11.793 7.5l-1.647-1.646a.5.5 0 1 1 .708-.708L12.5 6.793l1.646-1.647a.5.5 0 0 1 .708.708Z" fillRule="evenodd"/></svg>;
}
);
SpeakerOffFilledIcon.displayName = 'SpeakerOffFilledIcon';
SpeakerOffFilledIcon.propTypes = {iconType: PropTypes.string};
SpeakerOffFilledIcon.defaultProps = {iconType: 'Player'};

0 comments on commit 4a427f0

Please sign in to comment.