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

13 lines
326 B
Plaintext

---
import CircleState from '../models/CircleState';
export interface Props {
id?: string
circle: CircleState,
}
const {id, circle} = Astro.props
---
<circle id={id ?? ""} cx={circle.point.x} cy={circle.point.y} r={circle.radius ?? 2} fill={circle.fill ?? "none"} stroke={circle.stroke ?? "black"}>
<slot/>
</circle>