20 lines
604 B
TypeScript
20 lines
604 B
TypeScript
/**
|
|
*
|
|
* ACTIONS
|
|
*
|
|
* Small interactive components for user actions.
|
|
*
|
|
*/
|
|
|
|
/** Styled icon button for action triggers with tooltip. */
|
|
export { default as ActionIcon } from './ActionIcon.svelte';
|
|
|
|
/** Code block actions component (copy, preview). */
|
|
export { default as ActionIconsCodeBlock } from './ActionIconsCodeBlock.svelte';
|
|
|
|
/** Copy-to-clipboard icon button with click handler. */
|
|
export { default as ActionIconCopyToClipboard } from './ActionIconCopyToClipboard.svelte';
|
|
|
|
/** Remove/delete icon button with X icon. */
|
|
export { default as ActionIconRemove } from './ActionIconRemove.svelte';
|