Skip to content

Instantly share code, notes, and snippets.

View emoxowa's full-sized avatar
✌️

Evgeniia Mokhova emoxowa

✌️
View GitHub Profile
@emoxowa
emoxowa / DetailedHTMLProps.md
Last active January 16, 2025 03:40
list of HTML tags and their corresponding types for DetailedHTMLProps

List of HTML Tags and Their Corresponding Props

This is a list of HTML tags and their associated types using the TypeScript DetailedHTMLProps interface. The DetailedHTMLProps interface is a generic type that provides a way to describe HTML element props in a more precise way. The list includes tags from the most commonly used to the least commonly used HTML elements. Each tag is listed in alphabetical order with its associated type definition using the DetailedHTMLProps interface.

  • <a> tag: DetailedHTMLProps<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>
  • <abbr> tag: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
  • <address> tag: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
  • <area> tag: DetailedHTMLProps<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>
  • <article> tag: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>
  • <aside> tag: DetailedHTMLProps<HTMLAttributes<HTMLElement>, HTMLElement>