diff --git a/app/components/IconPicker.tsx b/app/components/IconPicker.tsx index 18096c126..e43453700 100644 --- a/app/components/IconPicker.tsx +++ b/app/components/IconPicker.tsx @@ -51,6 +51,7 @@ const style = { width: 30, height: 30, }; + const TwitterPicker = React.lazy( () => import( @@ -241,7 +242,7 @@ function IconPicker({ onOpen, onClose, icon, color, onChange }: Props) { aria-label={t("Choose icon")} > - {Object.keys(icons).map((name) => { + {Object.keys(icons).map((name, index) => { return ( {(props) => ( - + )} @@ -291,6 +300,7 @@ function IconPicker({ onOpen, onClose, icon, color, onChange }: Props) { const Icon = styled.svg` transition: fill 150ms ease-in-out; + transition-delay: var(--delay); `; const Colors = styled(Flex)`