mirror of
https://github.com/LucasVbr/notion-widgets.git
synced 2026-05-13 17:21:55 +00:00
14 lines
259 B
Plaintext
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'}
|
|
/> |