Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions src/FileIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ const propTypes = {
labelColor: PropTypes.string,
/** Color of label text */
labelTextColor: PropTypes.string,
/** Displays the label in all caps */
labelUppercase: PropTypes.bool,
/** Corner radius of the file icon */
radius: PropTypes.number,
/** Type of glyph icon to display */
Expand Down Expand Up @@ -76,7 +74,6 @@ export const FileIcon = ({
gradientOpacity = 0.25,
labelColor,
labelTextColor = 'white',
labelUppercase = false,
radius = 4,
type,
}) => {
Expand Down Expand Up @@ -200,7 +197,6 @@ export const FileIcon = ({
fontWeight: 'bold',
textAlign: 'center',
pointerEvents: 'none',
textTransform: labelUppercase ? 'uppercase' : 'none',
userSelect: 'none',
}}
>
Expand Down