Skip to content

Hr

Creates divider (horizontal rule) that separates content

Install

Install the component from your command line

console
pnpm install email-craft
pnpm install email-craft
console
bun install email-craft
bun install email-craft
console
npm install email-craft
npm install email-craft
console
yarn install email-craft
yarn install email-craft

Usage

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

jsx
import { Hr } from 'email-craft';

const Email = () => {
  return <Hr />;
};
import { Hr } from 'email-craft';

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

Component Props

ts
disableDefaultStyle?: boolean;
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.

TIP

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