@uiwwsw/virtual-keyboard
Version:
**A revolutionary virtual keyboard solution for React that solves the Korean `composition` issue.**
12 lines (11 loc) • 502 B
TypeScript
/**
* @description 자식 요소를 Shadow DOM에 렌더링하는 최적화된 컴포넌트
* @param children 렌더링할 React 노드
* @param css 스타일을 문자열로 받아서 <style>로 삽입
* @returns Shadow DOM 안에 children과 style을 렌더링
*/
export declare const ShadowWrapper: import("react").MemoExoticComponent<({ children, css, tagName, }: {
children: React.ReactNode;
css?: string;
tagName: "input" | "div";
}) => import("react/jsx-runtime").JSX.Element>;