mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2026-09-27 15:37:57 +00:00
15 lines
569 B
TypeScript
15 lines
569 B
TypeScript
export { Link } from './Link';
|
|
export type { LinkProps, LinkColorProps, LinkIntention, LinkContext, LinkVariation, LinkSize } from './Link';
|
|
|
|
// Legacy component, kept intact but unused in production. See legacy/BdsLink.md.
|
|
export { BdsLink } from './legacy/BdsLink';
|
|
export type {
|
|
BdsLinkProps,
|
|
LinkVariant as LegacyLinkVariant,
|
|
LinkSize as LegacyLinkSize,
|
|
LinkIconType as LegacyLinkIconType,
|
|
} from './legacy/BdsLink';
|
|
|
|
export { LinkArrow } from './legacy/LinkArrow';
|
|
export type { LinkArrowProps, LinkArrowVariant, LinkArrowSize } from './legacy/LinkArrow';
|