Skip to content

Commit

Permalink
move external link icon and mail to link icon to icons folder
Browse files Browse the repository at this point in the history
  • Loading branch information
suejinkim20 committed Jan 29, 2025
1 parent 92f8cb8 commit 186e085
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/icons/index.js
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './chevron-icons'
export * from './link-icons'
File renamed without changes.
2 changes: 1 addition & 1 deletion src/components/link/external-link.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fragment } from 'react'
import { BaseLinkPropTypes } from './'
import { ExternalLinkIcon } from './'
import { ExternalLinkIcon } from '../icons'
import { Button, Link } from '@mui/joy'

export const ExternalLink = ({ to, children, button, ...props }) => {
Expand Down
1 change: 0 additions & 1 deletion src/components/link/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './link'
export * from './link-icon'
export * from './external-link'
export * from './mail-to-link'
2 changes: 1 addition & 1 deletion src/components/link/mail-to-link.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Fragment } from 'react'
import { BaseLinkPropTypes } from './'
import { MailtoLinkIcon } from './'
import { MailtoLinkIcon } from '../icons'

export const MailtoLink = ({ to, children }) => {
return (
Expand Down

0 comments on commit 186e085

Please sign in to comment.