Hr

Creates divider (horizontal rule) that separates content

pnpm
aube
bun
npm
yarn
pnpm add jsx-email

Usage

Add the component to your email template. Include styles where needed.

import { Hr } from 'jsx-email';

const Email = () => {
  return <Hr />;
};

Component Props

disableDefaultStyle?: boolean;

If true, instructs the component not to add default style properties to the component. This can be useful when attempting to override default styles with Tailwind or class names.

Tips

This component also expresses all of the Common Component Props for ComponentProps<'hr'>.