mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
Narrow component prop types, remove unused props and dead code (#2838)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
---
|
||||
interface Props {
|
||||
width?: number
|
||||
height?: number
|
||||
ratio?: string
|
||||
class?: string
|
||||
}
|
||||
|
||||
const { width = 400, height = 200, ratio, class: className } = Astro.props
|
||||
const width = 400
|
||||
const { height = 200, class: className } = Astro.props
|
||||
---
|
||||
|
||||
<div class={`card-body${className ? ` ${className}` : ''}`}>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-100 border rounded" preserveAspectRatio={ratio ? 'xMidYMid meet' : 'none'} width={width} height={height} viewBox={`0 0 ${width} ${height}`} fill="transparent" stroke="var(--tblr-border-color, #b8cef1)">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="w-100 border rounded" preserveAspectRatio="none" width={width} height={height} viewBox={`0 0 ${width} ${height}`} fill="transparent" stroke="var(--tblr-border-color, #b8cef1)">
|
||||
<line x1="0" y1="0" x2={width} y2={height}></line>
|
||||
<line x1="0" y1={height} x2={width} y2="0"></line>
|
||||
</svg>
|
||||
|
||||
Reference in New Issue
Block a user