Skip to content

Instantly share code, notes, and snippets.

View pedrouzcategui's full-sized avatar

Pedro Uzcátegui pedrouzcategui

View GitHub Profile
@pedrouzcategui
pedrouzcategui / CedulaVenezolanaInput.tsx
Last active August 22, 2025 02:28
Componente Vanilla de Cédula Venezolana (React/Typescript)
import React, { useState, ChangeEvent, useEffect } from 'react';
type CedulaInputProps = {
id?: string;
name: string;
label: string;
value?: string;
onChange?: (value: string) => void;
errorMessage?: string;
disabled?: boolean;