graycoreio/daffodil

View on GitHub
libs/design/src/core/compactable/compactable.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * An interface for giving a component the ability to display a compact UI.
 * In order to be compactable, the class must implement this property.
 */
export interface DaffCompactable {
  compact: boolean;
}