Merged in chore/cleanup-scandic-web (pull request #2831)
chore: Cleanup scandic-web * Remove unused files * Remove unused and add missing packages * Remove unused exports Approved-by: Linus Flood
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { arrowVariants } from "./variants"
|
||||
|
||||
import type { ArrowProps } from "./arrow"
|
||||
|
||||
export function Arrow({ color, size }: ArrowProps) {
|
||||
const className = arrowVariants({ color, size })
|
||||
|
||||
return (
|
||||
<div className={className}>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 27 13">
|
||||
<path d="M13.093 12.193.9 0h25.8L14.508 12.193a1 1 0 0 1-1.415 0Z" />
|
||||
</svg>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user