Files
xrpl-dev-portal/shared/utils/index.ts
gabriel-ortiz f1d5c05c78 Refactor StandardCard component and utility functions
- Replaced the hasChildren utility function with isEmpty for better clarity in child element checks.
- Updated SCSS styles for the StandardCard buttons to maintain consistent alignment and spacing across breakpoints.
- Removed the deprecated hasChildren function from the helpers module to streamline utility functions.
2026-06-08 16:53:22 -07:00

19 lines
436 B
TypeScript

/**
* Shared utilities and types for the XRPL Dev Portal
*
* This module provides common utility functions, types, and helpers
* used across components and patterns in the shared directory.
*/
// Helper functions
export {
isEmpty,
getTextFromChildren,
getCardKey,
isEnvironment,
} from "./helpers";
export type { Environment } from "./helpers";
// Shared types
export type { DesignContrainedButtonProps } from "./types";