import React from 'react'; export interface ActionsProps { children?: JSX.Element | JSX.Element[] | string | null; alignment?: 'between' | 'right' | 'left' | 'center'; } const ALIGNMENTS = { between: 'justify-between', right: 'justify-end', left: 'justify-start', center: 'justify-center', }; export const Actions = ({ children, alignment = 'right' }: ActionsProps): JSX.Element => { return
{children}
; };