a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

use custom input component for login form

+2 -1
+2 -1
components/Layout.tsx
··· 5 5 CardThemeProvider, 6 6 NestedCardThemeProvider, 7 7 } from "./ThemeManager/ThemeProvider"; 8 + import { Input } from "./Input"; 8 9 9 10 export const Separator = (props: { classname?: string }) => { 10 11 return ( ··· 96 97 <div className="input-with-border flex flex-col"> 97 98 <label className="text-sm text-tertiary font-bold italic"> 98 99 {props.label} 99 - <input 100 + <Input 100 101 {...inputProps} 101 102 className={`appearance-none w-full font-normal bg-transparent text-base text-primary focus:outline-0 ${props.className}`} 102 103 />