Skip to content

Commit

Permalink
fix: add displayName to aid debugging (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
stipsan authored Jul 19, 2024
1 parent b5f2082 commit 5e3e1cd
Show file tree
Hide file tree
Showing 212 changed files with 213 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const __NAME__ = forwardRef(function __NAME__(
return (
__JSX__
)
})
});
__NAME__.displayName = 'ForwardRef(__NAME__)'
`

async function readIcon(filePath: string) {
Expand Down
1 change: 1 addition & 0 deletions src/icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ export const Icon = forwardRef(function Icon(

return <IconComponent {...restProps} ref={ref} />
})
Icon.displayName = 'ForwardRef(Icon)'
1 change: 1 addition & 0 deletions src/icons/accessDeniedIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const AccessDeniedIcon = forwardRef(function AccessDeniedIcon(
</svg>
)
})
AccessDeniedIcon.displayName = 'ForwardRef(AccessDeniedIcon)'
1 change: 1 addition & 0 deletions src/icons/activityIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ActivityIcon = forwardRef(function ActivityIcon(
</svg>
)
})
ActivityIcon.displayName = 'ForwardRef(ActivityIcon)'
1 change: 1 addition & 0 deletions src/icons/addCircleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const AddCircleIcon = forwardRef(function AddCircleIcon(
</svg>
)
})
AddCircleIcon.displayName = 'ForwardRef(AddCircleIcon)'
1 change: 1 addition & 0 deletions src/icons/addCommentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const AddCommentIcon = forwardRef(function AddCommentIcon(
</svg>
)
})
AddCommentIcon.displayName = 'ForwardRef(AddCommentIcon)'
1 change: 1 addition & 0 deletions src/icons/addDocumentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const AddDocumentIcon = forwardRef(function AddDocumentIcon(
</svg>
)
})
AddDocumentIcon.displayName = 'ForwardRef(AddDocumentIcon)'
1 change: 1 addition & 0 deletions src/icons/addIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const AddIcon = forwardRef(function AddIcon(
</svg>
)
})
AddIcon.displayName = 'ForwardRef(AddIcon)'
1 change: 1 addition & 0 deletions src/icons/apiIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const ApiIcon = forwardRef(function ApiIcon(
</svg>
)
})
ApiIcon.displayName = 'ForwardRef(ApiIcon)'
1 change: 1 addition & 0 deletions src/icons/archiveIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const ArchiveIcon = forwardRef(function ArchiveIcon(
</svg>
)
})
ArchiveIcon.displayName = 'ForwardRef(ArchiveIcon)'
1 change: 1 addition & 0 deletions src/icons/arrowDownIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const ArrowDownIcon = forwardRef(function ArrowDownIcon(
</svg>
)
})
ArrowDownIcon.displayName = 'ForwardRef(ArrowDownIcon)'
1 change: 1 addition & 0 deletions src/icons/arrowLeftIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const ArrowLeftIcon = forwardRef(function ArrowLeftIcon(
</svg>
)
})
ArrowLeftIcon.displayName = 'ForwardRef(ArrowLeftIcon)'
1 change: 1 addition & 0 deletions src/icons/arrowRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const ArrowRightIcon = forwardRef(function ArrowRightIcon(
</svg>
)
})
ArrowRightIcon.displayName = 'ForwardRef(ArrowRightIcon)'
1 change: 1 addition & 0 deletions src/icons/arrowTopRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ export const ArrowTopRightIcon = forwardRef(function ArrowTopRightIcon(
</svg>
)
})
ArrowTopRightIcon.displayName = 'ForwardRef(ArrowTopRightIcon)'
1 change: 1 addition & 0 deletions src/icons/arrowUpIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const ArrowUpIcon = forwardRef(function ArrowUpIcon(
</svg>
)
})
ArrowUpIcon.displayName = 'ForwardRef(ArrowUpIcon)'
1 change: 1 addition & 0 deletions src/icons/asteriskIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const AsteriskIcon = forwardRef(function AsteriskIcon(
</svg>
)
})
AsteriskIcon.displayName = 'ForwardRef(AsteriskIcon)'
1 change: 1 addition & 0 deletions src/icons/barChartIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BarChartIcon = forwardRef(function BarChartIcon(
</svg>
)
})
BarChartIcon.displayName = 'ForwardRef(BarChartIcon)'
1 change: 1 addition & 0 deletions src/icons/basketIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BasketIcon = forwardRef(function BasketIcon(
</svg>
)
})
BasketIcon.displayName = 'ForwardRef(BasketIcon)'
1 change: 1 addition & 0 deletions src/icons/bellIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BellIcon = forwardRef(function BellIcon(
</svg>
)
})
BellIcon.displayName = 'ForwardRef(BellIcon)'
1 change: 1 addition & 0 deletions src/icons/billIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BillIcon = forwardRef(function BillIcon(
</svg>
)
})
BillIcon.displayName = 'ForwardRef(BillIcon)'
1 change: 1 addition & 0 deletions src/icons/binaryDocumentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ export const BinaryDocumentIcon = forwardRef(function BinaryDocumentIcon(
</svg>
)
})
BinaryDocumentIcon.displayName = 'ForwardRef(BinaryDocumentIcon)'
1 change: 1 addition & 0 deletions src/icons/blockContentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,4 @@ export const BlockContentIcon = forwardRef(function BlockContentIcon(
</svg>
)
})
BlockContentIcon.displayName = 'ForwardRef(BlockContentIcon)'
1 change: 1 addition & 0 deletions src/icons/blockElementIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BlockElementIcon = forwardRef(function BlockElementIcon(
</svg>
)
})
BlockElementIcon.displayName = 'ForwardRef(BlockElementIcon)'
1 change: 1 addition & 0 deletions src/icons/blockquoteIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BlockquoteIcon = forwardRef(function BlockquoteIcon(
</svg>
)
})
BlockquoteIcon.displayName = 'ForwardRef(BlockquoteIcon)'
1 change: 1 addition & 0 deletions src/icons/boldIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ export const BoldIcon = forwardRef(function BoldIcon(
</svg>
)
})
BoldIcon.displayName = 'ForwardRef(BoldIcon)'
1 change: 1 addition & 0 deletions src/icons/boltIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BoltIcon = forwardRef(function BoltIcon(
</svg>
)
})
BoltIcon.displayName = 'ForwardRef(BoltIcon)'
1 change: 1 addition & 0 deletions src/icons/bookIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BookIcon = forwardRef(function BookIcon(
</svg>
)
})
BookIcon.displayName = 'ForwardRef(BookIcon)'
1 change: 1 addition & 0 deletions src/icons/bottleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const BottleIcon = forwardRef(function BottleIcon(
</svg>
)
})
BottleIcon.displayName = 'ForwardRef(BottleIcon)'
1 change: 1 addition & 0 deletions src/icons/bulbFilledIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ export const BulbFilledIcon = forwardRef(function BulbFilledIcon(
</svg>
)
})
BulbFilledIcon.displayName = 'ForwardRef(BulbFilledIcon)'
1 change: 1 addition & 0 deletions src/icons/bulbOutlineIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ export const BulbOutlineIcon = forwardRef(function BulbOutlineIcon(
</svg>
)
})
BulbOutlineIcon.displayName = 'ForwardRef(BulbOutlineIcon)'
1 change: 1 addition & 0 deletions src/icons/calendarIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CalendarIcon = forwardRef(function CalendarIcon(
</svg>
)
})
CalendarIcon.displayName = 'ForwardRef(CalendarIcon)'
1 change: 1 addition & 0 deletions src/icons/caseIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CaseIcon = forwardRef(function CaseIcon(
</svg>
)
})
CaseIcon.displayName = 'ForwardRef(CaseIcon)'
1 change: 1 addition & 0 deletions src/icons/chartUpwardIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ChartUpwardIcon = forwardRef(function ChartUpwardIcon(
</svg>
)
})
ChartUpwardIcon.displayName = 'ForwardRef(ChartUpwardIcon)'
1 change: 1 addition & 0 deletions src/icons/checkmarkCircleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CheckmarkCircleIcon = forwardRef(function CheckmarkCircleIcon(
</svg>
)
})
CheckmarkCircleIcon.displayName = 'ForwardRef(CheckmarkCircleIcon)'
1 change: 1 addition & 0 deletions src/icons/checkmarkIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CheckmarkIcon = forwardRef(function CheckmarkIcon(
</svg>
)
})
CheckmarkIcon.displayName = 'ForwardRef(CheckmarkIcon)'
1 change: 1 addition & 0 deletions src/icons/chevronDownIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ChevronDownIcon = forwardRef(function ChevronDownIcon(
</svg>
)
})
ChevronDownIcon.displayName = 'ForwardRef(ChevronDownIcon)'
1 change: 1 addition & 0 deletions src/icons/chevronLeftIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ChevronLeftIcon = forwardRef(function ChevronLeftIcon(
</svg>
)
})
ChevronLeftIcon.displayName = 'ForwardRef(ChevronLeftIcon)'
1 change: 1 addition & 0 deletions src/icons/chevronRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ChevronRightIcon = forwardRef(function ChevronRightIcon(
</svg>
)
})
ChevronRightIcon.displayName = 'ForwardRef(ChevronRightIcon)'
1 change: 1 addition & 0 deletions src/icons/chevronUpIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ChevronUpIcon = forwardRef(function ChevronUpIcon(
</svg>
)
})
ChevronUpIcon.displayName = 'ForwardRef(ChevronUpIcon)'
1 change: 1 addition & 0 deletions src/icons/circleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ export const CircleIcon = forwardRef(function CircleIcon(
</svg>
)
})
CircleIcon.displayName = 'ForwardRef(CircleIcon)'
1 change: 1 addition & 0 deletions src/icons/clipboardIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ClipboardIcon = forwardRef(function ClipboardIcon(
</svg>
)
})
ClipboardIcon.displayName = 'ForwardRef(ClipboardIcon)'
1 change: 1 addition & 0 deletions src/icons/clipboardImageIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ClipboardImageIcon = forwardRef(function ClipboardImageIcon(
</svg>
)
})
ClipboardImageIcon.displayName = 'ForwardRef(ClipboardImageIcon)'
1 change: 1 addition & 0 deletions src/icons/clockIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ClockIcon = forwardRef(function ClockIcon(
</svg>
)
})
ClockIcon.displayName = 'ForwardRef(ClockIcon)'
1 change: 1 addition & 0 deletions src/icons/closeCircleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CloseCircleIcon = forwardRef(function CloseCircleIcon(
</svg>
)
})
CloseCircleIcon.displayName = 'ForwardRef(CloseCircleIcon)'
1 change: 1 addition & 0 deletions src/icons/closeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CloseIcon = forwardRef(function CloseIcon(
</svg>
)
})
CloseIcon.displayName = 'ForwardRef(CloseIcon)'
1 change: 1 addition & 0 deletions src/icons/codeBlockIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CodeBlockIcon = forwardRef(function CodeBlockIcon(
</svg>
)
})
CodeBlockIcon.displayName = 'ForwardRef(CodeBlockIcon)'
1 change: 1 addition & 0 deletions src/icons/codeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CodeIcon = forwardRef(function CodeIcon(
</svg>
)
})
CodeIcon.displayName = 'ForwardRef(CodeIcon)'
1 change: 1 addition & 0 deletions src/icons/cogIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const CogIcon = forwardRef(function CogIcon(
</svg>
)
})
CogIcon.displayName = 'ForwardRef(CogIcon)'
1 change: 1 addition & 0 deletions src/icons/collapseIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const CollapseIcon = forwardRef(function CollapseIcon(
</svg>
)
})
CollapseIcon.displayName = 'ForwardRef(CollapseIcon)'
1 change: 1 addition & 0 deletions src/icons/colorWheelIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ColorWheelIcon = forwardRef(function ColorWheelIcon(
</svg>
)
})
ColorWheelIcon.displayName = 'ForwardRef(ColorWheelIcon)'
1 change: 1 addition & 0 deletions src/icons/commentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CommentIcon = forwardRef(function CommentIcon(
</svg>
)
})
CommentIcon.displayName = 'ForwardRef(CommentIcon)'
1 change: 1 addition & 0 deletions src/icons/componentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ComponentIcon = forwardRef(function ComponentIcon(
</svg>
)
})
ComponentIcon.displayName = 'ForwardRef(ComponentIcon)'
1 change: 1 addition & 0 deletions src/icons/composeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ComposeIcon = forwardRef(function ComposeIcon(
</svg>
)
})
ComposeIcon.displayName = 'ForwardRef(ComposeIcon)'
1 change: 1 addition & 0 deletions src/icons/confettiIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ export const ConfettiIcon = forwardRef(function ConfettiIcon(
</svg>
)
})
ConfettiIcon.displayName = 'ForwardRef(ConfettiIcon)'
1 change: 1 addition & 0 deletions src/icons/controlsIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const ControlsIcon = forwardRef(function ControlsIcon(
</svg>
)
})
ControlsIcon.displayName = 'ForwardRef(ControlsIcon)'
1 change: 1 addition & 0 deletions src/icons/copyIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CopyIcon = forwardRef(function CopyIcon(
</svg>
)
})
CopyIcon.displayName = 'ForwardRef(CopyIcon)'
1 change: 1 addition & 0 deletions src/icons/creditCardIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ export const CreditCardIcon = forwardRef(function CreditCardIcon(
</svg>
)
})
CreditCardIcon.displayName = 'ForwardRef(CreditCardIcon)'
1 change: 1 addition & 0 deletions src/icons/cropIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const CropIcon = forwardRef(function CropIcon(
</svg>
)
})
CropIcon.displayName = 'ForwardRef(CropIcon)'
1 change: 1 addition & 0 deletions src/icons/cubeIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const CubeIcon = forwardRef(function CubeIcon(
</svg>
)
})
CubeIcon.displayName = 'ForwardRef(CubeIcon)'
1 change: 1 addition & 0 deletions src/icons/dashboardIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DashboardIcon = forwardRef(function DashboardIcon(
</svg>
)
})
DashboardIcon.displayName = 'ForwardRef(DashboardIcon)'
1 change: 1 addition & 0 deletions src/icons/databaseIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DatabaseIcon = forwardRef(function DatabaseIcon(
</svg>
)
})
DatabaseIcon.displayName = 'ForwardRef(DatabaseIcon)'
1 change: 1 addition & 0 deletions src/icons/desktopIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DesktopIcon = forwardRef(function DesktopIcon(
</svg>
)
})
DesktopIcon.displayName = 'ForwardRef(DesktopIcon)'
1 change: 1 addition & 0 deletions src/icons/diamondIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DiamondIcon = forwardRef(function DiamondIcon(
</svg>
)
})
DiamondIcon.displayName = 'ForwardRef(DiamondIcon)'
1 change: 1 addition & 0 deletions src/icons/documentIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentIcon = forwardRef(function DocumentIcon(
</svg>
)
})
DocumentIcon.displayName = 'ForwardRef(DocumentIcon)'
1 change: 1 addition & 0 deletions src/icons/documentPdfIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ export const DocumentPdfIcon = forwardRef(function DocumentPdfIcon(
</svg>
)
})
DocumentPdfIcon.displayName = 'ForwardRef(DocumentPdfIcon)'
1 change: 1 addition & 0 deletions src/icons/documentRemoveIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentRemoveIcon = forwardRef(function DocumentRemoveIcon(
</svg>
)
})
DocumentRemoveIcon.displayName = 'ForwardRef(DocumentRemoveIcon)'
1 change: 1 addition & 0 deletions src/icons/documentSheetIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentSheetIcon = forwardRef(function DocumentSheetIcon(
</svg>
)
})
DocumentSheetIcon.displayName = 'ForwardRef(DocumentSheetIcon)'
1 change: 1 addition & 0 deletions src/icons/documentTextIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentTextIcon = forwardRef(function DocumentTextIcon(
</svg>
)
})
DocumentTextIcon.displayName = 'ForwardRef(DocumentTextIcon)'
1 change: 1 addition & 0 deletions src/icons/documentVideoIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ export const DocumentVideoIcon = forwardRef(function DocumentVideoIcon(
</svg>
)
})
DocumentVideoIcon.displayName = 'ForwardRef(DocumentVideoIcon)'
1 change: 1 addition & 0 deletions src/icons/documentWordIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ export const DocumentWordIcon = forwardRef(function DocumentWordIcon(
</svg>
)
})
DocumentWordIcon.displayName = 'ForwardRef(DocumentWordIcon)'
1 change: 1 addition & 0 deletions src/icons/documentZipIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentZipIcon = forwardRef(function DocumentZipIcon(
</svg>
)
})
DocumentZipIcon.displayName = 'ForwardRef(DocumentZipIcon)'
1 change: 1 addition & 0 deletions src/icons/documentsIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ export const DocumentsIcon = forwardRef(function DocumentsIcon(
</svg>
)
})
DocumentsIcon.displayName = 'ForwardRef(DocumentsIcon)'
1 change: 1 addition & 0 deletions src/icons/dotIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ export const DotIcon = forwardRef(function DotIcon(
</svg>
)
})
DotIcon.displayName = 'ForwardRef(DotIcon)'
1 change: 1 addition & 0 deletions src/icons/doubleChevronDownIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DoubleChevronDownIcon = forwardRef(function DoubleChevronDownIcon(
</svg>
)
})
DoubleChevronDownIcon.displayName = 'ForwardRef(DoubleChevronDownIcon)'
1 change: 1 addition & 0 deletions src/icons/doubleChevronLeftIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DoubleChevronLeftIcon = forwardRef(function DoubleChevronLeftIcon(
</svg>
)
})
DoubleChevronLeftIcon.displayName = 'ForwardRef(DoubleChevronLeftIcon)'
1 change: 1 addition & 0 deletions src/icons/doubleChevronRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DoubleChevronRightIcon = forwardRef(function DoubleChevronRightIcon
</svg>
)
})
DoubleChevronRightIcon.displayName = 'ForwardRef(DoubleChevronRightIcon)'
1 change: 1 addition & 0 deletions src/icons/doubleChevronUpIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ export const DoubleChevronUpIcon = forwardRef(function DoubleChevronUpIcon(
</svg>
)
})
DoubleChevronUpIcon.displayName = 'ForwardRef(DoubleChevronUpIcon)'
1 change: 1 addition & 0 deletions src/icons/downloadIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export const DownloadIcon = forwardRef(function DownloadIcon(
</svg>
)
})
DownloadIcon.displayName = 'ForwardRef(DownloadIcon)'
1 change: 1 addition & 0 deletions src/icons/dragHandleIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ export const DragHandleIcon = forwardRef(function DragHandleIcon(
</svg>
)
})
DragHandleIcon.displayName = 'ForwardRef(DragHandleIcon)'
Loading

0 comments on commit 5e3e1cd

Please sign in to comment.