Repository URL to install this package:
|
Version:
0.0.0 ▾
|
import React from 'react'
export const OnsenIcon = (props: React.ComponentProps<'svg'>) => {
return (
<svg {...props} xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16">
<path
fill="currentColor"
d="M12.85 8.325c.825.575 1.325 1.3 1.325 2.1C14.175 12.3 11.4 13.8 8 13.8s-6.175-1.5-6.175-3.375c0-.8.5-1.525 1.325-2.1C1.525 9.075.5 10.2.5 11.425.5 13.675 3.85 15.5 8 15.5s7.5-1.825 7.5-4.075c0-1.225-1.025-2.35-2.65-3.1z"
></path>
<path
fill="currentColor"
d="M5.075.5s-.45 1.525-.45 3.325c0 1.5 1.15 2.225 1.15 3.475 0 2.475-1.575 4.05-1.575 4.05s.575-1.275.575-3.45c0-.75-1.075-2.425-1.075-3.5C3.7 2.075 5.075.5 5.075.5zM8.35.5S7.9 2.025 7.9 3.825c0 1.5 1.15 2.225 1.15 3.475 0 2.475-1.575 4.05-1.575 4.05s.575-1.275.575-3.45c0-.75-1.075-2.425-1.075-3.5C6.95 2.075 8.35.5 8.35.5zm3.275 0s-.45 1.525-.45 3.325c0 1.5 1.15 2.225 1.15 3.475 0 2.475-1.575 4.05-1.575 4.05s.575-1.275.575-3.45c0-.75-1.075-2.425-1.075-3.5-.025-2.325 1.375-3.9 1.375-3.9z"
></path>
</svg>
)
}