# Tailwind Dashed Border SVG
A plugin for addressing issue with customizable and animatable dashed border via tailwind interface (mostly).
It uses real svg under the hood what provide the maximum flexibility.
# Setup
for the tailwind v4 use:
```css
@import "tailwindcss";
@plugin "tailwind-dashed-border";
```
then prepare a component for svg, or copy this shape everywhere you want to use it.
```tsx
export function BorderSVG() {
return (
);
}
```
and now you are ready to make your borders
```tsx