mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 03:29:37 +02:00
10 lines
262 B
TypeScript
10 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>;
|
|
};
|