/** @jsxImportSource @emotion/react */
import { css } from '@emotion/react';
import { useTheme } from '../../context/MagicBellThemeContext.js';
import Text from '../Text/index.js';
interface Props {
onClick: () => void;
}
/**
*
* @example
*
*/
export default function EnablePushNotificationsButton({ onClick }: Props) {
const theme = useTheme();
const handleClick = () => {
onClick();
};
return (
);
}