mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
|
import { ReactNode } from 'react';
|
||
|
import styles from './ActionIcons.module.css';
|
||
|
|
||
|
interface Props {
|
||
|
children: ReactNode;
|
||
|
}
|
||
|
|
||
|
export const ActionIcons = ({ children }: Props): JSX.Element => {
|
||
|
return <span className={styles.ActionIcons}>{children}</span>;
|
||
|
};
|