Files
notion-widgets/src/components/Line.astro
T
Lucàs 9ad92d140a Init
2023-06-20 21:44:53 +02:00

14 lines
259 B
Plaintext

---
import LineState from '../models/LineState';
export interface Props {
line: LineState;
stroke?: number;
}
const {line, stroke} = Astro.props;
---
<line x1={line.a.x} y1={line.a.y}
x2={line.b.x} y2={line.b.y}
stroke={stroke ?? 'black'}
/>