• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

clippingkk / web / #1206

21 Mar 2026 03:38PM UTC coverage: 0.518% (-0.004%) from 0.522%
#1206

push

web-flow
Merge 5f4b297b9 into def495626

30 of 448 branches covered (6.7%)

Branch coverage included in aggregate %.

2 of 3517 new or added lines in 323 files covered. (0.06%)

1 existing line in 1 file now uncovered.

147 of 33737 relevant lines covered (0.44%)

8.61 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/components/button/button-simple.tsx
1
import WithLoading from '../with-loading'
×
2

×
3
type ButtonSimpleProps = {
×
4
  loading?: boolean
×
5
  onClick: () => void
×
6
  disabled?: boolean
×
7
  text: string
×
8
}
×
9

×
10
function ButtonSimple(props: ButtonSimpleProps) {
×
11
  return (
×
12
    <WithLoading loading={props.loading ?? false}>
×
13
      <button
×
14
        onClick={props.onClick}
×
NEW
15
        className="mt-4 w-full rounded-sm bg-blue-400 py-4 text-white transition-all duration-300 hover:bg-blue-500 disabled:bg-gray-300 disabled:hover:bg-gray-300"
×
16
        disabled={props.disabled}
×
17
      >
×
18
        {props.text}
×
19
      </button>
×
20
    </WithLoading>
×
21
  )
×
22
}
×
23

×
24
export default ButtonSimple
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc