initial commit

This commit is contained in:
ferdiansyah783
2025-08-05 12:35:40 +07:00
commit fffa2ead5c
1069 changed files with 118056 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// React Imports
import type { SVGAttributes } from 'react'
const ChevronRight = (props: SVGAttributes<SVGElement>) => {
return (
<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' fontSize='1.5rem' viewBox='0 0 24 24' {...props}>
<path fill='currentColor' d='M10.707 17.707 16.414 12l-5.707-5.707-1.414 1.414L13.586 12l-4.293 4.293z' />
</svg>
)
}
export default ChevronRight
+15
View File
@@ -0,0 +1,15 @@
// React Imports
import type { SVGAttributes } from 'react'
const Close = (props: SVGAttributes<SVGElement>) => {
return (
<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' fontSize='1.5rem' viewBox='0 0 24 24' {...props}>
<path
fill='currentColor'
d='m16.192 6.344-4.243 4.242-4.242-4.242-1.414 1.414L10.535 12l-4.242 4.242 1.414 1.414 4.242-4.242 4.243 4.242 1.414-1.414L13.364 12l4.242-4.242z'
/>
</svg>
)
}
export default Close
+15
View File
@@ -0,0 +1,15 @@
// React Imports
import type { SVGAttributes } from 'react'
const RadioCircle = (props: SVGAttributes<SVGElement>) => {
return (
<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' fontSize='1.5rem' viewBox='0 0 24 24' {...props}>
<path
fill='currentColor'
d='M5 12c0 3.859 3.14 7 7 7 3.859 0 7-3.141 7-7s-3.141-7-7-7c-3.86 0-7 3.141-7 7zm12 0c0 2.757-2.243 5-5 5s-5-2.243-5-5 2.243-5 5-5 5 2.243 5 5z'
/>
</svg>
)
}
export default RadioCircle
+16
View File
@@ -0,0 +1,16 @@
// React Imports
import type { SVGAttributes } from 'react'
const RadioCircleMarked = (props: SVGAttributes<SVGElement>) => {
return (
<svg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' fontSize='1.5rem' viewBox='0 0 24 24' {...props}>
<path
fill='currentColor'
d='M12 5c-3.859 0-7 3.141-7 7s3.141 7 7 7 7-3.141 7-7-3.141-7-7-7zm0 12c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5-2.243 5-5 5z'
/>
<path fill='currentColor' d='M12 9c-1.627 0-3 1.373-3 3s1.373 3 3 3 3-1.373 3-3-1.373-3-3-3z' />
</svg>
)
}
export default RadioCircleMarked