/
redly
/
reactposts
Обзор
Документация
Войти
/
redly
/
reactposts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/Input.tsx
16 строк
358 B
Redlyweb
feat: add search, pagination, sort, auth with useContext
26 июн 2024, 11:45
26 июн 2024, 11:45
840acc1
Код
Авторство
О чём код?
import styled from "styled-components" const StyledInput = styled.input` padding: 10px 15px; color: black; border: none; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); outline: none; margin-top: 10px; ` export default function Input(props: React.InputHTMLAttributes<HTMLInputElement>) { return ( <StyledInput {...props}/> ) }