-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp.js
More file actions
64 lines (61 loc) · 2.36 KB
/
temp.js
File metadata and controls
64 lines (61 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// acccordion:
<div className="collapse collapse-arrow bg-base-200">
<input type="radio" name="my-accordion-2" defaultChecked />
<div className="collapse-title text-xl font-medium">
Click to open this one and close others
</div>
<div className="collapse-content">
<p>hello</p>
</div>
</div>
<div className="collapse collapse-arrow bg-base-200">
<input type="radio" name="my-accordion-2" />
<div className="collapse-title text-xl font-medium">
Click to open this one and close others
</div>
<div className="collapse-content">
<p>hello</p>
</div>
</div>
<div className="collapse collapse-arrow bg-base-200">
<input type="radio" name="my-accordion-2" />
<div className="collapse-title text-xl font-medium">
Click to open this one and close others
</div>
<div className="collapse-content">
<p>hello</p>
</div>
</div>
// buttons
<button className="btn">Button</button>
<button className="btn btn-neutral">Neutral</button>
<button className="btn btn-primary">Primary</button>
<button className="btn btn-secondary">Secondary</button>
<button className="btn btn-accent">Accent</button>
<button className="btn btn-ghost">Ghost</button>
<button className="btn btn-link">Link</button>
<button className="btn btn-info">Info</button>
<button className="btn btn-success">Success</button>
<button className="btn btn-warning">Warning</button>
<button className="btn btn-error">Error</button>
/*
btn-outline
btn-sm
btn-lg
btn-xs
btn-wide
btn glass
<a role="button" className="btn">Link</a>
<button type="submit" className="btn">Button</button>
<input type="button" value="Input" className="btn" />
<input type="submit" value="Submit" className="btn" />
<input type="radio" aria-label="Radio" className="btn" />
<input type="checkbox" aria-label="Checkbox" className="btn" />
<input type="reset" value="Reset" className="btn" />
<button className="btn btn-square">
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
</button>
<button className="btn btn-square btn-outline">
<svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M6 18L18 6M6 6l12 12" /></svg>
</button>
*/