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