mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
import React from 'react';
|
|
|
|
export type DivProps = React.DetailedHTMLProps<
|
|
React.HTMLAttributes<HTMLDivElement>,
|
|
HTMLDivElement
|
|
>;
|
|
|
|
export type SVGProps = React.SVGProps<SVGSVGElement>;
|