dap-design-system
Version:
Official design system for the DÁP (dap.gov.hu)
23 lines (22 loc) • 1.32 kB
TypeScript
import { default as Component } from '../../components/table/table-cell.js';
/**
* Table cell component.
* @element dap-ds-table-cell
* @title - Table cell
* @group table
*
* @slot - The default slot.
*
* @csspart base - The main cell container.
*
* @cssproperty --dds-table-cell-padding-block - Padding for the top and bottom of the cell. (default: var(--dds-spacing-200))
* @cssproperty --dds-table-cell-padding-inline-start - Padding for the start (left in LTR) of the cell. (default: var(--dds-spacing-500))
* @cssproperty --dds-table-cell-padding-inline-end - Padding for the end (right in LTR) of the cell. (default: var(--dds-spacing-500))
* @cssproperty --dds-table-cell-border-width - Width of the cell's bottom border. (default: var(--dds-border-width-base))
* @cssproperty --dds-table-cell-border-color - Color of the cell's bottom border. (default: var(--dds-border-neutral-subtle))
* @cssproperty --dds-table-cell-text-color - Text color of the cell. (default: var(--dds-text-neutral-base))
* @cssproperty --dds-table-cell-line-height - Line height of the cell text. (default: 1.5)
* @cssproperty --dds-table-cell-text-align - Text alignment in the cell. (default: left)
*/
declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {}>;
export default reactWrapper;